You are viewing a plain text version of this content. The canonical link for it is here.
Posted to slide-dev@jakarta.apache.org by re...@apache.org on 2001/08/10 22:40:16 UTC

cvs commit: jakarta-slide build.xml

remm        01/08/10 13:40:16

  Modified:    .        build.xml
  Log:
  - Temporarily (?) add the HTTP client code to the Slide CVS, to solve a lot of
    maintenance problems.
  - This version has SSL support disabled, so that Slide doesn't require JSSE
    to build. This is a one line change.
  - This version doesn't have the controversial log feature. The logging code
    in the other parts of the client will be commented out.
  
  Revision  Changes    Path
  1.103     +6 -2      jakarta-slide/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-slide/build.xml,v
  retrieving revision 1.102
  retrieving revision 1.103
  diff -u -r1.102 -r1.103
  --- build.xml	2001/08/01 17:51:50	1.102
  +++ build.xml	2001/08/10 20:40:16	1.103
  @@ -65,7 +65,7 @@
     <property name="struts.jar"            
               value="${struts.home}/lib/struts.jar"/>
     <property name="commons-httpclient.jar"             
  -            value="../jakarta-commons/httpclient/dist/commons-httpclient.jar"/>
  +            value="lib/commons-httpclient.jar"/>
     <property name="tomcat.build"          value="../jakarta-tomcat-4.0/build" />
   
   
  @@ -626,7 +626,11 @@
       <echo message="Copying libraries" />
       <copy todir="${webdavclient.dist}/lib" file="${jaxp.jar}" />
       <copy todir="${webdavclient.dist}/lib" file="${xmlapi.jar}" />
  -    <copy todir="${webdavclient.dist}/lib" file="${commons-httpclient.jar}" />
  +    <!--copy todir="${webdavclient.dist}/lib" file="${commons-httpclient.jar}" /-->
  +    <jar jarfile="${webdavclient.dist}/lib/commons-httpclient.jar"
  +     basedir="${webdavclient.build}/classes"
  +     manifest="${webdavclient.build}/classes/MANIFEST.MF"
  +     includes="org/apache/commons/httpclient/**" />
   
       <echo message="Building DAV Client JAR" />
       <jar jarfile="${webdavclient.dist}/lib/webdav.jar"