Re: Can Maven automatically build depended projects ?

2009-02-26 Thread Jason van Zyl
http://maven.apache.org/plugins/maven-reactor-plugin/ On 26-Feb-09, at 1:52 PM, Bo Xu wrote: I have a project A and another Project B. Project A depends on Project B and that has been declared in pom file. What I found is that everytime I change source code of Project B , I have to manually

Re: Can Maven automatically build depended projects ?

2009-02-26 Thread Ketan Khairnar
In that case Project A depends on artifact generated by project B right? so you just need to do mvn install on project B so that dependency is propogated On Fri, Feb 27, 2009 at 3:22 AM, Bo Xu wrote: > I have a project A and another Project B. Project A depends on Project B > and that has been d

Can Maven automatically build depended projects ?

2009-02-26 Thread Bo Xu
I have a project A and another Project B. Project A depends on Project B and that has been declared in pom file. What I found is that everytime I change source code of Project B , I have to manually build project B to let project A knows the change. Is there a way of letting it happen automatica