Grails.gitignore 534 字节
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
# .gitignore for Grails 1.2 and 1.3

# web application files
/web-app/WEB-INF

# IDE support files
/.classpath
/.launch
/.project
/.settings
/*.launch
/*.tmproj
/ivy*
/eclipse

# default HSQL database files for production mode
/prodDb.*

# general HSQL database files
20 21
*Db.properties
*Db.script
22 23 24 25 26 27 28 29 30 31 32 33 34

# logs
/stacktrace.log
/test/reports
/logs

# project release file
/*.war

# plugin release file
/*.zip

# older plugin install locations
35 36 37
/plugins
/web-app/plugins
/web-app/WEB-INF/classes
38 39 40 41 42 43

# "temporary" build files
/target

# other
*.iws