You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@depot.apache.org by ni...@apache.org on 2004/05/14 21:08:28 UTC

svn commit: rev 10653 - incubator/depot/trunk/update

Author: nickchalko
Date: Fri May 14 14:08:27 2004
New Revision: 10653

Modified:
   incubator/depot/trunk/update/build-ant-get.xml
Log:
Testing

Modified: incubator/depot/trunk/update/build-ant-get.xml
==============================================================================
--- incubator/depot/trunk/update/build-ant-get.xml	(original)
+++ incubator/depot/trunk/update/build-ant-get.xml	Fri May 14 14:08:27 2004
@@ -1,37 +1,67 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!--$Id: $-->
-<!--This is a autogenerated file designed to be checked in to Source Control-->
-<project default="get-all" name="">
-<property name="depot.home" value="${user.home}/.apache.depot"/>
-<property name="repository.dir" value="${depot.home}/local-repository"/>
-<fileset id="depot-update.dependent.jars.fileset" dir="${repository.dir}">
-<include name="log4j/jars/log4j-1.2.jars"/>
-<include name="commons-vfs/jars/commons-vfs-20030518103800.jars"/>
-<include name="commons-logging/jars/commons-logging-null.jars"/>
-<include name="commons-httpclient/jars/commons-httpclient-2.0.jars"/>
-
-<include name="regexp/jars/regexp-null.jars"/>
-</fileset>
-<target name="get-all" depends="get-log4j,get-commons-vfs,get-commons-logging,get-commons-httpclient,get-regexp"/>
-<target name="get-log4j">
-<mkdir dir="${repository.dir}/log4j/jars/"/>
-<get verbose="true" usetimestamp="true" dest="${repository.dir}/log4j/jars/log4j-1.2.jar" src="http://www.ibiblio.org/maven/log4j/jars/log4j-1.2.8.jar"/>
-</target>
-<target name="get-commons-vfs">
-<mkdir dir="${repository.dir}/commons-vfs/jars/"/>
-<get verbose="true" usetimestamp="true" dest="${repository.dir}/commons-vfs/jars/commons-vfs-20030518103800.jar" src="http://www.ibiblio.org/maven/commons-vfs/jars/commons-vfs-20030518103800.jar"/>
-</target>
-<target name="get-commons-logging">
-<mkdir dir="${repository.dir}/commons-logging/jars/"/>
-<get verbose="true" usetimestamp="true" dest="${repository.dir}/commons-logging/jars/commons-logging-null.jar" src="http://www.ibiblio.org/maven/commons-logging/jars/commons-logging-1.1-dev.jar"/>
-</target>
-<target name="get-commons-httpclient">
-<mkdir dir="${repository.dir}/commons-httpclient/jars/"/>
-<get verbose="true" usetimestamp="true" dest="${repository.dir}/commons-httpclient/jars/commons-httpclient-2.0.jar" src="http://www.ibiblio.org/maven/commons-httpclient/jars/commons-httpclient-2.0.jar"/>
-</target>
-
-<target name="get-regexp">
-<mkdir dir="${repository.dir}/regexp/jars/"/>
-<get verbose="true" usetimestamp="true" dest="${repository.dir}/regexp/jars/regexp-null.jar" src="http://www.ibiblio.org/maven/regexp/jars/regexp-1.3.jar"/>
-</target>
-</project>
+<?xml version="1.0" encoding="UTF-8"?>
+<!--$Id: $-->
+<!--This is a autogenerated file designed to be checked in to Source Control-->
+<project default="get-all" name="">
+	<property name="depot.home" value="${user.home}/.apache.depot" />
+	<property name="repository.dir" value="c:\tools\repo" />
+	<echo message="repository.dir=${repository.dir}" />
+	<path id="bar">
+		<fileset id="depot-update.dependent.jars.fileset"
+		         dir="${repository.dir}">
+			<include name="log4j/jars/log4j-1.2.jars" />
+			<include name="commons-vfs/jars/commons-vfs-20030518103800.jars" />
+			<include name="commons-logging/jars/commons-logging-null.jars" />
+			<include name="commons-httpclient/jars/commons-httpclient-2.0.jars" />
+			<include name="regexp/jars/regexp-null.jars" />
+		</fileset>
+	</path>
+	<target name="get-all"
+	        depends="get-log4j,get-commons-vfs,get-commons-logging,get-commons-httpclient,get-regexp">
+
+		<pathconvert property="cat"
+		             targetos="unix"
+		             refid="depot-update.dependent.jars.fileset">
+
+		</pathconvert>
+		<copy todir="c:\temp">
+			<fileset refid="depot-update.dependent.jars.fileset" />
+		</copy>
+
+		<echo message="cat=${cat}" />
+	</target>
+	<target name="get-log4j">
+		<mkdir dir="${repository.dir}/log4j/jars/" />
+		<get verbose="true"
+		     usetimestamp="true"
+		     dest="${repository.dir}/log4j/jars/log4j-1.2.jar"
+		     src="http://www.ibiblio.org/maven/log4j/jars/log4j-1.2.8.jar" />
+	</target>
+	<target name="get-commons-vfs">
+		<mkdir dir="${repository.dir}/commons-vfs/jars/" />
+		<get verbose="true"
+		     usetimestamp="true"
+		     dest="${repository.dir}/commons-vfs/jars/commons-vfs-20030518103800.jar"
+		     src="http://www.ibiblio.org/maven/commons-vfs/jars/commons-vfs-20030518103800.jar" />
+	</target>
+	<target name="get-commons-logging">
+		<mkdir dir="${repository.dir}/commons-logging/jars/" />
+		<get verbose="true"
+		     usetimestamp="true"
+		     dest="${repository.dir}/commons-logging/jars/commons-logging-null.jar"
+		     src="http://www.ibiblio.org/maven/commons-logging/jars/commons-logging-1.1-dev.jar" />
+	</target>
+	<target name="get-commons-httpclient">
+		<mkdir dir="${repository.dir}/commons-httpclient/jars/" />
+		<get verbose="true"
+		     usetimestamp="true"
+		     dest="${repository.dir}/commons-httpclient/jars/commons-httpclient-2.0.jar"
+		     src="http://www.ibiblio.org/maven/commons-httpclient/jars/commons-httpclient-2.0.jar" />
+	</target>
+	<target name="get-regexp">
+		<mkdir dir="${repository.dir}/regexp/jars/" />
+		<get verbose="true"
+		     usetimestamp="true"
+		     dest="${repository.dir}/regexp/jars/regexp-null.jar"
+		     src="http://www.ibiblio.org/maven/regexp/jars/regexp-1.3.jar" />
+	</target>
+</project>