Re: Cascading package dependencies

2007-06-08 Thread André Salvati
Hi Wayne, Thanks for your answer. I've been working just with modules (children) on my workspace. Is there any workaround on Eclipse? I didn't want to remenber all modules dependencies. How do you do it? Wayne Fay escreveu: No, this is not possible. However, if you run mvn install from

Re: Cascading package dependencies

2007-06-08 Thread Wayne Fay
I don't use really use Eclipse much, especially not for building Maven projects. I use the command line for Maven as we are required to have all projects building successfully under Maven at all times. I (nearly) always build my projects from the top which means all the modules etc will be

Cascading package dependencies

2007-06-06 Thread André Salvati
Hi, I'm a newbie with Maven 2 (2.0.6). Just wondering the following situation: I'm working with 3 modules: 1 father (Project1) and 2 children (Project2 and Project3). Project2 depends on Project3. Firstly, I'd like Maven was able to detect updates, compile, build and package Project3 in

Re: Cascading package dependencies

2007-06-06 Thread Wayne Fay
No, this is not possible. However, if you run mvn install from the top-level (father) project, it will run mvn install on all the modules (children) you've defined, which achieves the same results you're looking for. Wayne On 6/6/07, André Salvati [EMAIL PROTECTED] wrote: Hi, I'm a newbie