提交 8ccb4624 编写于 作者: J Jesse Glick

systemPropertyVariables preferred to systemProperties and makes for smaller diff.

上级 383ab4d6
......@@ -354,20 +354,11 @@ THE SOFTWARE.
<artifactId>maven-surefire-plugin</artifactId>
<version>2.13</version> <!-- ignoring ${maven-surefire-plugin.version} -->
<configuration>
<systemProperties>
<property>
<name>java.io.tmpdir</name>
<value>${project.build.directory}</value>
</property>
<property>
<name>java.awt.headless</name>
<value>true</value>
</property>
<property>
<name>forkedProcessTimeoutInSeconds</name>
<value>3600</value>
</property>
</systemProperties>
<systemPropertyVariables>
<java.io.tmpdir>${project.build.directory}</java.io.tmpdir>
<forkedProcessTimeoutInSeconds>3600</forkedProcessTimeoutInSeconds>
<java.awt.headless>true</java.awt.headless>
</systemPropertyVariables>
</configuration>
</plugin>
<plugin>
......
......@@ -186,21 +186,12 @@ THE SOFTWARE.
<!-- version specified in grandparent pom -->
<configuration>
<argLine>-Dfile.encoding=UTF-8 -XX:MaxPermSize=128m</argLine>
<systemProperties>
<property>
<systemPropertyVariables>
<!-- use AntClassLoader that supports predictable file handle release -->
<name>hudson.ClassicPluginStrategy.useAntClassLoader</name>
<value>true</value>
</property>
<property>
<name>hudson.maven.debug</name>
<value>${mavenDebug}</value>
</property>
<property>
<name>buildDirectory</name>
<value>${project.build.directory}</value>
</property>
</systemProperties>
<hudson.ClassicPluginStrategy.useAntClassLoader>true</hudson.ClassicPluginStrategy.useAntClassLoader>
<hudson.maven.debug>${mavenDebug}</hudson.maven.debug>
<buildDirectory>${project.build.directory}</buildDirectory>
</systemPropertyVariables>
<forkMode>perthread</forkMode> <!-- XXX https://jira.codehaus.org/browse/SUREFIRE-946 so use kill -9 to stop -->
<reuseForks>true</reuseForks> <!-- https://jira.codehaus.org/browse/SUREFIRE-751 -->
<threadCount>4</threadCount> <!-- XXX https://jira.codehaus.org/browse/SUREFIRE-947 -->
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册