diff options
author | nash <nash@13f79535-47bb-0310-9956-ffa450edef68> | 2010-04-18 20:49:13 +0000 |
---|---|---|
committer | nash <nash@13f79535-47bb-0310-9956-ffa450edef68> | 2010-04-18 20:49:13 +0000 |
commit | dedad56c8552cf8d98a29c65262219cfd0ea0f54 (patch) | |
tree | 649bc0a966f85348493613502b25a8d26e62edca /sca-java-1.x/trunk/tutorials | |
parent | 21932ed6190ccdaea084ff7aa0c2378791884b48 (diff) |
Add unnecessary servlet host dependency as workaround for TUSCANY-3540
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@935406 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'sca-java-1.x/trunk/tutorials')
-rw-r--r-- | sca-java-1.x/trunk/tutorials/travelsample/launchers/introducing-client/pom.xml | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/sca-java-1.x/trunk/tutorials/travelsample/launchers/introducing-client/pom.xml b/sca-java-1.x/trunk/tutorials/travelsample/launchers/introducing-client/pom.xml index 10e8e3f460..7385505063 100644 --- a/sca-java-1.x/trunk/tutorials/travelsample/launchers/introducing-client/pom.xml +++ b/sca-java-1.x/trunk/tutorials/travelsample/launchers/introducing-client/pom.xml @@ -55,6 +55,17 @@ <version>${tuscany.version}</version>
<scope>runtime</scope>
</dependency>
+
+ <!-- The folowing dependency has been added as a workaround for issue
+ TUSCANY-3540 so that the travel sample can run on Tuscany SCA 1.6.
+ When a Tuscany SCA release with a fix for TUSCANY-3540 is available,
+ this unnecessary dependency can be removed. -->
+ <dependency>
+ <groupId>org.apache.tuscany.sca</groupId>
+ <artifactId>tuscany-host-jetty</artifactId>
+ <version>${tuscany.version}</version>
+ <scope>runtime</scope>
+ </dependency>
</dependencies>
<build>
|