Grails.gitignore 509 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. # .gitignore for Grails 1.2 and 1.3
  2. # web application files
  3. /web-app/WEB-INF
  4. # IDE support files
  5. /.classpath
  6. /.launch
  7. /.project
  8. /.settings
  9. /*.launch
  10. /*.tmproj
  11. /ivy*
  12. /eclipse
  13. # default HSQL database files for production mode
  14. /prodDb.*
  15. # general HSQL database files
  16. *Db.properties
  17. *Db.script
  18. # logs
  19. /stacktrace.log
  20. /test/reports
  21. /logs
  22. # project release file
  23. /*.war
  24. # plugin release file
  25. /*.zip
  26. # older plugin install locations
  27. /plugins
  28. /web-app/plugins
  29. # "temporary" build files
  30. /target
  31. # other
  32. *.iws