diff options
author | lresende <lresende@13f79535-47bb-0310-9956-ffa450edef68> | 2013-02-02 19:33:28 +0000 |
---|---|---|
committer | lresende <lresende@13f79535-47bb-0310-9956-ffa450edef68> | 2013-02-02 19:33:28 +0000 |
commit | d08498ad60f84f8b265ae35f54e1b8f0416e8d2f (patch) | |
tree | 92d369937a2231bff6773fa74799bd8a3d16aef8 | |
parent | f80227533d563cbb6830c44c64f87d9ccec2d912 (diff) |
Explicity list Rampart dependencies to fix Tuscany build issues
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@1441794 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r-- | sca-java-2.x/trunk/modules/binding-ws-runtime-axis2/pom.xml | 27 |
1 files changed, 24 insertions, 3 deletions
diff --git a/sca-java-2.x/trunk/modules/binding-ws-runtime-axis2/pom.xml b/sca-java-2.x/trunk/modules/binding-ws-runtime-axis2/pom.xml index 37458a122b..e74b89d440 100644 --- a/sca-java-2.x/trunk/modules/binding-ws-runtime-axis2/pom.xml +++ b/sca-java-2.x/trunk/modules/binding-ws-runtime-axis2/pom.xml @@ -84,7 +84,7 @@ <dependency> <groupId>org.apache.rampart</groupId> <artifactId>rampart-core</artifactId> - <version>1.5.1</version> + <version>1.5.1</version> <exclusions> <!-- We can live without most of the Rampart dependencies. The following @@ -123,6 +123,10 @@ <artifactId>bcprov-ext-jdk15</artifactId> </exclusion> <exclusion> + <groupId>bouncycastle</groupId> + <artifactId>bcprov-jdk15</artifactId> + </exclusion> + <exclusion> <groupId>org.slf4j</groupId> <artifactId>slf4j-jdk14</artifactId> </exclusion> @@ -197,10 +201,27 @@ <exclusion> <groupId>org.apache.santuario</groupId> <artifactId>xmlsec</artifactId> - </exclusion> + </exclusion> + <exclusion> + <groupId>org.apache.ws.security</groupId> + <artifactId>wss4j</artifactId> + </exclusion> </exclusions> </dependency> - + + <dependency> + <groupId>bouncycastle</groupId> + <artifactId>bcprov-jdk15</artifactId> + <version>140</version> + </dependency> + + <!-- replace the Rampart wss4j to avoid corrupted jar --> + <dependency> + <groupId>org.apache.ws.security</groupId> + <artifactId>wss4j</artifactId> + <version>1.5.10</version> <!--1.6.9--> + </dependency> + <!-- replace the Rampart xmlsec with the version Tuscany is using --> <dependency> <groupId>org.apache.santuario</groupId> |