Author: krosenvold
Date: Fri Jan 21 22:54:14 2011
New Revision: 1062064
URL: http://svn.apache.org/viewvc?rev=1062064&view=rev
Log:
[SUREFIRE-548] Documentation update about inheriting systemProperties
Modified:
maven/surefire/trunk/maven-surefire-plugin/src/site/apt/examples/system-properties.apt.vm
Modified:
maven/surefire/trunk/maven-surefire-plugin/src/site/apt/examples/system-properties.apt.vm
URL:
http://svn.apache.org/viewvc/maven/surefire/trunk/maven-surefire-plugin/src/site/apt/examples/system-properties.apt.vm?rev=1062064&r1=1062063&r2=1062064&view=diff
==============================================================================
---
maven/surefire/trunk/maven-surefire-plugin/src/site/apt/examples/system-properties.apt.vm
(original)
+++
maven/surefire/trunk/maven-surefire-plugin/src/site/apt/examples/system-properties.apt.vm
Fri Jan 21 22:54:14 2011
@@ -98,3 +98,14 @@ Using System Properties
will literally pass <<$\{project.build.outputDirectory\}>> because the value
of that expression is a <<<File>>>, not a <<<String>>>.
+
+ To inherit the "systemProperties" collection from the parent configuration,
+ you will need to specify combine.children="append" on the systemProperties
node in the child pom:
+
++---+
+ <systemProperties combine.children="append">
+ <property>
+ [...]
+ </property>
+ </systemProperties>
++---+