.gitignore 739 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. ### Maven template
  2. target/
  3. pom.xml.tag
  4. pom.xml.releaseBackup
  5. pom.xml.versionsBackup
  6. pom.xml.next
  7. release.properties
  8. dependency-reduced-pom.xml
  9. buildNumber.properties
  10. .mvn/timing.properties
  11. # https://github.com/takari/maven-wrapper#usage-without-binary-jar
  12. .mvn/wrapper/maven-wrapper.jar
  13. # Eclipse m2e generated files
  14. # Eclipse Core
  15. .project
  16. # JDT-specific (Eclipse Java Development Tools)
  17. .classpath
  18. ### Java template
  19. # Compiled class file
  20. *.class
  21. # Log file
  22. *.log
  23. # BlueJ files
  24. *.ctxt
  25. # Eclipse files
  26. .settings/
  27. # Mobile Tools for Java (J2ME)
  28. .mtj.tmp/
  29. # Package Files #
  30. *.jar
  31. *.war
  32. *.nar
  33. *.ear
  34. *.zip
  35. *.tar.gz
  36. *.rar
  37. # virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
  38. hs_err_pid*
  39. replay_pid*