e5738d0852
Remove the test options suppressing ignoring differences in whitespace outputted in the XML to allow capturing of issues where the code incorrectly adds or removes significant whitespace. Add a helper function to deal with the edge case of parsing XML directly that contains non significant whitespace to avoid accidentally adding excess whitespace when minidom outputs the resulting document. Change-Id: I9936042cd82c204ba2b3c19f575703e33564f7fd
21 lines
689 B
XML
21 lines
689 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<project>
|
|
<builders>
|
|
<hudson.tasks.Maven>
|
|
<targets>clean</targets>
|
|
<properties>foo=bar
|
|
bar=foo</properties>
|
|
<mavenName>Maven3</mavenName>
|
|
<pom>parent/pom.xml</pom>
|
|
<usePrivateRepository>true</usePrivateRepository>
|
|
<jvmOptions>-Xms512m -Xmx1024m -XX:PermSize=128m -XX:MaxPermSize=256m</jvmOptions>
|
|
<settings class="jenkins.mvn.FilePathSettingsProvider">
|
|
<path>mvn/settings.xml</path>
|
|
</settings>
|
|
<globalSettings class="jenkins.mvn.FilePathGlobalSettingsProvider">
|
|
<path>mvn/globalsettings.xml</path>
|
|
</globalSettings>
|
|
</hudson.tasks.Maven>
|
|
</builders>
|
|
</project>
|