Re: Sharing inter-project dependencies

2006-08-30 Thread Steve Loughran
Markus M. May wrote: Hello Michael, we are solving this, by having a central repository (pretty much like the maven repository) which contains all JAR-files of all components. Therefor you can then reference a fileset with all neede files from the repository. The hard thing is, that the compone

RE: Sharing inter-project dependencies

2006-08-29 Thread Stephen McConnell
Mike: The following link is a tutorial that deals with multi-project builds: http://www.dpml.net/depot/tutorials/complex.html Cheers, Steve. > -Original Message- > From: Nau, Michael [mailto:[EMAIL PROTECTED] > Sent: Tuesday, 29 August 2006 4:44 AM > To: user@ant.apache.org > Subjec

Re: Sharing inter-project dependencies

2006-08-28 Thread Markus M. May
Original-Nachricht Datum: Tue, 29 Aug 2006 08:03:20 +0200 Von: "Markus M. May" <[EMAIL PROTECTED]> An: "Ant Users List" Betreff: Re: Sharing inter-project dependencies > Hello Michael, > > we are solving this, by having a central repos

Re: Sharing inter-project dependencies

2006-08-28 Thread Markus M. May
Hello Michael, we are solving this, by having a central repository (pretty much like the maven repository) which contains all JAR-files of all components. Therefor you can then reference a fileset with all neede files from the repository. The hard thing is, that the components can change their

RE: Sharing inter-project dependencies

2006-08-28 Thread Nau, Michael
this (I haven't been able to find one)? -Mike -Original Message- From: Antoine Levy-Lambert [mailto:[EMAIL PROTECTED] Sent: Monday, August 28, 2006 1:54 PM To: Ant Users List Subject: Re: Sharing inter-project dependencies Hello Michael, one possibility to build the compo

Re: Sharing inter-project dependencies

2006-08-28 Thread Antoine Levy-Lambert
Hello Michael, one possibility to build the components independently is to use a repository. So componentB would just pull the jar of componentA from the repository, and you do not make spaghetti programming between the build files of componentA and componentB. This is my preferred approach.