diff options
| author | Stephen Vinoski <vinoski@apache.org> | 2006-11-19 04:14:42 +0000 |
|---|---|---|
| committer | Stephen Vinoski <vinoski@apache.org> | 2006-11-19 04:14:42 +0000 |
| commit | f734f95f3df31810ef2a1f5abd955b2bcc2d1fe2 (patch) | |
| tree | 71ee40e1167cece90d66bb55406c0de25d42ec73 /qpid/java/systests/pom.xml | |
| parent | 6f3fbc6e525e9291bb00312f3e32d71c082baf60 (diff) | |
| download | qpid-python-f734f95f3df31810ef2a1f5abd955b2bcc2d1fe2.tar.gz | |
convert tests to junit3
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk@476701 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/java/systests/pom.xml')
| -rw-r--r-- | qpid/java/systests/pom.xml | 19 |
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> |
