You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@directory.apache.org by Stefan Seelmann <se...@apache.org> on 2007/11/28 21:44:17 UTC

Re: svn commit: r598946 - /directory/studio/trunk/studio-connection-core/build.xml

Thanks Pierre-Arnaud, for fixing that. I forgot that dependency...


pamarcelot@apache.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/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>
>  	
> 
> 


Re: svn commit: r598946 - /directory/studio/trunk/studio-connection-core/build.xml

Posted by Pierre-Arnaud Marcelot <pa...@marcelot.net>.
No problem, Stefan. You're welcome. ;)

P-A

On Nov 28, 2007 9:44 PM, Stefan Seelmann <se...@apache.org> wrote:

> Thanks Pierre-Arnaud, for fixing that. I forgot that dependency...
>
>
> pamarcelot@apache.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/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>
> >
> >
> >
>
>