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.gitignore 534B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  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. /web-app/WEB-INF/classes
  30. # "temporary" build files
  31. /target
  32. # other
  33. *.iws