Author: rjung
Date: Tue Apr  8 01:42:44 2008
New Revision: 645792

URL: http://svn.apache.org/viewvc?rev=645792&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 2

Modified:
    tomcat/container/tc5.5.x/webapps/docs/changelog.xml
    tomcat/container/tc5.5.x/webapps/manager/build.xml

Modified: tomcat/container/tc5.5.x/webapps/docs/changelog.xml
URL: 
http://svn.apache.org/viewvc/tomcat/container/tc5.5.x/webapps/docs/changelog.xml?rev=645792&r1=645791&r2=645792&view=diff
==============================================================================
--- tomcat/container/tc5.5.x/webapps/docs/changelog.xml (original)
+++ tomcat/container/tc5.5.x/webapps/docs/changelog.xml Tue Apr  8 01:42:44 2008
@@ -31,6 +31,16 @@
   </properties>
 
 <body>
+<section name="Tomcat 5.5.27 (fhanik)">
+  <subsection name="General">
+    <changelog>
+      <fix>
+        <bug>44463</bug>: War file upload in manager webapp fails due to 
missing
+        commons-io dependency. Added commons-io 1.4. (rjung)
+      </fix>
+    </changelog>
+  </subsection>
+</section>
 <section name="Tomcat 5.5.26 (fhanik)">
   <subsection name="General">
     <changelog>

Modified: tomcat/container/tc5.5.x/webapps/manager/build.xml
URL: 
http://svn.apache.org/viewvc/tomcat/container/tc5.5.x/webapps/manager/build.xml?rev=645792&r1=645791&r2=645792&view=diff
==============================================================================
--- tomcat/container/tc5.5.x/webapps/manager/build.xml (original)
+++ tomcat/container/tc5.5.x/webapps/manager/build.xml Tue Apr  8 01:42:44 2008
@@ -52,6 +52,9 @@
          <target name="copy-fileupload.jar">
            <copy todir="${webapps.build}/${webapp.name}/WEB-INF/lib" 
file="${commons-fileupload.jar}"/>
          </target>
+         <target name="copy-io.jar">
+           <copy todir="${webapps.build}/${webapp.name}/WEB-INF/lib" 
file="${commons-io.jar}"/>
+         </target>
 
 
   <!-- =================== BUILD: Create Directories ====================== -->
@@ -65,7 +68,7 @@
 
 
   <!-- ================ BUILD: Copy Static Files ========================== -->
-  <target name="build-static" depends="build-prepare,copy-fileupload.jar">
+  <target name="build-static" 
depends="build-prepare,copy-fileupload.jar,copy-io.jar">
     <copy todir="${webapps.build}/${webapp.name}">
       <fileset dir=".">
         <exclude name="build.*"/>



---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to