Re: ant project building problem when one project depend upon another project.

2007-06-03 Thread Prashant Reddy
Project A's build process will make the jar and puts the jar in location known to Project B. Then you could write a 'outer' build script that infact builds these projects (A,B) in the order you require. (-)build.xml (outer) (+)dist (Jars from project A go here) (+)Project A/build.xml (+)Project B

Re: ant project building problem when one project depend upon another project.

2007-06-03 Thread yitzle
You can make a task 'depend' on another. On 6/4/07, Karamjit <[EMAIL PROTECTED]> wrote: Hi All, I have one problem in ant build file. Actually i'm compiling and build two projects A and B with single build file. As in eclipse configuration i made A project depend upon the jar file of B

ant project building problem when one project depend upon another project.

2007-06-03 Thread Karamjit
Hi All, I have one problem in ant build file. Actually i'm compiling and build two projects A and B with single build file. As in eclipse configuration i made A project depend upon the jar file of B project. What i'm trying to do is that i want to set the jar file in classpath durring runt time