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
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
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
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
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
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.