You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@depot.apache.org by mm...@apache.org on 2004/07/09 20:13:05 UTC

svn commit: rev 22759 - incubator/depot/trunk/version

Author: mmay
Date: Fri Jul  9 13:13:04 2004
New Revision: 22759

Modified:
   incubator/depot/trunk/version/build-ant-get.xml
   incubator/depot/trunk/version/build.xml
Log:
Added needed jars


Modified: incubator/depot/trunk/version/build-ant-get.xml
==============================================================================
--- incubator/depot/trunk/version/build-ant-get.xml	(original)
+++ incubator/depot/trunk/version/build-ant-get.xml	Fri Jul  9 13:13:04 2004
@@ -6,9 +6,11 @@
 	<property name="repository.dir" value="${depot.home}/local-repository" />
 	<fileset id="depot-version.dependent.jars.fileset" dir="${repository.dir}">
 		<include name="servletapi/jars/servletapi-2.3.jar" />
+		<include name="junit/jars/junit-3.8.jar" />				
+		<include name="ant/jars/ant-1.6.1.jar" />
 	</fileset>
 	<target name="get-all"
-	        depends="get-servletapi"/>
+	        depends="get-servletapi,get-junit,get-ant"/>
 	<target name="get-servletapi">
 		<mkdir dir="${repository.dir}/servletapi/jars/" />
 		<get verbose="true"
@@ -16,4 +18,18 @@
 		     dest="${repository.dir}/servletapi/jars/servletapi-2.3.jar"
 		     src="http://www.ibiblio.org/maven/servletapi/jars/servletapi-2.3.jar" />
 	</target>
+	<target name="get-junit">
+		<mkdir dir="${repository.dir}/junit/jars/" />
+		<get verbose="true"
+		     usetimestamp="true"
+		     dest="${repository.dir}/junit/jars/junit-3.8.jar"
+		     src="http://www.ibiblio.org/maven/junit/jars/junit-3.8.jar" />
+	</target>
+	<target name="get-ant">
+		<mkdir dir="${repository.dir}/ant/jars/" />
+		<get verbose="true"
+		     usetimestamp="true"
+		     dest="${repository.dir}/ant/jars/ant-1.6.1.jar"
+		     src="http://www.ibiblio.org/maven/ant/jars/ant-1.6.1.jar" />
+	</target>		
 </project>

Modified: incubator/depot/trunk/version/build.xml
==============================================================================
--- incubator/depot/trunk/version/build.xml	(original)
+++ incubator/depot/trunk/version/build.xml	Fri Jul  9 13:13:04 2004
@@ -88,8 +88,9 @@
 	
 	<target name="all" depends="dist-jar,make-antlet" />
 
-	<target name="compile" depends="hand-stamp,java.antlet.compile" />
-
+	<target name="compile" depends="-init-path,hand-stamp,java.antlet.compile" />
+	<target name="-init-path" depends="get-all"/>
+	
 	<target name="hand-stamp" description="Hand create a version stamp">
 		<copy file="${project.src.dir}/org/apache/depot/version/version/Version.java.txt"
 		      tofile="${project.src.dir}/org/apache/depot/version/version/Version.java"