summaryrefslogtreecommitdiffstats
path: root/sca-java-1.x/trunk/tutorials/travelsample/services/smsgateway-rmi
diff options
context:
space:
mode:
authornash <nash@13f79535-47bb-0310-9956-ffa450edef68>2010-02-07 08:14:37 +0000
committernash <nash@13f79535-47bb-0310-9956-ffa450edef68>2010-02-07 08:14:37 +0000
commitde9d9e39a933457e7c05216dac3ecb9c282f4de6 (patch)
tree23f9dc5ceca764218aacd922a886d8b682513dde /sca-java-1.x/trunk/tutorials/travelsample/services/smsgateway-rmi
parentf6790885ca5c46be468cefa741647bdaf9821eb7 (diff)
Add failonerror=true to ant run command
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@907395 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'sca-java-1.x/trunk/tutorials/travelsample/services/smsgateway-rmi')
-rw-r--r--sca-java-1.x/trunk/tutorials/travelsample/services/smsgateway-rmi/build.xml3
1 files changed, 2 insertions, 1 deletions
diff --git a/sca-java-1.x/trunk/tutorials/travelsample/services/smsgateway-rmi/build.xml b/sca-java-1.x/trunk/tutorials/travelsample/services/smsgateway-rmi/build.xml
index 2b43ed15db..13d4702867 100644
--- a/sca-java-1.x/trunk/tutorials/travelsample/services/smsgateway-rmi/build.xml
+++ b/sca-java-1.x/trunk/tutorials/travelsample/services/smsgateway-rmi/build.xml
@@ -23,7 +23,8 @@
<!-- The "run" target starts an RMI server for the SMS gateway service.
This server is used by the "run" target of the notification-rmi launcher. -->
<target name="run">
- <java classname="com.tuscanyscatours.smsgateway.SMSGatewayRMIServiceBootstrap" fork="true">
+ <java classname="com.tuscanyscatours.smsgateway.SMSGatewayRMIServiceBootstrap"
+ fork="true" failonerror="true">
<classpath location="target/${ant.project.name}.jar"/>
</java>
</target>