mirror of
https://github.com/vale981/gitignore
synced 2025-03-05 09:51:42 -05:00

Only files under /web-app/WEB-INF/classes (build output) should be ignored by Git. Grails generates a few default (unchanging) files (applicationContext.xml, sitemesh.xml, a bunch of *.tld) that need to be there for some plugins to function properly (e.g., grails war).
43 lines
530 B
Text
43 lines
530 B
Text
# .gitignore for Grails 1.2 and 1.3
|
|
|
|
# web application files
|
|
/web-app/WEB-INF/classes
|
|
|
|
# IDE support files
|
|
/.classpath
|
|
/.launch
|
|
/.project
|
|
/.settings
|
|
/*.launch
|
|
/*.tmproj
|
|
/ivy*
|
|
/eclipse
|
|
|
|
# default HSQL database files for production mode
|
|
/prodDb.*
|
|
|
|
# general HSQL database files
|
|
*Db.properties
|
|
*Db.script
|
|
|
|
# logs
|
|
/stacktrace.log
|
|
/test/reports
|
|
/logs
|
|
|
|
# project release file
|
|
/*.war
|
|
|
|
# plugin release files
|
|
/*.zip
|
|
/plugin.xml
|
|
|
|
# older plugin install locations
|
|
/plugins
|
|
/web-app/plugins
|
|
|
|
# "temporary" build files
|
|
/target
|
|
|
|
# other
|
|
*.iws
|