Created
January 25, 2021 16:57
-
-
Save timlg07/7d4c5d7a17de99e8b6368312c773a263 to your computer and use it in GitHub Desktop.
Gitignore for eclipse gradle projects.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# compiled class files | |
*.class | |
# log files | |
*.log | |
# package files | |
*.jar | |
*.war | |
*.nar | |
*.ear | |
*.zip | |
*.tar.gz | |
*.rar | |
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml | |
hs_err_pid* | |
# Ignore Gradle project-specific cache directory | |
.gradle | |
# Ignore Gradle build output directory | |
build | |
# Ignore Gradle GUI config | |
gradle-app.setting | |
# Avoid ignoring Gradle wrapper jar file (.jar files are usually ignored) | |
!gradle-wrapper.jar | |
# eclipse specific ignores | |
.classpath | |
.project | |
.metadata | |
.settings | |
.loadpath | |
bin | |
tmp | |
*.tmp | |
# locally stored "Eclipse launch configurations" | |
*.launch |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment