olegk       2003/03/27 13:27:21

  Modified:    httpclient build.xml
  Log:
  Compilation process now includes examples & unsupported components
  
  Bug fix:
  
  #10817 (Provide more Example Code)
  
  Contributed by Oleg Kalnichevski
  
  Revision  Changes    Path
  1.26      +17 -1     jakarta-commons/httpclient/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-commons/httpclient/build.xml,v
  retrieving revision 1.25
  retrieving revision 1.26
  diff -u -r1.25 -r1.26
  --- build.xml 25 Feb 2003 02:10:16 -0000      1.25
  +++ build.xml 27 Mar 2003 21:27:21 -0000      1.26
  @@ -8,6 +8,7 @@
           author: dIon Gillard  ( mailto:[EMAIL PROTECTED] )
           author: Mark Paquette ( mailto:[EMAIL PROTECTED] )
           author: Jeff Dever ( mailto:[EMAIL PROTECTED] )
  +        author: Oleg Kalnichevski ( mailto:[EMAIL PROTECTED] )
   -->
   
   <!-- ========== Properties: Property Files  =============================== -->
  @@ -162,6 +163,7 @@
       <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"/>
  @@ -225,6 +227,20 @@
             description="Compile shareable components">
       <javac srcdir      ="${source.home}/java"
              destdir     ="${build.home}/classes"
  +           debug       ="${compile.debug}"
  +           deprecation ="${compile.deprecation}"
  +           optimize    ="${compile.optimize}">
  +      <classpath refid="compile.classpath"/>
  +    </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: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to