Re: How to rebuild modules that depend on a changed module?

2007-12-04 Thread Barrie Treloar
On Dec 3, 2007 5:33 PM, Kees van Dieren [EMAIL PROTECTED] wrote: This would be helpful for us as well. We have a pom.xml with multiple modules, e.g. modulemodA/module modulemodB/module modulemodC/module modulemodD/module modB needs modA, modC needs modB. When modA is modified, modA, modB

Re: How to rebuild modules that depend on a changed module?

2007-12-03 Thread Saloucious
Not an answer, just same question as you http://www.nabble.com/How-to-do-incremental-build--tf4602698s177.html Kees van Dieren-2 wrote: This would be helpful for us as well. We have a pom.xml with multiple modules, e.g. modulemodA/module modulemodB/module modulemodC/module

Re: How to rebuild modules that depend on a changed module?

2007-12-02 Thread Kees van Dieren
This would be helpful for us as well. We have a pom.xml with multiple modules, e.g. modulemodA/module modulemodB/module modulemodC/module modulemodD/module modB needs modA, modC needs modB. When modA is modified, modA, modB and ModC should be rebuilded; modD should be skipped. Is there a way to

How to rebuild modules that depend on a changed module?

2007-11-26 Thread Jean-Sebastien Delfino
Hi, I'm working on a multimodule project and after making a change in a module X, I would like to do the following: - mvn clean install on all modules in the project that have compile dependencies on X; - mvn test on all modules in the project that have runtime and test dependencies on