Skip to content

Commit b072f3a

Browse files
committed
Merge pull request #262 from jja/patch-1
a more complete .gitignore for Grails 1.2 and 1.3
2 parents 4cede2e + cbf52e3 commit b072f3a

File tree

1 file changed

+39
-5
lines changed

1 file changed

+39
-5
lines changed

Grails.gitignore

Lines changed: 39 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,44 @@
1-
*.iws
1+
# .gitignore for Grails 1.2 and 1.3
2+
3+
# web application files
4+
/web-app/WEB-INF
5+
6+
# IDE support files
7+
/.classpath
8+
/.launch
9+
/.project
10+
/.settings
11+
/*.launch
12+
/*.tmproj
13+
/ivy*
14+
/eclipse
15+
16+
# default HSQL database files for production mode
17+
/prodDb.*
18+
19+
# general HSQL database files
220
*Db.properties
321
*Db.script
4-
.settings
5-
eclipse
6-
stacktrace.log
7-
target
22+
23+
# logs
24+
/stacktrace.log
25+
/test/reports
26+
/logs
27+
28+
# project release file
29+
/*.war
30+
31+
# plugin release file
32+
/*.zip
33+
34+
# older plugin install locations
835
/plugins
936
/web-app/plugins
1037
/web-app/WEB-INF/classes
38+
39+
# "temporary" build files
40+
/target
41+
42+
# other
43+
*.iws
44+

0 commit comments

Comments
 (0)