Add back extra test changes accidently removed during rebase
This commit is contained in:
parent
4b157934e3
commit
c30a8fe899
|
@ -232,6 +232,7 @@
|
||||||
<plugin>
|
<plugin>
|
||||||
<groupId>org.apache.maven.plugins</groupId>
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
<artifactId>maven-surefire-plugin</artifactId>
|
<artifactId>maven-surefire-plugin</artifactId>
|
||||||
|
<version>2.18.1</version>
|
||||||
<configuration>
|
<configuration>
|
||||||
<skipTests>${skipExtraTests}</skipTests>
|
<skipTests>${skipExtraTests}</skipTests>
|
||||||
<!-- ensure we don't inherit a byteman jar form any env settings -->
|
<!-- ensure we don't inherit a byteman jar form any env settings -->
|
||||||
|
@ -239,6 +240,14 @@
|
||||||
<BYTEMAN_HOME></BYTEMAN_HOME>
|
<BYTEMAN_HOME></BYTEMAN_HOME>
|
||||||
</environmentVariables>
|
</environmentVariables>
|
||||||
<systemProperties>
|
<systemProperties>
|
||||||
|
<property>
|
||||||
|
<name>com.arjuna.ats.arjuna.objectstore.objectStoreDir</name>
|
||||||
|
<value>target/ObjectStore</value>
|
||||||
|
</property>
|
||||||
|
<property>
|
||||||
|
<name>ObjectStoreEnvironmentBean.objectStoreDir</name>
|
||||||
|
<value>target/ObjectStore</value>
|
||||||
|
</property>
|
||||||
<!--
|
<!--
|
||||||
<property>
|
<property>
|
||||||
<name>org.jboss.byteman.home</name>
|
<name>org.jboss.byteman.home</name>
|
||||||
|
@ -260,7 +269,9 @@
|
||||||
</systemProperties>
|
</systemProperties>
|
||||||
<!-- make sure maven puts the byteman jar in the classpath rather than in a manifest jar -->
|
<!-- make sure maven puts the byteman jar in the classpath rather than in a manifest jar -->
|
||||||
<useManifestOnlyJar>false</useManifestOnlyJar>
|
<useManifestOnlyJar>false</useManifestOnlyJar>
|
||||||
<forkMode>once</forkMode>
|
<!-- when upgrading this plugin from 2.4 to 2.18.1 <forkMode>once</forkMode> was replaced with these: -->
|
||||||
|
<forkCount>1</forkCount>
|
||||||
|
<reuseForks>true</reuseForks>
|
||||||
<!--
|
<!--
|
||||||
<debugForkedProcess>true</debugForkedProcess>
|
<debugForkedProcess>true</debugForkedProcess>
|
||||||
-->
|
-->
|
||||||
|
|
Loading…
Reference in New Issue