.gitignore 353 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. #Maven
  2. target/
  3. pom.xml.tag
  4. pom.xml.releaseBackup
  5. pom.xml.versionsBackup
  6. release.properties
  7. .flattened-pom.xml
  8. # Eclipse
  9. .project
  10. .classpath
  11. .settings/
  12. bin/
  13. # IntelliJ
  14. .idea
  15. *.ipr
  16. *.iml
  17. *.iws
  18. # NetBeans
  19. nb-configuration.xml
  20. # Visual Studio Code
  21. .vscode
  22. .factorypath
  23. # OSX
  24. .DS_Store
  25. # Vim
  26. *.swp
  27. *.swo
  28. # patch
  29. *.orig
  30. *.rej
  31. # Local environment
  32. .env