.gitignore 785 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. # --------------------
  2. # idea
  3. .idea/
  4. *.iml
  5. # --------------------
  6. # eclipse
  7. .settings/
  8. .classpath
  9. .project
  10. # --------------------
  11. # vscode
  12. # vscode .settings file
  13. *.vscode
  14. # --------------------
  15. # Java
  16. # Compiled class file
  17. *.class
  18. # Log file
  19. *.log
  20. # BlueJ files
  21. *.ctxt
  22. # Mobile Tools for Java (J2ME)
  23. .mtj.tmp/
  24. # Package Files #
  25. *.jar
  26. *.war
  27. *.ear
  28. *.zip
  29. *.tar.gz
  30. *.rar
  31. # virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
  32. hs_err_pid*
  33. # --------------------
  34. # Maven
  35. target/
  36. pom.xml.tag
  37. pom.xml.releaseBackup
  38. pom.xml.versionsBackup
  39. pom.xml.next
  40. release.properties
  41. dependency-reduced-pom.xml
  42. buildNumber.properties
  43. .mvn/timing.properties
  44. # Avoid ignoring Maven wrapper jar file (.jar files are usually ignored)
  45. !/.mvn/wrapper/maven-wrapper.jar