.gitignore 486 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. # .gitignore
  2. # Bytecode files
  3. *.class
  4. target
  5. # IntelliJ IDEA
  6. .idea/
  7. *.iml
  8. *.iws
  9. *.ipr
  10. target/
  11. # Eclipse
  12. .classpath
  13. .project
  14. .settings/
  15. bin/
  16. target/
  17. # Maven
  18. target/
  19. pom.xml.tag
  20. pom.xml.releaseBackup
  21. pom.xml.versionsBackup
  22. release.properties
  23. dependency-reduced-pom.xml
  24. # Visual Studio Code
  25. .vscode/
  26. # OS generated files #
  27. .DS_Store
  28. .DS_Store?
  29. ._*
  30. .Spotlight-V100
  31. .Trashes
  32. # Environment variables file
  33. .env
  34. # Logs
  35. logs/
  36. *.log
  37. # Runtime data
  38. *.run
  39. # Spring Boot
  40. build/
  41. *.jar
  42. *.war