diff options
author | nash <nash@13f79535-47bb-0310-9956-ffa450edef68> | 2010-01-13 10:12:36 +0000 |
---|---|---|
committer | nash <nash@13f79535-47bb-0310-9956-ffa450edef68> | 2010-01-13 10:12:36 +0000 |
commit | 054ba1cb6fc276ebc1702254d45281889f2fb8ef (patch) | |
tree | 5fb7156d42cb870eba6b4cfe929fb542686e4064 /sandbox/travelsample/launchers/notification-ws | |
parent | fe906367674a2161597678c364b9feea4c44ef23 (diff) |
Move the travel sample launchers/common module to util/launcher-common (TUSCANY-3422)
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@898694 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'sandbox/travelsample/launchers/notification-ws')
-rw-r--r-- | sandbox/travelsample/launchers/notification-ws/build.xml | 2 | ||||
-rw-r--r-- | sandbox/travelsample/launchers/notification-ws/pom.xml | 6 |
2 files changed, 6 insertions, 2 deletions
diff --git a/sandbox/travelsample/launchers/notification-ws/build.xml b/sandbox/travelsample/launchers/notification-ws/build.xml index cc9e73890c..7f8e3bc917 100644 --- a/sandbox/travelsample/launchers/notification-ws/build.xml +++ b/sandbox/travelsample/launchers/notification-ws/build.xml @@ -20,7 +20,7 @@ <project name="scatours-launcher-notification-ws" default="compile">
<import file="../../antdefs.xml"/>
<path id="compile-path">
- <pathelement path="../common/target/scatours-launcher-common.jar"/>
+ <pathelement path="../../util/launcher-common/target/scatours-util-launcher-common.jar"/>
</path>
<!-- Before invoking the "run" target, the JAX-WS server for the SMS Gateway
diff --git a/sandbox/travelsample/launchers/notification-ws/pom.xml b/sandbox/travelsample/launchers/notification-ws/pom.xml index 9a31916603..19669752cb 100644 --- a/sandbox/travelsample/launchers/notification-ws/pom.xml +++ b/sandbox/travelsample/launchers/notification-ws/pom.xml @@ -32,8 +32,9 @@ <dependency>
<groupId>org.apache.tuscany.sca</groupId>
- <artifactId>scatours-launcher-common</artifactId>
+ <artifactId>scatours-util-launcher-common</artifactId>
<version>${pom.version}</version>
+ <scope>provided</scope>
</dependency>
<dependency>
@@ -87,6 +88,9 @@ <version>2.2</version>
<configuration>
<archive>
+ <manifestEntries>
+ <Class-Path>../util/scatours-util-launcher-common.jar</Class-Path>
+ </manifestEntries>
<manifest>
<addClasspath>true</addClasspath>
<classpathPrefix>../lib/</classpathPrefix>
|