.gitignore 267 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. # Compiled class file
  2. *.class
  3. # Eclipse
  4. .project
  5. .classpath
  6. .settings/
  7. # Intellij
  8. *.ipr
  9. *.iml
  10. *.iws
  11. .idea/
  12. # Maven
  13. target/
  14. # Gradle
  15. build
  16. .gradle
  17. # Log file
  18. *.log
  19. log/
  20. # out
  21. **/out/
  22. # Mac
  23. .DS_Store
  24. # others
  25. *.jar
  26. *.war
  27. *.zip
  28. *.tar
  29. *.tar.gz
  30. *.pid
  31. *.orig
  32. temp/