You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by pa...@apache.org on 2002/08/08 07:47:01 UTC

cvs commit: jakarta-tomcat-5 build.properties.default build.xml

patrickl    2002/08/07 22:47:01

  Modified:    .        build.properties.default build.xml
  Log:
  The commons-logging package built by 'ant download' doesn't have support for log4j or LogKit in it, unless the properties happen to be set outside of jakarta-tomcat-5. This patch adds downloads for the released versions of log4j and logkit.
  Submitted by:  Steve Downey (steve.downey@netfolio.com)
  
  Revision  Changes    Path
  1.18      +12 -3     jakarta-tomcat-5/build.properties.default
  
  Index: build.properties.default
  ===================================================================
  RCS file: /home/cvs/jakarta-tomcat-5/build.properties.default,v
  retrieving revision 1.17
  retrieving revision 1.18
  diff -u -r1.17 -r1.18
  --- build.properties.default	7 Aug 2002 14:14:03 -0000	1.17
  +++ build.properties.default	8 Aug 2002 05:47:01 -0000	1.18
  @@ -122,8 +122,17 @@
   activation.jar=${activation.lib}/activation.jar
   
   # ----- Log4j -----
  -log4j.home=${base.path}/log4j
  -log4j.jar=${log4j.home}/log4j.jar
  +log4j.home=${base.path}/jakarta-log4j-1.2.6
  +log4j.lib=${log4j.home}
  +log4j.jar=${log4j.lib}/dist/lib/log4j-1.2.6.jar
  +log4j.loc=http://jakarta.apache.org/log4j/jakarta-log4j-1.2.6.tar.gz
  +
  +# ----- LogKit -----
  +logkit.home=${base.path}/LogKit-1.0.1
  +logkit.lib=${logkit.home}
  +logkit.jar=${logkit.lib}/logkit-1.0.1.jar
  +logkit.loc=http://jakarta.apache.org/builds/jakarta-avalon/release/logkit/latest/LogKit-1.0.1-bin.tar.gz
  +
   
   # ----- Jaxen ( required by taglibs/standard required by jasper ) -----
   jaxen.home=${base.path}/jaxen-1.0-FCS
  
  
  
  1.19      +10 -0     jakarta-tomcat-5/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-tomcat-5/build.xml,v
  retrieving revision 1.18
  retrieving revision 1.19
  diff -u -r1.18 -r1.19
  --- build.xml	7 Aug 2002 14:14:03 -0000	1.18
  +++ build.xml	8 Aug 2002 05:47:01 -0000	1.19
  @@ -492,6 +492,16 @@
       </antcall>
       -->
   
  +    <antcall target="downloadgz">
  +      <param name="sourcefile" value="${log4j.loc}"/>
  +      <param name="destfile" value="${log4j.jar}"/>
  +    </antcall>
  +
  +    <antcall target="downloadgz">
  +      <param name="sourcefile" value="${logkit.loc}"/>
  +      <param name="destfile" value="${logkit.jar}"/>
  +    </antcall>
  +
       <antcall target="cvsbuild">
         <param name="location" value="${commons-logging.loc}"/>
         <param name="subdir" value="${commons-logging.home}"/>
  
  
  

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