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 18:26:09 UTC

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

Author: nickchalko
Date: Fri May 14 11:26:08 2004
New Revision: 10650

Modified:
   incubator/depot/trunk/update/   (props changed)
   incubator/depot/trunk/update/build-ant-get.xml
   incubator/depot/trunk/update/build-depend.xml
   incubator/depot/trunk/update/build.xml
Log:
don;t download version/common, but them in lib/ by hand

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 11:26:08 2004
@@ -9,8 +9,7 @@
 <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="depot-common/jars/depot-common-null.jars"/>
-<include name="depot-version/jars/depot-version-null.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-depot-common,get-depot-version,get-regexp"/>
@@ -30,14 +29,7 @@
 <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-depot-common">
-<mkdir dir="${repository.dir}/depot-common/jars/"/>
-<get verbose="true" usetimestamp="true" dest="${repository.dir}/depot-common/jars/depot-common-null.jar" src="http://cvs.apache.org/~nickchalko/SNAPSHOTS/depot-common/jars/depot-common-0.1-dev-20040424.jar"/>
-</target>
-<target name="get-depot-version">
-<mkdir dir="${repository.dir}/depot-version/jars/"/>
-<get verbose="true" usetimestamp="true" dest="${repository.dir}/depot-version/jars/depot-version-null.jar" src="http://cvs.apache.org/~nickchalko/SNAPSHOTS/depot-version/jars/depot-version-dev-20040313.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"/>

Modified: incubator/depot/trunk/update/build-depend.xml
==============================================================================
--- incubator/depot/trunk/update/build-depend.xml	(original)
+++ incubator/depot/trunk/update/build-depend.xml	Fri May 14 11:26:08 2004
@@ -35,8 +35,7 @@
 		<resource name="commons-vfs" ext="jar" version="20030518103800" repository="maven" />
 		<resource name="commons-logging" ext="jar" repository="maven" />
 		<resource name="commons-httpclient" ext="jar" version="2.0" repository="maven" />
-		<resource name="depot-common" ext="jar" repository="nickchalko-sandbox" />
-		<resource name="depot-version" ext="jar" repository="nickchalko-sandbox" />
+
 		<resource name="regexp" ext="jar" repository="maven" />
 
 	</cachedset>

Modified: incubator/depot/trunk/update/build.xml
==============================================================================
--- incubator/depot/trunk/update/build.xml	(original)
+++ incubator/depot/trunk/update/build.xml	Fri May 14 11:26:08 2004
@@ -44,10 +44,13 @@
 	<selector id="needs.vfs">
 		<filename name="org/**/*Vfs*.java" casesensitive="false" />
 	</selector>
-	<available property="vfs.present" classname="org.apache.commons.vfs.VFS" classpathref="depot-update.classpath" />
+	<available property="vfs.present"
+	           classname="org.apache.commons.vfs.VFS"
+	           classpathref="depot-update.classpath" />
 
 
-	<property name="antlets.repo" value="http://antworks.sourceforge.net/library/antlets/" />
+	<property name="antlets.repo"
+	          value="http://antworks.sourceforge.net/library/antlets/" />
 	<importer name="init-0.1" href="${antlets.repo}" />
 	<importer name="java-0.1" href="${antlets.repo}" />
 	<importer name="junit-0.1" href="${antlets.repo}" />
@@ -64,6 +67,10 @@
 
 	<path id="depot-update.classpath">
 		<fileset refid="depot-update.dependent.jars.fileset" />
+		<fileset dir=".">
+			<!-- put the latest  depot common and depot-version here -->
+			<include name="lib/*.jar" />
+		</fileset>
 	</path>
 
 	<!-- note this must  be after the java antlet-->