summaryrefslogtreecommitdiffstats
path: root/sandbox/travelsample/chapter-05/node/build.xml
diff options
context:
space:
mode:
authorslaws <slaws@13f79535-47bb-0310-9956-ffa450edef68>2009-02-08 10:34:50 +0000
committerslaws <slaws@13f79535-47bb-0310-9956-ffa450edef68>2009-02-08 10:34:50 +0000
commiteb06796859bc8746cb3f25e065d3211fdadf2d6b (patch)
treef1825072a06bd8da1119a52669a6bd82f82737f2 /sandbox/travelsample/chapter-05/node/build.xml
parenta1000cfafed375d9e87d9f97a0d9347be806b977 (diff)
re-org the modules
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@742040 13f79535-47bb-0310-9956-ffa450edef68
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>