You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@forrest.apache.org by ch...@apache.org on 2004/04/13 16:37:45 UTC

svn commit: rev 9991 - xml/forrest/trunk/etc/cocoon_upgrade

Author: cheche
Date: Tue Apr 13 07:37:43 2004
New Revision: 9991

Modified:
   xml/forrest/trunk/etc/cocoon_upgrade/build.xml
Log:
Add a target to resolve the issue on endorsed libs


Modified: xml/forrest/trunk/etc/cocoon_upgrade/build.xml
==============================================================================
--- xml/forrest/trunk/etc/cocoon_upgrade/build.xml	(original)
+++ xml/forrest/trunk/etc/cocoon_upgrade/build.xml	Tue Apr 13 07:37:43 2004
@@ -25,6 +25,7 @@
        =============================================================== -->
        <property name="cocoon.home"              location="../../../../cocoon-2.1"/>
        <property name="forrest.root"             location="../../"/>
+       <property name="forrest.build"            location="../../build/dist/shbat"/>
   </target>
 
   <target name="import-cocoon-xconf" depends="init">
@@ -32,5 +33,11 @@
        <outputproperty name="indent" value="yes"/>
     </xslt>
   </target>
+  <target name="fix-endorsed-libs-problem" depends="init">
+     <move todir="${forrest.build}/lib/endorsed">
+        <fileset dir="${forrest.build}/lib/core" includes="jakarta-*.jar"/>
+     </move>
+  </target>
+
 
 </project>