diff options
author | antelder <antelder@13f79535-47bb-0310-9956-ffa450edef68> | 2009-01-13 11:01:40 +0000 |
---|---|---|
committer | antelder <antelder@13f79535-47bb-0310-9956-ffa450edef68> | 2009-01-13 11:01:40 +0000 |
commit | 19ef437c71217b7c4ef614f0bed8c415fb736409 (patch) | |
tree | ddd8a70b13e4ee4899fafb6cbd4ae255545942fb | |
parent | 6a8bb8adfcf42b829a5f03d32c2a0aeeea43f1b2 (diff) |
Add dependency on jaxws (as the code now uses the Holder class) so it compiles on pre-JDK6
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@734102 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r-- | branches/sca-java-1.x/modules/core/pom.xml | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/branches/sca-java-1.x/modules/core/pom.xml b/branches/sca-java-1.x/modules/core/pom.xml index ca951a9ce9..a7e78c8ac7 100644 --- a/branches/sca-java-1.x/modules/core/pom.xml +++ b/branches/sca-java-1.x/modules/core/pom.xml @@ -77,6 +77,19 @@ <artifactId>cglib-nodep</artifactId> <version>2.2</version> </dependency> + + <dependency> + <groupId>javax.xml.ws</groupId> + <artifactId>jaxws-api</artifactId> + <version>2.1</version> + <exclusions> + <exclusion> + <groupId>javax.xml.soap</groupId> + <artifactId>saaj-api</artifactId> + </exclusion> + </exclusions> + </dependency> + </dependencies> |