summaryrefslogtreecommitdiffstats
path: root/sca-java-2.x/trunk/compliance-tests/java-caa
diff options
context:
space:
mode:
authorantelder <antelder@13f79535-47bb-0310-9956-ffa450edef68>2010-03-29 14:11:44 +0000
committerantelder <antelder@13f79535-47bb-0310-9956-ffa450edef68>2010-03-29 14:11:44 +0000
commit14c0ab627a85de643f8671b090417c255f438525 (patch)
tree2af7fdcf930ef8fb8b1fabdfec2010156e9f21d5 /sca-java-2.x/trunk/compliance-tests/java-caa
parent4091db095c8a63ce770ed3f25618e9667d373cbb (diff)
Add Woodstox dependency as the Sun parser fails on lots of tests now. Would be really good to find a way to fix this
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@928787 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'sca-java-2.x/trunk/compliance-tests/java-caa')
-rw-r--r--sca-java-2.x/trunk/compliance-tests/java-caa/pom.xml16
1 files changed, 15 insertions, 1 deletions
diff --git a/sca-java-2.x/trunk/compliance-tests/java-caa/pom.xml b/sca-java-2.x/trunk/compliance-tests/java-caa/pom.xml
index 4c6280e18a..cf8d2e7bbb 100644
--- a/sca-java-2.x/trunk/compliance-tests/java-caa/pom.xml
+++ b/sca-java-2.x/trunk/compliance-tests/java-caa/pom.xml
@@ -56,6 +56,21 @@
<version>6.1.19</version>
</dependency>
+ <!-- This is need when running with Sun JDK which gets an unsupported operation exception creating an XMLStreamReader from a DOMSource
+ when Tuscany is writing a property value -->
+ <dependency>
+ <groupId>org.codehaus.woodstox</groupId>
+ <artifactId>wstx-asl</artifactId>
+ <version>3.2.4</version>
+ <scope>runtime</scope>
+ <exclusions>
+ <exclusion>
+ <groupId>stax</groupId>
+ <artifactId>stax-api</artifactId>
+ </exclusion>
+ </exclusions>
+ </dependency>
+
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
@@ -76,7 +91,6 @@
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<excludes>
- <exclude>**/JCA_8005_TestCase.java</exclude><!-- see TUSCANY-3482 -->
<exclude>**/JCA_8007_TestCase.java</exclude><!-- see TUSCANY-3482 -->
</excludes>
</configuration>