.gitignore 675 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. HELP.md
  2. target/
  3. !.mvn/wrapper/maven-wrapper.jar
  4. !**/src/main/**/target/
  5. !**/src/test/**/target/
  6. ### STS ###
  7. .apt_generated
  8. .classpath
  9. .factorypath
  10. .project
  11. .settings
  12. .springBeans
  13. .sts4-cache
  14. ### IntelliJ IDEA ###
  15. .idea
  16. *.iws
  17. *.iml
  18. *.ipr
  19. ### NetBeans ###
  20. /nbproject/private/
  21. /nbbuild/
  22. /dist/
  23. /nbdist/
  24. /.nb-gradle/
  25. build/
  26. !**/src/main/**/build/
  27. !**/src/test/**/build/
  28. ### VS Code ###
  29. .vscode/
  30. # Compiled class file
  31. *.class
  32. # Log file
  33. *.log
  34. # Package Files
  35. *.jar
  36. *.war
  37. *.ear
  38. *.zip
  39. # IDE
  40. .idea/
  41. *.iml
  42. .classpath
  43. .project
  44. .settings/
  45. # Maven
  46. target/
  47. .mvn/timing.properties
  48. # Spring Boot
  49. application-*.yml
  50. application-*.properties
  51. !application.properties
  52. !application.yml