Surefire config for java.io.tmpdir is now ${project.build.directory}

This commit is contained in:
Joakim Erdfelt 2014-06-03 09:40:04 -07:00
parent d62f45dbd2
commit 4c4d712d65
1 changed files with 8 additions and 2 deletions

10
pom.xml
View File

@ -261,12 +261,18 @@
<configuration>
<argLine>-showversion -Xmx1g -Xms1g -XX:+PrintGCDetails</argLine>
<failIfNoTests>false</failIfNoTests>
<!--systemProperties>
<systemProperties>
<!--
<property>
<name>org.eclipse.jetty.io.AbstractBuffer.boundsChecking</name>
<value>true</value>
</property>
</systemProperties-->
-->
<property>
<name>java.io.tmpdir</name>
<value>${project.build.directory}</value>
</property>
</systemProperties>
</configuration>
</plugin>
<plugin>