You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lenya.apache.org by gr...@apache.org on 2005/05/23 06:59:37 UTC

svn commit: r177920 - /lenya/branches/BRANCH_1_2_X/src/targets/webapp-build.xml

Author: gregor
Date: Sun May 22 21:59:37 2005
New Revision: 177920

URL: http://svn.apache.org/viewcvs?rev=177920&view=rev
Log:
Optimized copying of files to WEB-INF/classes

Modified:
    lenya/branches/BRANCH_1_2_X/src/targets/webapp-build.xml

Modified: lenya/branches/BRANCH_1_2_X/src/targets/webapp-build.xml
URL: http://svn.apache.org/viewcvs/lenya/branches/BRANCH_1_2_X/src/targets/webapp-build.xml?rev=177920&r1=177919&r2=177920&view=diff
==============================================================================
--- lenya/branches/BRANCH_1_2_X/src/targets/webapp-build.xml (original)
+++ lenya/branches/BRANCH_1_2_X/src/targets/webapp-build.xml Sun May 22 21:59:37 2005
@@ -110,31 +110,13 @@
       </fileset>
     </copy>
 
-    <!-- now copy our logicsheets -->
-    <copy todir="${build.webapp}/WEB-INF/classes">
-      <fileset dir="${build.src}">
-        <include name="**/*.xsl"/>
-      </fileset>
-    </copy>
-
-    <!-- now copy our properties -->
+    <!--  copy properties, logicsheets, xml configuration files and roles -->
     <copy todir="${build.webapp}/WEB-INF/classes">
       <fileset dir="${build.src}">
         <include name="**/*.properties"/>
-      </fileset>
-    </copy>
-
-    <!-- now copy our xml configuration files -->
-    <copy todir="${build.webapp}/WEB-INF/classes">
-      <fileset dir="${build.src}">
-        <include name="**/*.xml"/>
-      </fileset>
-    </copy>
-
-    <!-- now copy our roles -->
-    <copy todir="${build.webapp}/WEB-INF/classes">
-      <fileset dir="${build.src}">
         <include name="**/*.roles"/>
+        <include name="**/*.xml"/>
+        <include name="**/*.xsl"/>
       </fileset>
     </copy>
 



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@lenya.apache.org
For additional commands, e-mail: commits-help@lenya.apache.org