diff options
author | antelder <antelder@13f79535-47bb-0310-9956-ffa450edef68> | 2008-08-08 14:26:47 +0000 |
---|---|---|
committer | antelder <antelder@13f79535-47bb-0310-9956-ffa450edef68> | 2008-08-08 14:26:47 +0000 |
commit | 8eecccbdfd32a794e38ae00f637e34d647d87556 (patch) | |
tree | 97d6b951f78c04f2ea30467bf5a9cfb0532eeb9d /java/sca/modules/policy-security-ws | |
parent | 14ca923d22e008082a0d97e1c08711e525ce384b (diff) |
Remove dependencies on xml-apis, xercesImpl, and xalan except for the one plave in the axis2 binding that needs xercesImpl when doing ws-sec
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@683979 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'java/sca/modules/policy-security-ws')
-rw-r--r-- | java/sca/modules/policy-security-ws/pom.xml | 19 |
1 files changed, 12 insertions, 7 deletions
diff --git a/java/sca/modules/policy-security-ws/pom.xml b/java/sca/modules/policy-security-ws/pom.xml index 39451178f3..f733f7f4c6 100644 --- a/java/sca/modules/policy-security-ws/pom.xml +++ b/java/sca/modules/policy-security-ws/pom.xml @@ -63,18 +63,15 @@ <groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
</exclusion>
+ <exclusion>
+ <groupId>xml-apis</groupId>
+ <artifactId>xml-apis</artifactId>
+ </exclusion>
</exclusions>
<version>1.2.5</version>
</dependency>
<dependency>
- <groupId>xerces</groupId>
- <artifactId>xercesImpl</artifactId>
- <version>2.8.1</version>
- <scope>runtime</scope>
- </dependency>
-
- <dependency>
<groupId>org.apache.ws.commons.axiom</groupId>
<artifactId>axiom-impl</artifactId>
<version>1.2.5</version>
@@ -89,6 +86,14 @@ <groupId>backport-util-concurrent</groupId>
<artifactId>backport-util-concurrent</artifactId>
</exclusion>
+ <exclusion>
+ <groupId>xalan</groupId>
+ <artifactId>xalan</artifactId>
+ </exclusion>
+ <exclusion>
+ <groupId>xerces</groupId>
+ <artifactId>xercesImpl</artifactId>
+ </exclusion>
</exclusions>
</dependency>
|