You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@commons.apache.org by ol...@apache.org on 2004/01/06 21:15:09 UTC

cvs commit: jakarta-commons/httpclient build.properties.sample build.xml

olegk       2004/01/06 12:15:09

  Modified:    httpclient build.properties.sample build.xml
  Log:
  PR #16881 (migrate to commons-codec Base64)
  
  HttpClient made dependent on Commons-codec to perform Base64 and URL encoding/decoding
  
  Contributed by Oleg Kalnichevski
  Reviewed By Michael Becke
  
  Revision  Changes    Path
  1.13      +2 -1      jakarta-commons/httpclient/build.properties.sample
  
  Index: build.properties.sample
  ===================================================================
  RCS file: /home/cvs/jakarta-commons/httpclient/build.properties.sample,v
  retrieving revision 1.12
  retrieving revision 1.13
  diff -u -r1.12 -r1.13
  --- build.properties.sample	25 Feb 2003 02:10:15 -0000	1.12
  +++ build.properties.sample	6 Jan 2004 20:15:09 -0000	1.13
  @@ -17,6 +17,7 @@
   # Commons Logging (See http://jakarta.apache.org/commons/logging.html)
   # Required to compile and run.
   commons-logging.jar=${lib.dir}/commons-logging.jar
  +commons-codec.jar=${lib.dir}/commons-codec.jar
   
   # JUnit Version 3.8(+?) (see http://www.junit.org/ )
   # Required to compile and run the unit tests.
  
  
  
  1.31      +4 -9      jakarta-commons/httpclient/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-commons/httpclient/build.xml,v
  retrieving revision 1.30
  retrieving revision 1.31
  diff -u -r1.30 -r1.31
  --- build.xml	8 Jul 2003 22:07:33 -0000	1.30
  +++ build.xml	6 Jan 2004 20:15:09 -0000	1.31
  @@ -22,6 +22,7 @@
     <property name="lib.dir" value="./lib"/>
   
     <property name="commons-logging.jar" value="${lib.dir}/commons-logging.jar"/>
  +  <property name="commons-codec.jar" value="${lib.dir}/commons-codec.jar"/>
   
   <!-- ========== Properties: Javadoc Properties    ========================= -->
   
  @@ -102,6 +103,7 @@
       <pathelement location="${jcert.jar}"/>
       <pathelement location="${jnet.jar}"/>
       <pathelement location="${commons-logging.jar}"/>
  +    <pathelement location="${commons-codec.jar}"/>
     </path>
   
   <!-- ========== Test Execution Defaults =================================== -->
  @@ -116,6 +118,7 @@
       <pathelement location="${jcert.jar}"/>
       <pathelement location="${jnet.jar}"/>
       <pathelement location="${commons-logging.jar}"/>
  +    <pathelement location="${commons-codec.jar}"/>
       <pathelement location="${conf.home}"/>
       <pathelement location="${servlet.jar}"/>
     </path>
  @@ -164,7 +167,6 @@
       <mkdir dir="${build.home}/docs/api"/>
       <mkdir dir="${build.home}/tests"/>
       <mkdir dir="${build.home}/examples"/>
  -    <mkdir dir="${build.home}/contrib"/>
       <mkdir dir="${test-webapp.dest}"/>
       <mkdir dir="${test-webapp.dest}/${httpclient.test.webappContext}"/>
       <mkdir dir="${test-webapp.dest}/${httpclient.test.webappContext}/WEB-INF"/>
  @@ -235,13 +237,6 @@
       </javac>
       <javac srcdir      ="${source.home}/examples"
              destdir     ="${build.home}/examples"
  -           debug       ="${compile.debug}"
  -           deprecation ="${compile.deprecation}"
  -           optimize    ="${compile.optimize}">
  -      <classpath refid="compile.classpath"/>
  -    </javac>
  -    <javac srcdir      ="${source.home}/contrib"
  -           destdir     ="${build.home}/contrib"
              debug       ="${compile.debug}"
              deprecation ="${compile.deprecation}"
              optimize    ="${compile.optimize}">
  
  
  

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