[gatein-commits] gatein SVN: r5159 - portal/trunk/packaging/tomcat/pkg.

do-not-reply at jboss.org do-not-reply at jboss.org
Thu Nov 18 09:36:35 EST 2010


Author: julien_viet
Date: 2010-11-18 09:36:34 -0500 (Thu, 18 Nov 2010)
New Revision: 5159

Modified:
   portal/trunk/packaging/tomcat/pkg/pom.xml
Log:
GTNPORTAL-1670 : Explicit filter of webapps pre packaged in tomcat (remove ROOT / examples / docs)


Modified: portal/trunk/packaging/tomcat/pkg/pom.xml
===================================================================
--- portal/trunk/packaging/tomcat/pkg/pom.xml	2010-11-18 11:55:43 UTC (rev 5158)
+++ portal/trunk/packaging/tomcat/pkg/pom.xml	2010-11-18 14:36:34 UTC (rev 5159)
@@ -900,7 +900,11 @@
 
                 <!-- Copy tomcat -->
                 <copy todir="${project.build.directory}/tomcat">
-                  <fileset dir="${tomcat.dir}" excludes="webapps/**"/>
+                  <fileset dir="${tomcat.dir}">
+                    <exclude name="webapps/ROOT/**"/>
+                    <exclude name="webapps/examples/**"/>
+                    <exclude name="webapps/docs/**"/>
+                  </fileset>
                 </copy>
 
                 <!-- Copy the dependencies -->



More information about the gatein-commits mailing list