summaryrefslogtreecommitdiffstats
path: root/sca-java-1.x/trunk/tutorials/travelsample/launchers/notification-ejb/build.xml
diff options
context:
space:
mode:
authornash <nash@13f79535-47bb-0310-9956-ffa450edef68>2010-04-25 21:19:33 +0000
committernash <nash@13f79535-47bb-0310-9956-ffa450edef68>2010-04-25 21:19:33 +0000
commitfd0eee20f49a36074b408179ec973146700a0252 (patch)
treee2fbde44c8804e89fbe76bbbca49155412c832fb /sca-java-1.x/trunk/tutorials/travelsample/launchers/notification-ejb/build.xml
parent445cebc2e6bbd97dc06af518721185c9f1d8d4c6 (diff)
Use dependencies packaged within travel sample distribution in preference to environment variable settings
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@937878 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'sca-java-1.x/trunk/tutorials/travelsample/launchers/notification-ejb/build.xml')
-rw-r--r--sca-java-1.x/trunk/tutorials/travelsample/launchers/notification-ejb/build.xml4
1 files changed, 2 insertions, 2 deletions
diff --git a/sca-java-1.x/trunk/tutorials/travelsample/launchers/notification-ejb/build.xml b/sca-java-1.x/trunk/tutorials/travelsample/launchers/notification-ejb/build.xml
index ec1416635c..ddb8ae32e5 100644
--- a/sca-java-1.x/trunk/tutorials/travelsample/launchers/notification-ejb/build.xml
+++ b/sca-java-1.x/trunk/tutorials/travelsample/launchers/notification-ejb/build.xml
@@ -29,13 +29,13 @@
<ant dir="../../services/smsgateway-ejb" target="run"/>
</target>
- <target name="run">
+ <target name="run" depends="locate-openejb">
<java classname="scatours.NotificationEJBLauncher" fork="true" failonerror="true">
<classpath>
<pathelement location="target/${ant.project.name}.jar"/>
<path refid="compile-path"/>
<pathelement location="${env.TUSCANY_HOME}/lib/tuscany-sca-manifest.jar"/>
- <fileset dir="${env.OPENEJB_HOME}/lib"/>
+ <fileset dir="${openejb-dir}"/>
</classpath>
</java>
</target>