You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@directory.apache.org by pa...@apache.org on 2007/08/27 22:41:23 UTC

svn commit: r570237 - /directory/studio/trunk/studio-apacheds-schemaeditor/build.xml

Author: pamarcelot
Date: Mon Aug 27 13:41:22 2007
New Revision: 570237

URL: http://svn.apache.org/viewvc?rev=570237&view=rev
Log:
Updated build script.

Modified:
    directory/studio/trunk/studio-apacheds-schemaeditor/build.xml

Modified: directory/studio/trunk/studio-apacheds-schemaeditor/build.xml
URL: http://svn.apache.org/viewvc/directory/studio/trunk/studio-apacheds-schemaeditor/build.xml?rev=570237&r1=570236&r2=570237&view=diff
==============================================================================
--- directory/studio/trunk/studio-apacheds-schemaeditor/build.xml (original)
+++ directory/studio/trunk/studio-apacheds-schemaeditor/build.xml Mon Aug 27 13:41:22 2007
@@ -25,9 +25,16 @@
 		<ant dir="../studio-jars" target="retrieve-dependencies" inheritall="false" />
 	</target>
 	
+	
+    <!-- COMPILE-DEPENDENCIES TASK -->
+	<target name="compile-dependencies" description="Compiles the dependencies of the project" >
+		<ant dir="../studio-connection-core" target="compile" inheritall="false" />
+		<ant dir="../studio-connection-ui" target="compile" inheritall="false" />
+	</target>
+		
 		
 	<!-- BUILD-CLASSPATH TASK -->
-	<target name="build-classpath" depends="retrieve-studio-jar-dependencies" description="Computes the classpath" >
+	<target name="build-classpath" depends="retrieve-studio-jar-dependencies,compile-dependencies" description="Computes the classpath" >
 		<echo>Building classpath for ${project.name} (${project.id}) version ${project.version}</echo>
 		<path id="classpath">
 			<!-- Project dependencies -->
@@ -38,6 +45,8 @@
 			</fileset>
 			<!-- Plugin dependencies -->
 			<fileset dir="../studio-jars/lib/" />
+			<pathelement location="../studio-connection-core/target/classes"/>
+			<pathelement location="../studio-connection-ui/target/classes"/>
 		</path>
 	</target>