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

systemPropertyVariables preferred to systemProperties and makes for smaller diff.

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