diff options
author | antelder <antelder@13f79535-47bb-0310-9956-ffa450edef68> | 2010-03-29 14:11:44 +0000 |
---|---|---|
committer | antelder <antelder@13f79535-47bb-0310-9956-ffa450edef68> | 2010-03-29 14:11:44 +0000 |
commit | 14c0ab627a85de643f8671b090417c255f438525 (patch) | |
tree | 2af7fdcf930ef8fb8b1fabdfec2010156e9f21d5 /sca-java-2.x/trunk/compliance-tests | |
parent | 4091db095c8a63ce770ed3f25618e9667d373cbb (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')
-rw-r--r-- | sca-java-2.x/trunk/compliance-tests/assembly/pom.xml | 15 | ||||
-rw-r--r-- | sca-java-2.x/trunk/compliance-tests/java-caa/pom.xml | 16 | ||||
-rw-r--r-- | sca-java-2.x/trunk/compliance-tests/java-ci/pom.xml | 15 |
3 files changed, 45 insertions, 1 deletions
diff --git a/sca-java-2.x/trunk/compliance-tests/assembly/pom.xml b/sca-java-2.x/trunk/compliance-tests/assembly/pom.xml index aa698214b4..9ce956c610 100644 --- a/sca-java-2.x/trunk/compliance-tests/assembly/pom.xml +++ b/sca-java-2.x/trunk/compliance-tests/assembly/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>
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>
diff --git a/sca-java-2.x/trunk/compliance-tests/java-ci/pom.xml b/sca-java-2.x/trunk/compliance-tests/java-ci/pom.xml index 15aa219dd8..e6dd38a76c 100644 --- a/sca-java-2.x/trunk/compliance-tests/java-ci/pom.xml +++ b/sca-java-2.x/trunk/compliance-tests/java-ci/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>
|