diff options
author | rfeng <rfeng@13f79535-47bb-0310-9956-ffa450edef68> | 2009-04-15 23:11:24 +0000 |
---|---|---|
committer | rfeng <rfeng@13f79535-47bb-0310-9956-ffa450edef68> | 2009-04-15 23:11:24 +0000 |
commit | 38c91b251209781952ad4e3c1cfdc6953230a2d2 (patch) | |
tree | 94f5af444ced529f3c8becf51bbd19fcdbb339bc /java/sca | |
parent | 4a407892cf1a931f9c682630697a4c7e02f6aeaf (diff) |
Exclude the xml apis that are already part of JDK 1.5 or later
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@765416 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'java/sca')
-rw-r--r-- | java/sca/modules/binding-ws-axis2/pom.xml | 6 | ||||
-rw-r--r-- | java/sca/modules/implementation-bpel-ode/pom.xml | 6 |
2 files changed, 12 insertions, 0 deletions
diff --git a/java/sca/modules/binding-ws-axis2/pom.xml b/java/sca/modules/binding-ws-axis2/pom.xml index 50f7354c5e..8c8cbe753b 100644 --- a/java/sca/modules/binding-ws-axis2/pom.xml +++ b/java/sca/modules/binding-ws-axis2/pom.xml @@ -332,6 +332,12 @@ <groupId>xerces</groupId> <artifactId>xercesImpl</artifactId> <version>2.8.1</version> + <exclusions> + <exclusion> + <groupId>xml-apis</groupId> + <artifactId>xml-apis</artifactId> + </exclusion> + </exclusions> </dependency> <dependency> diff --git a/java/sca/modules/implementation-bpel-ode/pom.xml b/java/sca/modules/implementation-bpel-ode/pom.xml index 1c5c20a232..4c568f8efb 100644 --- a/java/sca/modules/implementation-bpel-ode/pom.xml +++ b/java/sca/modules/implementation-bpel-ode/pom.xml @@ -349,6 +349,12 @@ <groupId>xerces</groupId>
<artifactId>xercesImpl</artifactId>
<version>2.8.1</version>
+ <exclusions>
+ <exclusion>
+ <groupId>xml-apis</groupId>
+ <artifactId>xml-apis</artifactId>
+ </exclusion>
+ </exclusions>
</dependency>
<dependency>
<groupId>org.apache.xmlbeans</groupId>
|