jvanzyl 02/01/16 08:42:20
Modified: . build.xml default.properties
Log:
- adding the auto jar downloading target the turbine 3 upon request
- i've also changed some of the properties to add version numbers
to try and be more consistent, i'm not sure in the long run whether
version numbers are a good thing on jar files but we can do it for
now (and it's the only way the downloader works right now).
Revision Changes Path
1.16 +30 -0 jakarta-turbine-3/build.xml
Index: build.xml
===================================================================
RCS file: /home/cvs/jakarta-turbine-3/build.xml,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -r1.15 -r1.16
--- build.xml 15 Jan 2002 01:23:08 -0000 1.15
+++ build.xml 16 Jan 2002 16:42:20 -0000 1.16
@@ -35,7 +35,37 @@
<pathelement location="${stratum.jar}"/>
<pathelement location="${velocity.jar}"/>
<pathelement location="${xerces.jar}"/>
+ <pathelement location="tdk.jar"/>
</path>
+
+ <!-- ================================================================== -->
+ <!-- U P D A T E J A R S -->
+ <!-- ================================================================== -->
+
+ <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>
<!-- ================================================================== -->
<!-- Prints useful build environment values -->
1.8 +2 -2 jakarta-turbine-3/default.properties
Index: default.properties
===================================================================
RCS file: /home/cvs/jakarta-turbine-3/default.properties,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- default.properties 15 Jan 2002 12:09:04 -0000 1.7
+++ default.properties 16 Jan 2002 16:42:20 -0000 1.8
@@ -35,7 +35,7 @@
velocity.jar = ${lib.repo}/velocity-1.3-dev.jar
log4j.jar = ${lib.repo}/log4j-1.1.3.jar
-servlet.jar = ${lib.repo}/servlet.jar
+servlet.jar = ${lib.repo}/servlet-2.2.jar
fulcrum.jar = ${lib.repo}/fulcrum-1.0.jar
regexp.jar = ${lib.repo}/jakarta-regexp-1.3-dev.jar
torque.jar = ${lib.repo}/torque-3.0-dev.jar
@@ -45,7 +45,7 @@
commons-util.jar = ${lib.repo}/commons-util-0.1-dev.jar
stratum.jar = ${lib.repo}/stratum-0.1-dev.jar
-dom4j.jar = ${lib.repo}/dom4j.jar
+dom4j.jar = ${lib.repo}/dom4j-1.1.jar
commons-beanutils.jar = ${lib.repo}/commons-beanutils.jar
# Testing
--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>