Re: RE : [m2] Inter-project dependency question - forced to package sub-module dependencies manually?

2006-03-29 Thread Wayne Fay
root > pom.xml everything works well, but if I just want to work with a > sub-module, than extra steps are required. > > -Chris > > -Original Message- > From: Gareth Western [mailto:[EMAIL PROTECTED] > Sent: March 28, 2006 2:50 PM > To: Maven Users List > Subjec

Re: RE : [m2] Inter-project dependency question

2006-03-28 Thread Gareth Western
Hi Chris, I'm not sure if this is the BEST way to do it, but what I do is create a parent pom.xml in the root directory. Then add commons, web-app, and stand-alone app as modules in that parent POM. Maven should figure out that since webapp and standalone app are dependent on the commons module th

RE: RE : [m2] Inter-project dependency question

2006-03-28 Thread Chris Wall
Thanks Olivier. How do I represent this dependency in my webapp pom.xml? I have the following dependency declaration, but M2 tries to download the jar instead of resolving that this is internally provided dependency. my-common my-common 1.0-SNAPSHOT -Original