You are viewing a plain text version of this content. The canonical link for it is here.
Posted to svn@forrest.apache.org by rg...@apache.org on 2005/02/18 13:50:24 UTC

svn commit: r154267 - forrest/trunk/main/targets/webapp.xml

Author: rgardler
Date: Fri Feb 18 04:50:23 2005
New Revision: 154267

URL: http://svn.apache.org/viewcvs?view=rev&rev=154267
Log:
Copy plugin class files to WEB-INF/classes (submitted by Bastian Bowe)

Modified:
    forrest/trunk/main/targets/webapp.xml

Modified: forrest/trunk/main/targets/webapp.xml
URL: http://svn.apache.org/viewcvs/forrest/trunk/main/targets/webapp.xml?view=diff&r1=154266&r2=154267
==============================================================================
--- forrest/trunk/main/targets/webapp.xml (original)
+++ forrest/trunk/main/targets/webapp.xml Fri Feb 18 04:50:23 2005
@@ -115,6 +115,15 @@
       </fileset>
     </copy>
 
+    <!-- Copy custom plugin jars -->
+    <for list="${project.required.plugins}" param="name">
+      <sequential>
+        <copy file="${forrest.plugins-dir}/lib/@{name}.jar"
+	        todir="${project.webapp}/WEB-INF/lib"
+	        failonerror="false"/>
+      </sequential>
+    </for>
+    
    <!-- 
     | Copy all non-xdocs content across to the webapp
    -->