summaryrefslogtreecommitdiffstats
path: root/sandbox/travelsample/chapter-05/node/build.xml
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--sandbox/travelsample/chapter-05/node/build.xml (renamed from sandbox/travelsample/node/build.xml)6
1 files changed, 3 insertions, 3 deletions
diff --git a/sandbox/travelsample/node/build.xml b/sandbox/travelsample/chapter-05/node/build.xml
index ff93d7a224..a70be4e664 100644
--- a/sandbox/travelsample/node/build.xml
+++ b/sandbox/travelsample/chapter-05/node/build.xml
@@ -17,7 +17,7 @@
* under the License.
-->
-<project name="scatours-node" default="compile">
+<project name="scatours-chapter-05-node" default="compile">
<target name="compile">
<mkdir dir="target/classes"/>
@@ -31,7 +31,7 @@
<copy todir="target/classes">
<fileset dir="." excludes="**/*.java, pom.xml, build.xml, target"/>
</copy>
- <jar destfile="target/scatours-node.jar" basedir="target/classes">
+ <jar destfile="target/scatours-chapter-05-node.jar" basedir="target/classes">
<manifest>
<attribute name="Main-Class" value="launch.LaunchTutorialAdmin"/>
</manifest>
@@ -43,7 +43,7 @@
<target name="run">
<java classname="launch.LaunchTutorialAdmin" fork="true">
<classpath>
- <pathelement location="target/scatours-node.jar"/>
+ <pathelement location="target/scatours-chapter-05-node.jar"/>
<fileset refid="tuscany.jars"/>
<fileset refid="3rdparty.jars"/>
</classpath>