diff options
author | lresende <lresende@13f79535-47bb-0310-9956-ffa450edef68> | 2010-11-17 04:25:49 +0000 |
---|---|---|
committer | lresende <lresende@13f79535-47bb-0310-9956-ffa450edef68> | 2010-11-17 04:25:49 +0000 |
commit | 1fd89af50fdafdda7a08f2c40cbd42dd52f23d67 (patch) | |
tree | edae0e4dcbca7cdfb6ebc0422a412d290cdacefa /sca-java-2.x/trunk/samples/learning-more | |
parent | 9fa18cea173b89342fc0fef211354fb9deb323cb (diff) |
More exclusions from wink-1.1.2 update to avoid legal-check test failure
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@1035918 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'sca-java-2.x/trunk/samples/learning-more')
-rw-r--r-- | sca-java-2.x/trunk/samples/learning-more/implementation-web/helloworld-jaxrs/pom.xml | 21 |
1 files changed, 18 insertions, 3 deletions
diff --git a/sca-java-2.x/trunk/samples/learning-more/implementation-web/helloworld-jaxrs/pom.xml b/sca-java-2.x/trunk/samples/learning-more/implementation-web/helloworld-jaxrs/pom.xml index 74a12d6309..94ab56cc30 100644 --- a/sca-java-2.x/trunk/samples/learning-more/implementation-web/helloworld-jaxrs/pom.xml +++ b/sca-java-2.x/trunk/samples/learning-more/implementation-web/helloworld-jaxrs/pom.xml @@ -43,13 +43,28 @@ <dependency>
<groupId>org.apache.wink</groupId>
<artifactId>wink-common</artifactId>
- <version>1.1.1-incubating</version>
+ <version>1.1.2-incubating</version>
</dependency>
<dependency>
<groupId>org.apache.wink</groupId>
<artifactId>wink-server</artifactId>
- <version>1.1.1-incubating</version>
- </dependency>
+ <version>1.1.2-incubating</version> + <exclusions> + <exclusion> + <groupId>javax.xml.bind</groupId> + <artifactId>jaxb-api</artifactId> + </exclusion> + <exclusion> + <groupId>com.sun.xml.bind</groupId> + <artifactId>jaxb-impl</artifactId> + </exclusion> + <exclusion> + <groupId>org.slf4j</groupId> + <artifactId>slf4j-api</artifactId> + </exclusion> + </exclusions>
+ </dependency> +
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
|