diff options
author | nash <nash@13f79535-47bb-0310-9956-ffa450edef68> | 2010-05-08 20:46:19 +0000 |
---|---|---|
committer | nash <nash@13f79535-47bb-0310-9956-ffa450edef68> | 2010-05-08 20:46:19 +0000 |
commit | 6e18fca36bd37a9dc7f6c65024b8a8ab833e3c1e (patch) | |
tree | 6bf5393c2847bc74909d04765931f18a187be0c4 | |
parent | b0cd2ecd6c615eb53f14376cc27cb7e6d880f577 (diff) |
Exclude junit 3.8 dependency brought in by wss4j and use junit 4.5 instead
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@942469 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r-- | sca-java-1.x/trunk/modules/binding-ws-axis2/pom.xml | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/sca-java-1.x/trunk/modules/binding-ws-axis2/pom.xml b/sca-java-1.x/trunk/modules/binding-ws-axis2/pom.xml index 1ae9f2eb2d..d3e77864ff 100644 --- a/sca-java-1.x/trunk/modules/binding-ws-axis2/pom.xml +++ b/sca-java-1.x/trunk/modules/binding-ws-axis2/pom.xml @@ -215,6 +215,10 @@ <groupId>bouncycastle</groupId> <artifactId>bcprov-jdk15</artifactId> </exclusion> + <exclusion> + <groupId>junit</groupId> + <artifactId>junit</artifactId> + </exclusion> </exclusions> </dependency> @@ -328,6 +332,13 @@ <version>1.7-SNAPSHOT</version> <scope>test</scope> </dependency> + + <dependency> + <groupId>junit</groupId> + <artifactId>junit</artifactId> + <version>4.5</version> + <scope>test</scope> + </dependency> </dependencies> <build> |