.gitignore 309 B

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