You are viewing a plain text version of this content. The canonical link for it is here.
Posted to xmlrpc-dev@ws.apache.org by jo...@apache.org on 2005/04/15 21:52:38 UTC

cvs commit: ws-xmlrpc default.properties .classpath build.xml

jochen      2005/04/15 12:52:38

  Modified:    .        default.properties .classpath build.xml
  Log:
  Upgrade to commons-codec-1.2
  
  Revision  Changes    Path
  1.15      +1 -1      ws-xmlrpc/default.properties
  
  Index: default.properties
  ===================================================================
  RCS file: /home/cvs/ws-xmlrpc/default.properties,v
  retrieving revision 1.14
  retrieving revision 1.15
  diff -u -r1.14 -r1.15
  --- default.properties	15 Apr 2005 14:04:50 -0000	1.14
  +++ default.properties	15 Apr 2005 19:52:38 -0000	1.15
  @@ -32,7 +32,7 @@
   
   commons-httpclient.jar = ${lib.repo}/commons-httpclient-2.0.2.jar
   commons-logging.jar = ${lib.repo}/commons-logging-1.0.2.jar
  -commons-codec.jar = ${lib.repo}/commons-codec-1.1.jar
  +commons-codec.jar = ${lib.repo}/commons-codec-1.2.jar
   jsse.jar = ${lib.repo}/jsse.jar
   jnet.jar = ${lib.repo}/jnet.jar
   jcert.jar = ${lib.repo}/jcert.jar
  
  
  
  1.3       +32 -8     ws-xmlrpc/.classpath
  
  Index: .classpath
  ===================================================================
  RCS file: /home/cvs/ws-xmlrpc/.classpath,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- .classpath	15 Apr 2005 14:04:50 -0000	1.2
  +++ .classpath	15 Apr 2005 19:52:38 -0000	1.3
  @@ -1,12 +1,36 @@
   <?xml version="1.0" encoding="UTF-8"?>
   <classpath>
  -	<classpathentry kind="src" path="examples/echo"/>
  -	<classpathentry kind="src" path="src/java"/>
  -	<classpathentry kind="src" path="src/test"/>
  -	<classpathentry kind="lib" path="lib/commons-codec-1.1.jar"/>
  -	<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
  -	<classpathentry kind="lib" path="lib/commons-httpclient-2.0.2.jar"/>
  -	<classpathentry kind="lib" path="lib/servlet-2.2.jar"/>
  -	<classpathentry kind="lib" path="lib/junit-3.8.1.jar"/>
  +	<classpathentry kind="src" path="examples/echo">
  +		<attributes>
  +		</attributes>
  +	</classpathentry>
  +	<classpathentry kind="src" path="src/java">
  +		<attributes>
  +		</attributes>
  +	</classpathentry>
  +	<classpathentry kind="src" path="src/test">
  +		<attributes>
  +		</attributes>
  +	</classpathentry>
  +	<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER">
  +		<attributes>
  +		</attributes>
  +	</classpathentry>
  +	<classpathentry kind="lib" path="lib/commons-httpclient-2.0.2.jar">
  +		<attributes>
  +		</attributes>
  +	</classpathentry>
  +	<classpathentry kind="lib" path="lib/junit-3.8.1.jar">
  +		<attributes>
  +		</attributes>
  +	</classpathentry>
  +	<classpathentry kind="lib" path="lib/commons-codec-1.2.jar">
  +		<attributes>
  +		</attributes>
  +	</classpathentry>
  +	<classpathentry kind="lib" path="lib/servletapi-2.2.jar">
  +		<attributes>
  +		</attributes>
  +	</classpathentry>
   	<classpathentry kind="output" path="bin"/>
   </classpath>
  
  
  
  1.27      +2 -1      ws-xmlrpc/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/ws-xmlrpc/build.xml,v
  retrieving revision 1.26
  retrieving revision 1.27
  diff -u -r1.26 -r1.27
  --- build.xml	15 Apr 2005 14:04:50 -0000	1.26
  +++ build.xml	15 Apr 2005 19:52:38 -0000	1.27
  @@ -31,6 +31,7 @@
     <!-- ================================================================== -->
     
     <target name="env" description="Dumps the environment settings">
  +    <echo message="lib.repo = ${lib.repo}"/>
       <echo message="java.home = ${java.home}"/>
       <echo message="user.home = ${user.home}"/>
       <echo message="jsse.jar = ${jsse.jar}"/>
  @@ -53,7 +54,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.1.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.2.jar" usetimestamp="true" ignoreerrors="true" src="http://www.ibiblio.org/maven//commons-codec/jars/commons-codec-1.2.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>