summaryrefslogtreecommitdiff
path: root/qpid/java/systests/pom.xml
diff options
context:
space:
mode:
Diffstat (limited to 'qpid/java/systests/pom.xml')
-rw-r--r--qpid/java/systests/pom.xml19
1 files changed, 18 insertions, 1 deletions
diff --git a/qpid/java/systests/pom.xml b/qpid/java/systests/pom.xml
index 5d4b617cee..441cb34939 100644
--- a/qpid/java/systests/pom.xml
+++ b/qpid/java/systests/pom.xml
@@ -68,6 +68,7 @@
<build>
<plugins>
+<!--
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-antrun-plugin</artifactId>
@@ -105,11 +106,27 @@
</execution>
</executions>
</plugin>
+-->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
- <skip>true</skip>
+ <systemProperties>
+ <property>
+ <name>amqj.noAutoCreateVMBroker</name>
+ <value>true</value>
+ </property>
+ </systemProperties>
+ <includes>
+ <include>**/server/**/*Test.java</include>
+ <include>**/test/unit/ack/DisconnectAndRedeliver.java</include>
+ </includes>
+ <excludes>
+ <exclude>**/Abstract*Test*</exclude>
+ <exclude>**/*PerfTest*</exclude>
+ <exclude>**/*PerformanceTest*</exclude>
+ <exclude>**/server/util/ConcurrentTest.java</exclude>
+ </excludes>
</configuration>
</plugin>
</plugins>