Re: Module Interdependencies and NAR

2009-12-10 Thread Donszelmann Mark
Hi Benjamin, On Dec 9, 2009, at 12:04 AM, Benjamin Bentmann wrote: > Donszelmann Mark wrote: > >> Is it correct that it compiles and tests fine without ever running into the >> install phase... That is, maven probably sorts out that B is dependent on A, >> and thus in this multi-module project

Re: Module Interdependencies and NAR

2009-12-08 Thread Benjamin Bentmann
Donszelmann Mark wrote: Is it correct that it compiles and tests fine without ever running into the install phase... That is, maven probably sorts out that B is dependent on A, and thus in this multi-module project: 1. B does not download A, 2. B just refers to module A. In principle yes, du

Module Interdependencies and NAR

2009-12-08 Thread Donszelmann Mark
Hi I have a problem I am trying to solve for the NAR (Native Archive) plugin. http://duns.github.com/maven-nar-plugin/index.html It involves a multi-module project, where P is the top-level project, and A and B are the modules and B has a declared dependency on A. If this is all Java then th