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 the reactor figures out the order P, A, B. 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. If that is the case I would like to build this into the NAR, arranging "include" and references to libraries without installing the NAR of A into the local repository. I figured out how to get all the projects in a multi-module project, and can calculate the path to the include and libs of A, BUT it seems like maven still wants to download A before I can do anything, so maybe my assumption was incorrect ? Regards Mark Donszelmann --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
