diff options
author | slaws <slaws@13f79535-47bb-0310-9956-ffa450edef68> | 2011-01-25 13:45:34 +0000 |
---|---|---|
committer | slaws <slaws@13f79535-47bb-0310-9956-ffa450edef68> | 2011-01-25 13:45:34 +0000 |
commit | ee19b7b16732bdccc30501d4e77725894db95646 (patch) | |
tree | 251a518123a6184790bb8fc5aef0c3683357207b | |
parent | 773cd2397055d8df138e9e4849a0cb844773ada5 (diff) |
comment out the direct otest dependency as this pulls in two copies of Tuscany JARs and add in a line (commented out) to show how to debug surefire tests.
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@1063276 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to '')
-rw-r--r-- | sca-java-2.x/trunk/testing/compliance-tests/java-caa/pom.xml | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/sca-java-2.x/trunk/testing/compliance-tests/java-caa/pom.xml b/sca-java-2.x/trunk/testing/compliance-tests/java-caa/pom.xml index b5d4acb603..1251437645 100644 --- a/sca-java-2.x/trunk/testing/compliance-tests/java-caa/pom.xml +++ b/sca-java-2.x/trunk/testing/compliance-tests/java-caa/pom.xml @@ -30,13 +30,15 @@ <dependencies>
- <!-- This is only needed to get the module working in Eclipse which doesn't pick it up from the dependency plugin unpack -->
- <!-- The dependency plugin unpack is needed as presently the surefire plugin wont run tests in a dependency jar -->
+ <!-- This is only needed to get the module working in Eclipse which doesn't pick it up from the dependency plugin unpack -->
+ <!-- The dependency plugin unpack is needed as presently the surefire plugin wont run tests in a dependency jar -->
+<!--
<dependency>
<groupId>org.apache.tuscany.sca</groupId>
<artifactId>tuscany-otests-sca-j-caa-tests</artifactId>
<version>2.0-SNAPSHOT</version>
</dependency>
+-->
<dependency>
<groupId>org.apache.tuscany.sca</groupId>
@@ -83,7 +85,11 @@ <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
+
<argLine>-Xms256m -Xmx1024m</argLine>
+<!-- if you want to connect a debugger to a surefire test you can use this
+ <argLine>-Xms256m -Xmx1024m -Xdebug -Xrunjdwp:transport=dt_socket,server=y,suspend=y,address=8000</argLine>
+-->
<excludes>
</excludes>
</configuration>
|