You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by rj...@apache.org on 2008/04/08 10:42:03 UTC

svn commit: r645791 - in /tomcat/build/tc5.5.x: build.properties.default build.xml

Author: rjung
Date: Tue Apr  8 01:42:02 2008
New Revision: 645791

URL: http://svn.apache.org/viewvc?rev=645791&view=rev
Log:
Fix BZ 44463: War file upload in manager webapp fails due to missing
commons-io dependency. Added commons-io 1.4.
Part 1

Modified:
    tomcat/build/tc5.5.x/build.properties.default
    tomcat/build/tc5.5.x/build.xml

Modified: tomcat/build/tc5.5.x/build.properties.default
URL: http://svn.apache.org/viewvc/tomcat/build/tc5.5.x/build.properties.default?rev=645791&r1=645790&r2=645791&view=diff
==============================================================================
--- tomcat/build/tc5.5.x/build.properties.default (original)
+++ tomcat/build/tc5.5.x/build.properties.default Tue Apr  8 01:42:02 2008
@@ -175,6 +175,11 @@
 commons-fileupload.jar=${commons-fileupload.lib}/commons-fileupload-1.2.jar
 commons-fileupload.loc=${base-commons.loc}/fileupload/binaries/commons-fileupload-1.2-bin.tar.gz
 
+# ----- Commons IO, needed by Commons Fileupload -----
+commons-io.home=${base.path}/commons-io-1.4
+commons-io.jar=${commons-io.home}/commons-io-1.4.jar
+commons-io.loc=${base-commons.loc}/io/binaries/commons-io-1.4-bin.tar.gz
+
 # ----- Java Management Extensions (JMX), JMX RI 1.2.1 or later or MX4J 2.0.1 or later -----
 jmx.home=${base.path}/mx4j-3.0.2
 jmx.lib=${jmx.home}/lib

Modified: tomcat/build/tc5.5.x/build.xml
URL: http://svn.apache.org/viewvc/tomcat/build/tc5.5.x/build.xml?rev=645791&r1=645790&r2=645791&view=diff
==============================================================================
--- tomcat/build/tc5.5.x/build.xml (original)
+++ tomcat/build/tc5.5.x/build.xml Tue Apr  8 01:42:02 2008
@@ -1935,6 +1935,11 @@
     </antcall>
 
     <antcall target="downloadgz">
+      <param name="sourcefile" value="${commons-io.loc}"/>
+      <param name="destfile" value="${commons-io.jar}"/>
+    </antcall>
+
+    <antcall target="downloadgz">
       <!-- xerces2 brings 2 files, test for one of them -->
       <param name="sourcefile" value="${xerces.loc}"/>
       <param name="destfile" value="${xml-apis.jar}"/>



---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@tomcat.apache.org
For additional commands, e-mail: dev-help@tomcat.apache.org