From eceae21fa7ed2dff05f519416a2c2ca93506f3a0 Mon Sep 17 00:00:00 2001 From: brett Date: Mon, 28 Jun 2004 09:53:07 +0000 Subject: [PATCH] PR: MPMULTIPROJECT-36 address issue git-svn-id: https://svn.apache.org/repos/asf/maven/maven-1/plugins/trunk@115573 13f79535-47bb-0310-9956-ffa450edef68 --- multiproject/xdocs/faq.fml | 57 +++++++++++++++++++++----------------- 1 file changed, 31 insertions(+), 26 deletions(-) diff --git a/multiproject/xdocs/faq.fml b/multiproject/xdocs/faq.fml index 11d85d0f..8d2247d7 100644 --- a/multiproject/xdocs/faq.fml +++ b/multiproject/xdocs/faq.fml @@ -18,30 +18,35 @@ --> - - Using Multiproject - - When using multiproject to build subprojects, resources are not included in my artifacts. Why? - - Use ${basedir} in your subproject's POM resource section: -

- - - - ${basedir}/src/java - - **/*.properties - - - - ]]> - -

-

- The resources won't be included if you just specify "src/java" as directory unless maven is started from within the subproject directory. -

-
-
-
+ + Using Multiproject + + My custom navigation uses reactorProjects, and when I upgraded it broke. Why? + + reactorProjects is reused by anything using the reactor. Since there is no concept of scope or + nesting, the variable multiprojects is now used instead. If you change your variable references, + this should start working again. + + + + When using multiproject to build subprojects, resources are not included in my artifacts. Why? + + Use ${basedir} in your subproject's POM resource section: +

+ + + ${basedir}/src/java + + **/*.properties + + +]]> +

+

+ The resources won't be included if you just specify "src/java" as directory unless maven is started from within the subproject directory. +

+
+
+