Last active
January 7, 2024 16:41
-
-
Save boaglio/8c76e6cf795afa0ee04f2faf3ea97a56 to your computer and use it in GitHub Desktop.
GitIgnore for ANY Java project - IntelliJ , Eclipse , VSCode , NetBeans, JDeveloper, Maven, Gradle
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
# | |
# .gitignore for any Java app =) | |
# | |
# https://gist.github.com/boaglio/8c76e6cf795afa0ee04f2faf3ea97a56 | |
# | |
# Gradle | |
.gradle/ | |
**/build/ | |
build/ | |
gradle-app.setting | |
.gradletasknamecache | |
!gradle-wrapper.jar | |
!gradle-wrapper.properties | |
# Maven | |
target/ | |
pom.xml.tag | |
pom.xml.releaseBackup | |
pom.xml.versionsBackup | |
pom.xml.next | |
release.properties | |
dependency-reduced-pom.xml | |
.mvn/ | |
# 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* | |
replay_pid* | |
# Compiled class file | |
*.class | |
# Log file | |
*.log | |
## IDE ### | |
# BlueJ | |
*.ctxt | |
# IntelliJ | |
.idea/ | |
*.iml | |
*.ipr | |
*.iws | |
.idea_modules/ | |
# Eclipse | |
.classpath | |
.project | |
.settings/ | |
*.launch | |
# VSCode | |
.vscode | |
# NetBeans | |
nbproject/ | |
# JDeveloper | |
.jdeveloper/ | |
.adf/ | |
## Others | |
# macOS | |
.DS_Store | |
# Thumbnails | |
._* | |
# Windows | |
Thumbs.db | |
ehthumbs.db | |
# Recycle Bin used on file shares | |
$RECYCLE.BIN/ | |
# Recycle Bin used on USB sticks | |
RECYCLER/ | |
# Windows Installer files | |
*.cab | |
*.msi | |
*.msm | |
*.msp | |
# Windows shortcuts | |
*.lnk |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment