Author: crossley
Date: Sun Aug 24 20:50:23 2008
New Revision: 688610
URL: http://svn.apache.org/viewvc?rev=688610&view=rev
Log:
The Cocoon-2.1 core has gained some more supporting libraries that we don't yet
need, so exclude them from "copy-core-libs" target.
Modified:
forrest/branches/update_cocoon_2.1.12-dev/etc/cocoon_upgrade/build.xml
Modified: forrest/branches/update_cocoon_2.1.12-dev/etc/cocoon_upgrade/build.xml
URL:
http://svn.apache.org/viewvc/forrest/branches/update_cocoon_2.1.12-dev/etc/cocoon_upgrade/build.xml?rev=688610&r1=688609&r2=688610&view=diff
==============================================================================
--- forrest/branches/update_cocoon_2.1.12-dev/etc/cocoon_upgrade/build.xml
(original)
+++ forrest/branches/update_cocoon_2.1.12-dev/etc/cocoon_upgrade/build.xml Sun
Aug 24 20:50:23 2008
@@ -51,20 +51,27 @@
=============================================================== -->
<copy todir="${forrest.home}/lib/core">
<fileset dir="${cocoon.home}/lib/core" defaultexcludes="yes">
+ <!-- Exclude some that we don't need -->
+ <exclude name="commons-beanutils-core-*.jar"/>
+ <exclude name="commons-javaflow-*.jar"/>
+ <exclude name="excalibur-instrument-mgr-*.jar"/>
+ <exclude name="javac*.jar"/>
+ <exclude name="jdtcore-*.jar"/>
+ <exclude name="js-*.jar"/>
+ <exclude name="nekohtml-*.jar"/>
+ <exclude name="pizza-*.jar"/>
+ <!-- OSGI not yet needed -->
+ <exclude name="knopflerfish-*.jar"/>
<!-- FIXME: The jxpath upgrade cannot be done.
See issue FOR-675 (and FOR-405 and FOR-303) and dev mail list.
commons-jxpath-1.2 causes errors with "site:" links.
We have a workaround so use Cocoon's jar.
<exclude name="commons-jxpath-*.jar"/>
-->
- <!-- Exclude some that we don't need -->
- <exclude name="commons-javaflow-*.jar"/>
<!-- We have newer xml-commons-resolver -->
<exclude name="xml-commons-resolver-*.jar"/>
<!-- servlet.jar goes under tools/jetty -->
<exclude name="servlet-*.jar"/>
- <!-- OSGI not yet needed -->
- <exclude name="knopflerfish-*.jar"/>
</fileset>
</copy>
</target>