summaryrefslogtreecommitdiff
path: root/java/systests/pom.xml
diff options
context:
space:
mode:
authorStephen Vinoski <vinoski@apache.org>2006-11-19 04:14:42 +0000
committerStephen Vinoski <vinoski@apache.org>2006-11-19 04:14:42 +0000
commit26f3bd59751462922e4c3268392a526a60ef7b2f (patch)
tree33d4dcf6804551948e3c78233494e29fbba95c4e /java/systests/pom.xml
parentbe9f473e274d6cfe4cf8d8b04dd3f5a171ba9de4 (diff)
downloadqpid-python-26f3bd59751462922e4c3268392a526a60ef7b2f.tar.gz
convert tests to junit3
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@476701 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'java/systests/pom.xml')
-rw-r--r--java/systests/pom.xml19
1 files changed, 18 insertions, 1 deletions
diff --git a/java/systests/pom.xml b/java/systests/pom.xml
index 5d4b617cee..441cb34939 100644
--- a/java/systests/pom.xml
+++ b/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>