You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@forrest.apache.org by ni...@apache.org on 2004/04/24 01:47:56 UTC

svn commit: rev 10208 - xml/forrest/branches/copyless/src/core/targets

Author: nicolaken
Date: Fri Apr 23 16:47:55 2004
New Revision: 10208

Modified:
   xml/forrest/branches/copyless/src/core/targets/webapp.xml
Log:
Get the webapp target workin again

Modified: xml/forrest/branches/copyless/src/core/targets/webapp.xml
==============================================================================
--- xml/forrest/branches/copyless/src/core/targets/webapp.xml	(original)
+++ xml/forrest/branches/copyless/src/core/targets/webapp.xml	Fri Apr 23 16:47:55 2004
@@ -94,13 +94,13 @@
   
     <copy todir="${project.webapp}/WEB-INF/lib">
     <!-- Note: no overwriting, so user's libs and classes get preference -->
-      <fileset dir="${forrest.home}/lib/core">
+      <fileset dir="${forrest.root-dir}/lib/core">
         <include name="**.jar"/>
       </fileset>
-      <fileset dir="${forrest.home}/lib/optional">
+      <fileset dir="${forrest.root-dir}/lib/optional">
         <include name="**.jar"/>
       </fileset>
-      <fileset dir="${forrest.home}/lib/endorsed">
+      <fileset dir="${forrest.root-dir}/lib/endorsed">
         <include name="**.jar"/>
       </fileset>
     </copy>
@@ -112,7 +112,7 @@
     <!-- Copy XML jars if not running JDK 1.4 (where they're built-in) -->
     <available property="jdk1.4+" classname="java.lang.CharSequence"/>
     <copy todir="${project.webapp}/WEB-INF/lib">
-      <fileset dir="${forrest.home}/lib/endorsed">
+      <fileset dir="${forrest.root-dir}/lib/endorsed">
         <include name="*jar" unless="jdk1.4+"/>
       </fileset>
     </copy>