[Yanel-commits] rev 41196 - public/yanel/trunk/src/build/targets/webapp

michi at wyona.com michi at wyona.com
Thu Jan 29 10:24:12 CET 2009


Author: michi
Date: 2009-01-29 10:24:11 +0100 (Thu, 29 Jan 2009)
New Revision: 41196

Modified:
   public/yanel/trunk/src/build/targets/webapp/webapp.xml
Log:
copy basic webapp libs refactored such that development process can be speeded up

Modified: public/yanel/trunk/src/build/targets/webapp/webapp.xml
===================================================================
--- public/yanel/trunk/src/build/targets/webapp/webapp.xml	2009-01-29 08:49:20 UTC (rev 41195)
+++ public/yanel/trunk/src/build/targets/webapp/webapp.xml	2009-01-29 09:24:11 UTC (rev 41196)
@@ -34,10 +34,7 @@
       </fileset>
     </copy>
 
-    <!-- TODO: Copy only core, impl, webapp, but NOT cmdl, etc. -->
-    <copy todir="${build.dir}/webapps/${servlet.context.prefix}/WEB-INF/lib">
-      <fileset dir="${yanel.source.home}/build/lib"/>
-    </copy>
+    <antcall target="copy-basic-webapp-libs"/>
 
     <antcall target="deploy-resources"/>
 
@@ -134,6 +131,13 @@
     <antcall target="remove-ambiguous-libs"/>
   </target>
 
+  <target name="copy-basic-webapp-libs" description="Copy basic webapp libraries (core, impl, webapp)" depends="init">
+    <!-- TODO: Copy only core, impl, webapp, but NOT cmdl, etc. -->
+    <copy todir="${build.dir}/webapps/${servlet.context.prefix}/WEB-INF/lib">
+      <fileset dir="${yanel.source.home}/build/lib"/>
+    </copy>
+  </target>
+
   <target name="war" description="Build war file" depends="init, webapp">
     <jar jarfile="${yanel.source.home}/build/webapps/${servlet.context.prefix}.war" basedir="${yanel.source.home}/build/webapps/${servlet.context.prefix}"/>
   </target>



More information about the Yanel-commits mailing list