Maven definitive guide parent POM child POM example: creates modules jar and war but not jar in war?

2008-07-22 Thread David Brown
Hello maven gurus, users and mere mortals. I have a parent POM similar to the maven definitive guide multi-module example. The parent POM locates the the child POMs as expected. Both modules are built correctly: 1 (dot).war file and 1 (dot).jar file but the (dot).jar is not included in the

Re: Maven definitive guide parent POM child POM example: creates modules jar and war but not jar in war?

2008-07-22 Thread Arnaud HERITIER
you have to had in the war project a dependency to the jar project. Arnaud On Tue, Jul 22, 2008 at 10:33 PM, David Brown [EMAIL PROTECTED] wrote: Hello maven gurus, users and mere mortals. I have a parent POM similar to the maven definitive guide multi-module example. The parent POM locates

Re: Maven definitive guide parent POM child POM example: creates modules jar and war but not jar in war?

2008-07-22 Thread David Brown
Hello Arnaud, thanks for the reply. I did have the dependency included as you suggested. For the sake of posterity I will have to say that the mistake I made was the so-called Maven coordinate element: scopeprovided/scope instead of: scopecompile/scope. ;-) David. Arnaud HERITIER wrote .. you