build.xml saves downloaded common-codec-1.1.jar as common-codec-1.3.jar -----------------------------------------------------------------------
Key: XMLRPC-73 URL: http://issues.apache.org/jira/browse/XMLRPC-73 Project: XML-RPC Type: Bug Components: Releases Versions: 2.1 Reporter: Thomas Mohaupt 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> ----------------------------------------------------------------------------------- -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira