Re: Cross Project Dependencies

2002-08-17 Thread Jeff Turner
On Fri, Aug 16, 2002 at 10:54:17AM -0400, Grinvald, Edward wrote: Hello all, I have a problem, which i hope you can help me solve: My project has several subprojects, let's say a - z. Some of the subprojects depend on other subprojects. Let's say a depends on b and c, c

Cross Project Dependencies

2002-08-16 Thread Grinvald, Edward
Hello all, I have a problem, which i hope you can help me solve: My project has several subprojects, let's say a - z. Some of the subprojects depend on other subprojects. Let's say a depends on b and c, c depends on d and e, and e depends on f. Assum there are no circular dependencies (i

RE: Cross Project Dependencies

2002-08-16 Thread Tibor Strausz
can't you just use the depend property from the target task target name=a depend=b,c,d/ tibi -Original Message- From: Grinvald, Edward [mailto:[EMAIL PROTECTED]] Sent: Friday, August 16, 2002 4:54 PM To: [EMAIL PROTECTED] Subject: Cross Project Dependencies Hello all, I

RE: Cross Project Dependencies

2002-08-16 Thread Grinvald, Edward
PROTECTED] (631) 342 6350 -Original Message- From: Tibor Strausz [mailto:[EMAIL PROTECTED]] Sent: Friday, August 16, 2002 11:06 AM To: 'Ant Users List' Subject: RE: Cross Project Dependencies can't you just use the depend property from the target task target name=a depend=b,c,d/ tibi

RE: Cross Project Dependencies

2002-08-16 Thread Grinvald, Edward
Computer Associates International Programmer, Storage Development [EMAIL PROTECTED] (631) 342 6350 -Original Message- From: Tibor Strausz [mailto:[EMAIL PROTECTED]] Sent: Friday, August 16, 2002 11:06 AM To: 'Ant Users List' Subject: RE: Cross Project Dependencies can't you just use

RE: Cross Project Dependencies

2002-08-16 Thread Geoff Meakin
I dont quite understand your first email, but it sounds to me like targets are the way to go forward, since they were designed for this very purpose. If you dont want to have 20 targets because you dont want to rewrite compile tasks each time, why not shift those to a parametisable target, and

Re: Cross Project Dependencies

2002-08-16 Thread Nicola Ken Barozzi
Matt Benson wrote: The idea here may be to build several projects from the same build file without referencing each as a target within the build file. This is definitely possible. It may also be possible to make dependencies work as well; the easiest way to find out would probably be to