summaryrefslogtreecommitdiffstats
path: root/sca-java-2.x/trunk/compliance-tests/policy/pom.xml
diff options
context:
space:
mode:
authorantelder <antelder@13f79535-47bb-0310-9956-ffa450edef68>2010-03-09 20:44:05 +0000
committerantelder <antelder@13f79535-47bb-0310-9956-ffa450edef68>2010-03-09 20:44:05 +0000
commitac60cac78259127fdeae8ebafd37878281f76b54 (patch)
tree2fbb86f2a89b04c25653406c6ba5697811ff24fc /sca-java-2.x/trunk/compliance-tests/policy/pom.xml
parentbfdfdf09e34e5443ac1269324ecf7cfde0409600 (diff)
Add stax impl dependency to work around issue with the Sun JDK XML parser impl giving an unsupported operation exception creating an XMLStreamReader from a DOMSource. Adding the woodstox impl gets POL_4013 working and POL_4028 gets further but the test still fails (due to a Tuscany issue?)
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@921113 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to '')
-rw-r--r--sca-java-2.x/trunk/compliance-tests/policy/pom.xml17
1 files changed, 16 insertions, 1 deletions
diff --git a/sca-java-2.x/trunk/compliance-tests/policy/pom.xml b/sca-java-2.x/trunk/compliance-tests/policy/pom.xml
index d78bd9eda4..5aa57f882b 100644
--- a/sca-java-2.x/trunk/compliance-tests/policy/pom.xml
+++ b/sca-java-2.x/trunk/compliance-tests/policy/pom.xml
@@ -51,6 +51,22 @@
</dependency>
<dependency>
+ <!-- This is need for POL_4013 and POL_4028 when running with Sun JDK which
+ gets an unsupported operation exception creating an XMLStreamReader from a DOMSource
+ when Tuscany is writing a property value -->
+ <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>org.mortbay.jetty</groupId>
<artifactId>jetty</artifactId>
<version>6.1.19</version>
@@ -77,7 +93,6 @@
<exclude>**/POL_3001_TestCase.java</exclude><!-- see TUSCANY-3370 -->
<exclude>**/POL_3002_TestCase.java</exclude><!-- see TUSCANY-3370 -->
<exclude>**/POL_4003_TestCase.java</exclude><!-- see TUSCANY-3488 -->
- <exclude>**/POL_4013_TestCase.java</exclude><!-- see TUSCANY-xxxx - Passes in otest module -->
<exclude>**/POL_4028_TestCase.java</exclude><!-- see TUSCANY-xxxx - Passes in otest module -->
<!-- transaction intents -->
<exclude>**/POL_9006_TestCase.java</exclude><!-- see TUSCANY-3487-->