From cbf52e39a4ed150c365baff38cc5f49a5f6340d8 Mon Sep 17 00:00:00 2001 From: "John J. Allison" Date: Mon, 6 Feb 2012 12:47:44 -0700 Subject: [PATCH] a more complete .gitignore for Grails 1.2 and 1.3 --- Grails.gitignore | 44 +++++++++++++++++++++++++++++++++++++++----- 1 file changed, 39 insertions(+), 5 deletions(-) diff --git a/Grails.gitignore b/Grails.gitignore index a9b997da..96f72ec8 100644 --- a/Grails.gitignore +++ b/Grails.gitignore @@ -1,10 +1,44 @@ -*.iws +# .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 -.settings -eclipse -stacktrace.log -target + +# 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 +