No problem, Stefan. You're welcome. ;) P-A
On Nov 28, 2007 9:44 PM, Stefan Seelmann <[EMAIL PROTECTED]> wrote: > Thanks Pierre-Arnaud, for fixing that. I forgot that dependency... > > > [EMAIL PROTECTED] 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/directory/studio/trunk/studio-connection-core/build.xml?rev=598946&r1=598945&r2=598946&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> > > > > > > > >
