diff options
author | rfeng <rfeng@13f79535-47bb-0310-9956-ffa450edef68> | 2009-04-15 23:05:56 +0000 |
---|---|---|
committer | rfeng <rfeng@13f79535-47bb-0310-9956-ffa450edef68> | 2009-04-15 23:05:56 +0000 |
commit | 4a407892cf1a931f9c682630697a4c7e02f6aeaf (patch) | |
tree | 69cd452965270d037a9c9a5fce4689d8f26dfb80 /java/sca | |
parent | 052004e40e67c597eab2950a35486d184d75c396 (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@765414 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'java/sca')
-rw-r--r-- | java/sca/modules/binding-ws-axis2/pom.xml | 10 | ||||
-rw-r--r-- | java/sca/modules/implementation-bpel-ode/pom.xml | 10 |
2 files changed, 20 insertions, 0 deletions
diff --git a/java/sca/modules/binding-ws-axis2/pom.xml b/java/sca/modules/binding-ws-axis2/pom.xml index 8ab98ba2d7..50f7354c5e 100644 --- a/java/sca/modules/binding-ws-axis2/pom.xml +++ b/java/sca/modules/binding-ws-axis2/pom.xml @@ -137,6 +137,10 @@ <version>1.4.1</version> <exclusions> <exclusion> + <groupId>xerces</groupId> + <artifactId>xmlParserAPIs</artifactId> + </exclusion> + <exclusion> <groupId>org.apache.axis2</groupId> <artifactId>axis2-adb</artifactId> </exclusion> @@ -316,6 +320,12 @@ <artifactId>xalan</artifactId> <version>2.7.0</version> <scope>optional</scope> + <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 43c3373e91..1c5c20a232 100644 --- a/java/sca/modules/implementation-bpel-ode/pom.xml +++ b/java/sca/modules/implementation-bpel-ode/pom.xml @@ -328,12 +328,22 @@ <groupId>xom</groupId>
<artifactId>xom</artifactId>
</exclusion>
+ <exclusion>
+ <groupId>xml-apis</groupId>
+ <artifactId>xml-apis</artifactId>
+ </exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>xalan</groupId>
<artifactId>xalan</artifactId>
<version>2.7.0</version>
+ <exclusions>
+ <exclusion>
+ <groupId>xml-apis</groupId>
+ <artifactId>xml-apis</artifactId>
+ </exclusion>
+ </exclusions>
</dependency>
<dependency>
<groupId>xerces</groupId>
|