diff options
Diffstat (limited to 'sandbox/travelsample/launchers/currency-converter-corba')
-rw-r--r-- | sandbox/travelsample/launchers/currency-converter-corba/build.xml | 2 | ||||
-rw-r--r-- | sandbox/travelsample/launchers/currency-converter-corba/pom.xml | 8 |
2 files changed, 7 insertions, 3 deletions
diff --git a/sandbox/travelsample/launchers/currency-converter-corba/build.xml b/sandbox/travelsample/launchers/currency-converter-corba/build.xml index 0e51e79bca..20c4a3c11c 100644 --- a/sandbox/travelsample/launchers/currency-converter-corba/build.xml +++ b/sandbox/travelsample/launchers/currency-converter-corba/build.xml @@ -20,7 +20,7 @@ <project name="scatours-launcher-currency-converter-corba" 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>
<!-- After starting the SCA CORBA service by invoking the "run" target below,
diff --git a/sandbox/travelsample/launchers/currency-converter-corba/pom.xml b/sandbox/travelsample/launchers/currency-converter-corba/pom.xml index 43fc75d156..bf82181763 100644 --- a/sandbox/travelsample/launchers/currency-converter-corba/pom.xml +++ b/sandbox/travelsample/launchers/currency-converter-corba/pom.xml @@ -32,10 +32,11 @@ <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>
<groupId>org.apache.tuscany.sca</groupId>
<artifactId>tuscany-node-api</artifactId>
@@ -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>
|