summaryrefslogtreecommitdiffstats
path: root/sandbox/travelsample/launchers/fullapp/build.xml
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--sandbox/travelsample/launchers/fullapp/build.xml (renamed from sandbox/travelsample/launchers/fullapp-launcher/build.xml)26
1 files changed, 4 insertions, 22 deletions
diff --git a/sandbox/travelsample/launchers/fullapp-launcher/build.xml b/sandbox/travelsample/launchers/fullapp/build.xml
index 77aacfb41a..8061df32e3 100644
--- a/sandbox/travelsample/launchers/fullapp-launcher/build.xml
+++ b/sandbox/travelsample/launchers/fullapp/build.xml
@@ -17,7 +17,7 @@
* under the License.
-->
-<project name="scatours-fullapp-launcher" default="compile">
+<project name="scatours-launcher-fullapp" default="compile">
<property environment="env"/>
<target name="compile">
@@ -31,15 +31,15 @@
<copy todir="target/classes">
<fileset dir="src\main\resources"/>
</copy>
- <jar destfile="target/scatours-fullapp-launcher.jar" basedir="target/classes">
+ <jar destfile="target/scatours-launcher-fullapp.jar" basedir="target/classes">
<manifest>
- <attribute name="Main-Class" value="scatours.LaunchFullAppNode"/>
+ <attribute name="Main-Class" value="scatours.FullAppLauncher"/>
</manifest>
</jar>
</target>
<target name="run">
- <java classname="scatours.LaunchFullAppNode" fork="true">
+ <java classname="scatours.FullAppLauncher" fork="true">
<classpath>
<pathelement location="target/classes"/>
<pathelement location="${env.TUSCANY}/lib/tuscany-sca-manifest.jar"/>
@@ -47,24 +47,6 @@
</java>
</target>
- <target name="run-domain">
- <java classname="scatours.LaunchFullAppDomain" fork="true">
- <classpath>
- <pathelement location="target/classes"/>
- <pathelement location="${env.TUSCANY}/lib/tuscany-sca-manifest.jar"/>
- </classpath>
- </java>
- </target>
-
- <target name="run-domain-nodes">
- <java classname="scatours.LaunchFullAppDomainNodes" fork="true">
- <classpath>
- <pathelement location="target/classes"/>
- <pathelement location="${env.TUSCANY}/lib/tuscany-sca-manifest.jar"/>
- </classpath>
- </java>
- </target>
-
<target name="clean">
<delete includeemptydirs="true">
<fileset dir="target"/>