jvanzyl     02/01/17 14:30:07

  Modified:    .        build.xml
  Added:       .        deps.list tdk.jar
  Log:
  - adding auto jar downloading capability
  
  Revision  Changes    Path
  1.30      +26 -0     jakarta-turbine-torque/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-turbine-torque/build.xml,v
  retrieving revision 1.29
  retrieving revision 1.30
  diff -u -r1.29 -r1.30
  --- build.xml 31 Dec 2001 16:51:34 -0000      1.29
  +++ build.xml 17 Jan 2002 22:30:07 -0000      1.30
  @@ -19,7 +19,33 @@
       <pathelement location="${commons-collections.jar}"/>
       <pathelement location="${commons-util.jar}"/>
       <pathelement location="${junit.jar}"/>
  +    <pathelement location="tdk.jar"/>
     </path>
  +
  +  <target
  +    name="update-jars">
  +    
  +    <taskdef 
  +      name="httpget" 
  +      className="org.apache.tdk.task.Get">
  +      <classpath refid="classpath"/>
  +    </taskdef>
  +    
  +    <!-- If you need proxy support you'll have to manually add:
  +    
  +         proxyHost="x"
  +         proxyPort="y"
  +       
  +         We'll clean this up but it worked for a user behind a proxy.
  +    -->
  +    
  +    <httpget
  +      baseUrl="http://jakarta.apache.org/turbine/jars/";
  +      dest="${lib.repo}"
  +      dependencyFile="deps.list"
  +    />
  +
  +  </target>    
   
     <!-- ================================================================== -->
     <!-- E N V I R O N M E N T                                             -->
  
  
  
  1.1                  jakarta-turbine-torque/deps.list
  
  Index: deps.list
  ===================================================================
  commons-collections.jar
  commons-util-0.1-dev.jar
  jdbc2_0-stdext.jar
  junit-3.7.jar
  log4j-1.1.3.jar
  velocity-1.3-dev.jar
  village-1.5.3-dev.jar
  xerces-1.4.4.jar
  
  
  
  1.1                  jakarta-turbine-torque/tdk.jar
  
        <<Binary file>>
  
  

--
To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

Reply via email to