.gitignore 301 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. target/
  2. .DS_Store
  3. logs/**
  4. # maven ignore
  5. target/
  6. *.jar
  7. !.mvn/wrapper/*
  8. *.war
  9. *.zip
  10. *.tar
  11. *.tar.gz
  12. # eclipse ignore
  13. .settings/
  14. .project
  15. .classpath
  16. # idea ignore
  17. .idea/
  18. *.ipr
  19. *.iml
  20. *.iws
  21. *.xml
  22. # temp ignore
  23. *.log
  24. *.cache
  25. *.diff
  26. *.patch
  27. *.tmp
  28. # system ignore
  29. .DS_Store
  30. Thumbs.db
  31. *.orig
  32. *.out
  33. *.pid