On Tue, Aug 26, 2008 at 6:37 AM, Trevor Harmon <[EMAIL PROTECTED]> wrote:
> As I said, I want to be able to go to appA's directory and type: > > mvn compile > > Since Maven knows appA's dependencies, it should be able to figure out that > if a source file in libB is out-of-date, it should compile libB first. > Likewise, if I compile libB but libA is out-of-date, Maven should know to > compile libA before proceeding. > > I'm guessing this just isn't possible in Maven? Not really. The modules are intended to stand alone, so just because you have a snapshot dependency on libA doesn't mean Maven knows where the source code is. Building "from the top" from the parent pom level and letting Maven figure it out is as close as I can get. -- Wendy --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
