summaryrefslogtreecommitdiffstats
path: root/sca-java-1.x/trunk/tutorials/travelsample/binaries/src
diff options
context:
space:
mode:
authornash <nash@13f79535-47bb-0310-9956-ffa450edef68>2010-04-18 20:51:32 +0000
committernash <nash@13f79535-47bb-0310-9956-ffa450edef68>2010-04-18 20:51:32 +0000
commita467dda6bffe23643fbcb26ad88e1904f888ca2f (patch)
tree38d8a58b8ecb2f2c09c3377aa68b598308ef0b64 /sca-java-1.x/trunk/tutorials/travelsample/binaries/src
parentdedad56c8552cf8d98a29c65262219cfd0ea0f54 (diff)
Remove usage of NodeLauncher and DomainManagerLauncher (TUSCANY-3538)
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@935407 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'sca-java-1.x/trunk/tutorials/travelsample/binaries/src')
-rw-r--r--sca-java-1.x/trunk/tutorials/travelsample/binaries/src/main/resources/build-launchers.xml24
1 files changed, 12 insertions, 12 deletions
diff --git a/sca-java-1.x/trunk/tutorials/travelsample/binaries/src/main/resources/build-launchers.xml b/sca-java-1.x/trunk/tutorials/travelsample/binaries/src/main/resources/build-launchers.xml
index eac25092b2..ab54f9b7d2 100644
--- a/sca-java-1.x/trunk/tutorials/travelsample/binaries/src/main/resources/build-launchers.xml
+++ b/sca-java-1.x/trunk/tutorials/travelsample/binaries/src/main/resources/build-launchers.xml
@@ -111,10 +111,10 @@
</target>
<target name="run-fullapp-domain">
- <java classname="org.apache.tuscany.sca.node.launcher.DomainManagerLauncher" fork="true" failonerror="true">
- <arg value="../domainconfig/fullapp"/>
+ <java classname="scatours.FullAppDomainLauncher" fork="true" failonerror="true">
<classpath>
- <path refid="scatours.tuscany-node-launcher"/>
+ <pathelement location="scatours-launcher-fullapp-domain.jar"/>
+ <path refid="scatours.tuscany-manifest"/>
</classpath>
</java>
</target>
@@ -165,28 +165,28 @@
</target>
<target name="run-introducing-domain">
- <java classname="org.apache.tuscany.sca.node.launcher.DomainManagerLauncher" fork="true" failonerror="true">
- <arg value="../domainconfig/introducing"/>
+ <java classname="scatours.IntroducingDomainLauncher" fork="true" failonerror="true">
<classpath>
- <path refid="scatours.tuscany-node-launcher"/>
+ <pathelement location="scatours-launcher-introducing-domain.jar"/>
+ <path refid="scatours.tuscany-manifest"/>
</classpath>
</java>
</target>
<target name="run-introducing-tours">
- <java classname="org.apache.tuscany.sca.node.launcher.NodeLauncher" fork="true" failonerror="true">
- <arg value="http://localhost:9990/node-config/ToursNode"/>
+ <java classname="scatours.IntroducingToursLauncher" fork="true" failonerror="true">
<classpath>
- <path refid="scatours.tuscany-node-launcher"/>
+ <pathelement location="scatours-launcher-introducing-tours.jar"/>
+ <path refid="scatours.tuscany-manifest"/>
</classpath>
</java>
</target>
<target name="run-introducing-trips">
- <java classname="org.apache.tuscany.sca.node.launcher.NodeLauncher" fork="true" failonerror="true">
- <arg value="http://localhost:9990/node-config/TripsNode"/>
+ <java classname="scatours.IntroducingTripsLauncher" fork="true" failonerror="true">
<classpath>
- <path refid="scatours.tuscany-node-launcher"/>
+ <pathelement location="scatours-launcher-introducing-trips.jar"/>
+ <path refid="scatours.tuscany-manifest"/>
</classpath>
</java>
</target>