.gitignore 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. # --------------------------------------------------------
  2. # Custom '.gitignore' Template v. 0.1
  3. # --------------------------------------------------------
  4. # === Maven Specific ===
  5. # Target directory where compiled classes and build artifacts are stored
  6. target/
  7. # Temporary files created during Maven builds
  8. pom.xml.tag
  9. pom.xml.releaseBackup
  10. pom.xml.versionsBackup
  11. pom.xml.next
  12. release.properties
  13. dependency-reduced-pom.xml
  14. buildNumber.properties
  15. # Maven wrapper binary (should not be committed, it can be downloaded)
  16. .mvn/wrapper/maven-wrapper.jar
  17. # Timing properties from Maven builds
  18. .mvn/timing.properties
  19. # === IDE Specific ===
  20. # IntelliJ IDEA project files and configurations
  21. .idea/ # IntelliJ IDEA project folder (includes settings, caches, etc.)
  22. *.iml # IntelliJ module files
  23. # Eclipse project files
  24. .settings/ # Eclipse settings folder
  25. .classpath # Eclipse classpath configuration
  26. .project # Eclipse project configuration
  27. # === Operating System Specific ===
  28. # macOS Finder metadata files
  29. .DS_Store
  30. # Windows Thumbs.db cache
  31. Thumbs.db
  32. # === Log and Backup Files ===
  33. # Logs and temporary files
  34. *.log # Log files
  35. *.bak # Backup files
  36. *.swp # Swap files created by editors
  37. # === Build Tools ===
  38. # Gradle build folder
  39. build/
  40. # === Java Generated Files ===
  41. # JAR files (compiled Java libraries)
  42. *.jar
  43. # WAR files (web application archives)
  44. *.war
  45. # EAR files (enterprise application archives)
  46. *.ear