Description
There seems to be a typo in the build.xml. The target "copy-deps" downloads the commons-codec-1.1.jar but save it as commons-codec-1.3.jar. I suggest it should download the 1.3 also.
-----------------------------------------------------------------
Index: build.xml
===================================================================
RCS file: /home/cvspublic/ws-xmlrpc/build.xml,v
retrieving revision 1.33
diff -u -r1.33 build.xml
— build.xml 29 Apr 2005 12:14:19 -0000 1.33
+++ build.xml 24 Oct 2005 05:47:06 -0000
@@ -61,7 +61,7 @@
</get>
<get dest="${lib.repo}/commons-logging-1.0.2.jar" usetimestamp="true" ignoreerrors="true" src="http://www.ibiblio.org/maven/commons-logging/jars/commons-logging-1.0.2.jar">
</get>
- <get dest="${lib.repo}/commons-codec-1.3.jar" usetimestamp="true" ignoreerrors="true" src="http://www.ibiblio.org/maven//commons-codec/jars/commons-codec-1.1.jar">
+ <get dest="${lib.repo}/commons-codec-1.3.jar" usetimestamp="true" ignoreerrors="true" src="http://www.ibiblio.org/maven//commons-codec/jars/commons-codec-1.3.jar">
</get>
<get dest="${lib.repo}/servletapi-2.2.jar" usetimestamp="true" ignoreerrors="true" src="http://www.ibiblio.org/maven/servletapi/jars/servletapi-2.2.jar">
</get>
-----------------------------------------------------------------------------------