-
Notifications
You must be signed in to change notification settings - Fork 435
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
46 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
# .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 | ||
*Db.properties | ||
*Db.script | ||
|
||
# logs | ||
/stacktrace.log | ||
/test/reports | ||
/logs | ||
|
||
# project release file | ||
/*.war | ||
|
||
# plugin release file | ||
/*.zip | ||
|
||
# older plugin install locations | ||
/plugins | ||
/web-app/plugins | ||
/web-app/WEB-INF/classes | ||
|
||
# "temporary" build files | ||
/target | ||
|
||
# other | ||
*.iws | ||
|
||
#project specific: | ||
/src/java/ice.properties |