You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Grails 583B

123456789101112131415161718192021222324252627282930313233
  1. # .gitignore for Grails 1.2 and 1.3
  2. # Although this should work for most versions of grails, it is
  3. # suggested that you use the "grails integrate-with --git" command
  4. # to generate your .gitignore file.
  5. # web application files
  6. /web-app/WEB-INF/classes
  7. # default HSQL database files for production mode
  8. /prodDb.*
  9. # general HSQL database files
  10. *Db.properties
  11. *Db.script
  12. # logs
  13. /stacktrace.log
  14. /test/reports
  15. /logs
  16. # project release file
  17. /*.war
  18. # plugin release files
  19. /*.zip
  20. /plugin.xml
  21. # older plugin install locations
  22. /plugins
  23. /web-app/plugins
  24. # "temporary" build files
  25. /target