summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorantelder <antelder@13f79535-47bb-0310-9956-ffa450edef68>2010-03-22 08:30:00 +0000
committerantelder <antelder@13f79535-47bb-0310-9956-ffa450edef68>2010-03-22 08:30:00 +0000
commit34e75899e3007aa4a91a0fadc6d41c2259299495 (patch)
tree6e10e2a01aa298adbc0919a00f122a86809e2cca
parentfe6b55056d4afd1a9d3caf8806a1986e97c26ae7 (diff)
Add surefire plugin config
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@925996 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r--sca-java-2.x/trunk/itest/ws/endpoints/pom.xml17
1 files changed, 17 insertions, 0 deletions
diff --git a/sca-java-2.x/trunk/itest/ws/endpoints/pom.xml b/sca-java-2.x/trunk/itest/ws/endpoints/pom.xml
index 84da8f9ab6..29e7f5df5b 100644
--- a/sca-java-2.x/trunk/itest/ws/endpoints/pom.xml
+++ b/sca-java-2.x/trunk/itest/ws/endpoints/pom.xml
@@ -43,5 +43,22 @@
<build>
<finalName>${artifactId}</finalName>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-surefire-plugin</artifactId>
+ <version>2.5</version>
+ <configuration>
+ <includes>
+ <include>**/*TestCase.java</include>
+ </includes>
+ <reportFormat>brief</reportFormat>
+ <useFile>false</useFile>
+ <forkMode>once</forkMode>
+ <argLine>-ea -Xmx256m</argLine>
+ <parallel>off</parallel>
+ </configuration>
+ </plugin>
+ </plugins>
</build>
</project>