.gitignore 295 B

123456789101112131415161718192021222324252627282930313233
  1. # Eclipse
  2. .project
  3. .classpath
  4. .settings/
  5. # Maven
  6. target/
  7. dependency-reduced-pom.xml
  8. pom.xml.versionsBackup
  9. .factorypath
  10. # Gradle
  11. .gradle/
  12. build/
  13. #IDEA
  14. # idea ignore
  15. .idea/
  16. *.ipr
  17. *.iml
  18. *.iws
  19. # temp ignore
  20. *.log
  21. *.cache
  22. *.diff
  23. *.patch
  24. *.tmp
  25. .jython_cache/
  26. # system ignore
  27. .DS_Store
  28. Thumbs.db