You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by bi...@apache.org on 2002/10/25 07:44:37 UTC

cvs commit: jakarta-tomcat-4.0 build.xml

billbarker    2002/10/24 22:44:37

  Modified:    .        build.xml
  Log:
  Change the download target for commons-logging & commons-dbcp to do a download instead of a cvs build.
  
  These two have been released now (and are set correctly in build.properties.sample).  The download target should get the targeted version.
  
  Revision  Changes    Path
  1.77      +6 -31     jakarta-tomcat-4.0/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-tomcat-4.0/build.xml,v
  retrieving revision 1.76
  retrieving revision 1.77
  diff -u -r1.76 -r1.77
  --- build.xml	30 Sep 2002 10:46:06 -0000	1.76
  +++ build.xml	25 Oct 2002 05:44:37 -0000	1.77
  @@ -464,25 +464,11 @@
         <param name="destfile" value="${commons-digester.jar}"/>
       </antcall>
   
  -    <!-- we need the release to happend, in the meantime use cvs...
  +    <!-- Commons Logging    -->
       <antcall target="downloadgz">
         <param name="sourcefile" value="${commons-logging.loc}"/>
         <param name="destfile" value="${commons-logging.jar}"/>
       </antcall>
  -    -->
  -    <antcall target="cvsbuild">
  -      <param name="location" value="${commons-logging.loc}"/>
  -      <param name="subdir" value="${commons-logging.home}"/>
  -      <param name="destfile" value="${commons-logging.jar}"/>
  -    </antcall>
  -    <copy
  -      file="${commons-logging.home}/dist/commons-logging.jar"
  -      tofile="${commons-logging.jar}"
  -    />
  -    <copy
  -      file="${commons-logging.home}/dist/commons-logging-api.jar"
  -      tofile="${commons-logging-api.jar}"
  -    />
   
       <antcall target="downloadgz">
         <param name="sourcefile" value="${regexp.loc}"/>
  @@ -502,7 +488,6 @@
         <param name="destfile" value="${xmlParserAPIs.jar}"/>
       </antcall>
       <!-- commons- daemons/dbcp/pool need something different. -->
  -
       <antcall target="cvsbuild">
         <param name="location" value="${commons-daemon.loc}"/>
         <param name="subdir" value="${commons-daemon.home}"/>
  @@ -514,21 +499,11 @@
         <param name="destfile" value="${commons-pool.jar}"/>
       </antcall>
   
  -    <!-- commons-dbcp needs pool and ../LICENSE -->
  -    <!-- That is ugly XXX needs a review -->
  -    <copy file="LICENSE" tofile="../LICENSE"/>
  -    <antcall target="cvsbuild">
  -      <param name="location" value="${commons-dbcp.loc}"/>
  -      <param name="subdir" value="${commons-dbcp.home}"/>
  -      <param name="destfile" value="${commons-dbcp.jar}"/>
  -      <param name="name" value="commons-dbcp"/>
  -    </antcall>
  -    <!-- Dbcp does not put commons-dbcp.jar in ${commons-dbcp.home} -->
  -    <copy
  -      file="${commons-dbcp.home}/dist/commons-dbcp.jar"
  -      tofile="${commons-dbcp.jar}"
  -    />
  -
  +    <antcall target="downloadzip">
  +      <param name="sourcefile" value="${commons-dbcp.loc}" />
  +      <param name="destfile" value="${commons-dbcp.jar}" />
  +      <param name="destdir" value="${commons-dbcp.home}" />
  +    </antcall>
       <antcall target="downloadgz">
         <param name="sourcefile" value="${commons-modeler.loc}"/>
         <param name="destfile" value="${commons-modeler.jar}"/>
  
  
  

--
To unsubscribe, e-mail:   <ma...@jakarta.apache.org>
For additional commands, e-mail: <ma...@jakarta.apache.org>