summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorslaws <slaws@13f79535-47bb-0310-9956-ffa450edef68>2010-10-12 13:41:22 +0000
committerslaws <slaws@13f79535-47bb-0310-9956-ffa450edef68>2010-10-12 13:41:22 +0000
commit6ff205c75b44baa2063bfe16542b39be6d70800b (patch)
tree89d4bc12cdb470a5a42cd0f061b2119ccecc9416
parent6e31e44ea448548068f27b74be1a91fc76e3e8fd (diff)
Exclude the server version of jaxb-impl. The client pulls in a later version and we need to look at that too.
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@1021771 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r--sca-java-2.x/trunk/modules/binding-rest-runtime/pom.xml6
-rw-r--r--sca-java-2.x/trunk/modules/implementation-jaxrs-runtime/pom.xml7
2 files changed, 13 insertions, 0 deletions
diff --git a/sca-java-2.x/trunk/modules/binding-rest-runtime/pom.xml b/sca-java-2.x/trunk/modules/binding-rest-runtime/pom.xml
index ab860b5029..330188cafd 100644
--- a/sca-java-2.x/trunk/modules/binding-rest-runtime/pom.xml
+++ b/sca-java-2.x/trunk/modules/binding-rest-runtime/pom.xml
@@ -100,6 +100,12 @@
<groupId>org.apache.wink</groupId>
<artifactId>wink-server</artifactId>
<version>1.1.1-incubating</version>
+ <exclusions>
+ <exclusion>
+ <groupId>com.sun.xml.bind</groupId>
+ <artifactId>jaxb-impl</artifactId>
+ </exclusion>
+ </exclusions>
</dependency>
<dependency>
diff --git a/sca-java-2.x/trunk/modules/implementation-jaxrs-runtime/pom.xml b/sca-java-2.x/trunk/modules/implementation-jaxrs-runtime/pom.xml
index 36c244d8fd..66bf8b64c2 100644
--- a/sca-java-2.x/trunk/modules/implementation-jaxrs-runtime/pom.xml
+++ b/sca-java-2.x/trunk/modules/implementation-jaxrs-runtime/pom.xml
@@ -88,7 +88,14 @@
<groupId>org.apache.wink</groupId>
<artifactId>wink-server</artifactId>
<version>1.1.1-incubating</version>
+ <exclusions>
+ <exclusion>
+ <groupId>com.sun.xml.bind</groupId>
+ <artifactId>jaxb-impl</artifactId>
+ </exclusion>
+ </exclusions>
</dependency>
+
<dependency>
<groupId>javax.ws.rs</groupId>
<artifactId>jsr311-api</artifactId>