diff options
author | antelder <antelder@13f79535-47bb-0310-9956-ffa450edef68> | 2009-11-09 13:11:42 +0000 |
---|---|---|
committer | antelder <antelder@13f79535-47bb-0310-9956-ffa450edef68> | 2009-11-09 13:11:42 +0000 |
commit | 54614d93e734ada99efa07a6e3800eb5d384c282 (patch) | |
tree | 69f3074e83dc5bc1e23c6d19e8daec8e6894d3c2 /java/sca/shades/base | |
parent | 3aa78814d7d604bb0cf214d103b14fcdd98bd7b1 (diff) |
Update to include http host support in base jar, and include some api jars in web services jar
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@834048 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'java/sca/shades/base')
-rw-r--r-- | java/sca/shades/base/pom.xml | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/java/sca/shades/base/pom.xml b/java/sca/shades/base/pom.xml index 2be39fa0c5..58f2c2cf4d 100644 --- a/java/sca/shades/base/pom.xml +++ b/java/sca/shades/base/pom.xml @@ -61,6 +61,29 @@ <artifactId>tuscany-binding-sca-runtime-rmi</artifactId>
<version>${pom.version}</version>
</dependency>
+ <dependency>
+ <groupId>${pom.groupId}</groupId>
+ <artifactId>tuscany-host-jetty</artifactId>
+ <version>${pom.version}</version>
+ <exclusions>
+ <exclusion>
+ <groupId>org.apache.tuscany.sca</groupId>
+ <artifactId>tuscany-core-spi</artifactId>
+ </exclusion>
+ <exclusion>
+ <groupId>org.mortbay.jetty</groupId>
+ <artifactId>jetty</artifactId>
+ </exclusion>
+ <exclusion>
+ <groupId>org.mortbay.jetty</groupId>
+ <artifactId>jetty-util</artifactId>
+ </exclusion>
+ <exclusion>
+ <groupId>javax.servlet</groupId>
+ <artifactId>servlet-api</artifactId>
+ </exclusion>
+ </exclusions>
+ </dependency>
<!-- these remaining dependencies are not required when using JDK6, so use a scope of provided -->
|