diff --git a/ant/xdocs/properties.xml b/ant/xdocs/properties.xml index 82d39afd..eef48dda 100644 --- a/ant/xdocs/properties.xml +++ b/ant/xdocs/properties.xml @@ -53,6 +53,21 @@ maven.ant.excludeTests=**/*Test.java,**/*Suite.java goal. + + maven.ant.use.properties + Yes + + Starting with version 1.9 of the Maven ant plugin two lines are + added at the top of the generated buildfile: +
+  <property file="build.properties"/>
+  <property file="${user.home}/build.properties"/>
+ If you experience that your own properties are clashing with the + ones used in the generated buildfile you can set this property to + "false" to remove these 2 lines from the generated buildfile. + Valid values are "true" or "false". Defaults to "true". + +