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/08/16 04:45:53 UTC

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

Author: nickchalko
Date: Sun Aug 15 21:45:52 2004
New Revision: 36443

Modified:
   incubator/depot/trunk/update/build.xml
Log:
Added the version and common build/project.name/classes to the classpath

Modified: incubator/depot/trunk/update/build.xml
==============================================================================
--- incubator/depot/trunk/update/build.xml	(original)
+++ incubator/depot/trunk/update/build.xml	Sun Aug 15 21:45:52 2004
@@ -53,6 +53,7 @@
 	<importer name="forrest-0.1" href="${antlets.repo}" />
 	<importer name="apache-0.1" href="${antlets.repo}" />
 	<importer name="makeantlet-0.2" href="${antlets.repo}" />
+	<importer name="scripts-0.1" href="${antlets.repo}" />
 
 	<importer name="depot-version-0.1.1" href="http://cvs.apache.org/~nickchalko/SNAPSHOTS/antlets/" />
 
@@ -67,6 +68,8 @@
 	</fileset>
 	<import file="build-get-depot-update-jars.xml" />
 
+	<property name="depot-common.dir" location="../common" />
+	<property name="depot-version.dir" location="../version" />
 
 	<path id="depot-update.classpath">
 		<fileset refid="depot-update.dependent.jars.fileset" />
@@ -74,6 +77,8 @@
 			<!-- put the latest depot common and depot-version here -->
 			<include name="lib/*.jar" />
 		</fileset>
+		<pathelement location="${depot-common.dir}/build/depot-common/classes/" />
+		<pathelement location="${depot-version.dir}/build/depot-version/classes/" />
 	</path>
 
 	<!-- note this must  be after the java antlet-->
@@ -107,6 +112,12 @@
 				<include name="*.jar" />
 			</fileset>
 		</copy>
+
+	</target>
+
+
+	<target name="pre-dist">
+		<main-script name="update" class="org.apache.depot.update.tool.DownloaderTool" extra.classpath="" />
 
 	</target>