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/02/08 16:43:31 UTC

svn commit: rev 6597 - incubator/depot/trunk/ruper

Author: mmay
Date: Sun Feb  8 08:43:30 2004
New Revision: 6597

Modified:
   incubator/depot/trunk/ruper/build.xml
Log:
Resolving dependency with version first.

Modified: incubator/depot/trunk/ruper/build.xml
==============================================================================
--- incubator/depot/trunk/ruper/build.xml	(original)
+++ incubator/depot/trunk/ruper/build.xml	Sun Feb  8 08:43:30 2004
@@ -34,6 +34,8 @@
 	<property name="dist.jar.dir" location="${dist.dir}/jars"/>
 	<property name="local.lib.dir" location="lib"/>
 	<property name="test.output.dir" location="${dist.dir}/doc/tests"/>
+	
+	<property name="version.class.dir" location="${basedir}/../version/target/classes"/>
 
 	<!-- defining dependencies -->
 	<!-- core dependencies -->
@@ -43,6 +45,7 @@
 			<include name="**/*.jar"/>
 		</fileset>
 		<pathelement location="${core.class.dir}"/>
+		<pathelement location="${version.class.dir}"/>
 	</path>
 	<!-- ant basic dependencies -->
 	<path id="ant.compile.classpath">
@@ -51,6 +54,7 @@
 			<include name="**/*.jar"/>
 		</fileset>
 		<pathelement location="${core.class.dir}"/>
+		<pathelement location="${version.class.dir}"/>
 	</path>
 
 	<!--
@@ -88,6 +92,10 @@
 			src="http://www.ibiblio.org/maven/commons-logging/jars/commons-logging-1.0.3.jar" 
 			dest="${local.lib.dir}/commons-logging.jar" usetimestamp="true" 
 			verbose="true"/>
+		<get 
+			src="http://www.ibiblio.org/maven/ant/jars/ant-1.5.3-1.jar" 
+			dest="${local.lib.dir}/ant.jar" usetimestamp="true" 
+			verbose="true"/>			
 	</target>
 
 	<!--
@@ -279,7 +287,7 @@
 	<target name="make_complete" depends="build_core, build_ant" 
 		description="make everything"/>
 		
-	<target name="make_jar_dist" depends="build_core, build_ant, make_src_jar" 
+	<target name="make_jar_dist" depends="build_core" 
 		description="makes all jars (inclusive src.jar with all sources - tarball like)">
 		
 		<property name="output.jar" 

Re: svn commit: rev 6597 - incubator/depot/trunk/ruper

Posted by "Markus M. May" <mm...@gmx.net>.
Hello, right now I have a dependency to version, I cannot easily resolve 
  . Since version is not on any repository, I am using the class.dir of 
version. So, you have to compile version to resolve this issue.

Markus