| Stefan Seelmann 2007-11-28, 7:11 pm |
| Thanks Pierre-Arnaud, for fixing that. I forgot that dependency...
pamarcelot-1oDqGaOF3Lkdnm+yROfE0A@public.gmane.org schrieb:
> Author: pamarcelot
> Date: Wed Nov 28 02:39:57 2007
> New Revision: 598946
>
> URL: http://svn.apache.org/viewvc?rev=598946&view=rev
> Log:
> Fixed a build pb. The project 'studio-ldif-parser' needed to be compiled and added to classpath of the 'studio-connection-core' project
>
> Modified:
> directory/studio/trunk/studio-connection-core/build.xml
>
> Modified: directory/studio/trunk/studio-connection-core/build.xml
> URL: http://svn.apache.org/viewvc/direct...98946&view=diff
> ========================================
======================================
> --- directory/studio/trunk/studio-connection-core/build.xml (original)
> +++ directory/studio/trunk/studio-connection-core/build.xml Wed Nov 28 02:39:57 2007
> @@ -25,9 +25,13 @@
> <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-ldif-parser" 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 +42,7 @@
> </fileset>
> <!-- Plugin dependencies -->
> <fileset dir="../studio-jars/lib/" />
> + <pathelement location="../studio-ldif-parser/target/classes"/>
> </path>
> </target>
>
>
>
|