|
From: <dav...@us...> - 2010-04-09 14:47:01
|
Revision: 2442
http://qtitools.svn.sourceforge.net/qtitools/?rev=2442&view=rev
Author: davemckain
Date: 2010-04-09 14:46:55 +0000 (Fri, 09 Apr 2010)
Log Message:
-----------
MAE: content/uploads is now left out of WAR files during build.
(Also got rid of comments about leaving out certain logging JARs.)
Modified Paths:
--------------
branches/mathassess/QTIEngine/grails-app/conf/BuildConfig.groovy
Modified: branches/mathassess/QTIEngine/grails-app/conf/BuildConfig.groovy
===================================================================
--- branches/mathassess/QTIEngine/grails-app/conf/BuildConfig.groovy 2010-04-09 14:01:22 UTC (rev 2441)
+++ branches/mathassess/QTIEngine/grails-app/conf/BuildConfig.groovy 2010-04-09 14:46:55 UTC (rev 2442)
@@ -42,12 +42,8 @@
}
}
-// NOTE: In some cases, you way want to exclude certain JARs from the WAR build.
-// If so, put something like the following code in $HOME/.grails/settings.groovy in order
-// to customise your local build:
-//
-//grails.war.resources = { stagingDir ->
-// delete {
-// fileset(dir: "${stagingDir}/WEB-INF/lib", includes: "slf4j-*.jar,jcl-over-slf4j*,log4j-*")
-// }
-//}
+grails.war.resources = { stagingDir ->
+ delete {
+ fileset(dir: "${stagingDir}/content/uploads", includes: "**")
+ }
+}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|