Grails.gitignore 417 B

123456789101112131415161718192021222324252627282930
  1. # .gitignore for Grails 1.2 and 1.3
  2. # web application files
  3. /web-app/WEB-INF/classes
  4. # default HSQL database files for production mode
  5. /prodDb.*
  6. # general HSQL database files
  7. *Db.properties
  8. *Db.script
  9. # logs
  10. /stacktrace.log
  11. /test/reports
  12. /logs
  13. # project release file
  14. /*.war
  15. # plugin release files
  16. /*.zip
  17. /plugin.xml
  18. # older plugin install locations
  19. /plugins
  20. /web-app/plugins
  21. # "temporary" build files
  22. /target