.gitignore 795 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. # Directories #
  2. /build/
  3. /bin/
  4. target/
  5. # OS Files #
  6. .DS_Store
  7. *.class
  8. # Package Files #
  9. *.jar
  10. *.war
  11. *.ear
  12. *.db
  13. ######################
  14. # Windows
  15. ######################
  16. # Windows image file caches
  17. Thumbs.db
  18. # Folder config file
  19. Desktop.ini
  20. ######################
  21. # OSX
  22. ######################
  23. .DS_Store
  24. .svn
  25. # Thumbnails
  26. ._*
  27. # Files that might appear on external disk
  28. .Spotlight-V100
  29. .Trashes
  30. ######################
  31. # Eclipse
  32. ######################
  33. *.pydevproject
  34. .project
  35. .metadata
  36. bin/**
  37. tmp/**
  38. tmp/**/*
  39. *.tmp
  40. *.bak
  41. *.swp
  42. *~.nib
  43. local.properties
  44. .classpath
  45. .settings/
  46. .loadpath
  47. /src/main/resources/rebel.xml
  48. # External tool builders
  49. .externalToolBuilders/
  50. # Locally stored "Eclipse launch configurations"
  51. *.launch
  52. # CDT-specific
  53. .cproject
  54. # PDT-specific
  55. .buildpath