Skip to content

Instantly share code, notes, and snippets.

@boaglio
Last active January 7, 2024 16:41
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save boaglio/8c76e6cf795afa0ee04f2faf3ea97a56 to your computer and use it in GitHub Desktop.
Save boaglio/8c76e6cf795afa0ee04f2faf3ea97a56 to your computer and use it in GitHub Desktop.
GitIgnore for ANY Java project - IntelliJ , Eclipse , VSCode , NetBeans, JDeveloper, Maven, Gradle
#
# .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