[jboss-svn-commits] JBL Code SVN: r8797 - labs/jbossesb/trunk/product/samples/quickstarts/helloworld_embedded_reg.

jboss-svn-commits at lists.jboss.org jboss-svn-commits at lists.jboss.org
Wed Jan 10 09:59:32 EST 2007


Author: tfennelly
Date: 2007-01-10 09:59:30 -0500 (Wed, 10 Jan 2007)
New Revision: 8797

Added:
   labs/jbossesb/trunk/product/samples/quickstarts/helloworld_embedded_reg/build.xml
Log:
fixed up quickstart to launch from the StandaloneBootstrapper

Added: labs/jbossesb/trunk/product/samples/quickstarts/helloworld_embedded_reg/build.xml
===================================================================
--- labs/jbossesb/trunk/product/samples/quickstarts/helloworld_embedded_reg/build.xml	2007-01-10 14:58:34 UTC (rev 8796)
+++ labs/jbossesb/trunk/product/samples/quickstarts/helloworld_embedded_reg/build.xml	2007-01-10 14:59:30 UTC (rev 8797)
@@ -0,0 +1,21 @@
+<project name="helloworld-embeddedreg-quickstart" default="run" basedir=".">
+
+	<target name="run" depends="compile">
+		<echo>Basic JMS Gateway and Listener</echo>
+		<java fork="yes" classname="quickstart.Launcher" failonerror="true">
+			<classpath refid="exec-classpath" />
+		</java>
+	</target>
+
+	<target name="runtest">
+		<echo>Runs Test JMS Sender</echo>
+		<java fork="yes" classname="quickstart.test.SendJMSMessage" failonerror="true">
+			<arg value="Hello World" />
+			<classpath refid="exec-classpath" />
+		</java>
+	</target>
+
+	<!-- Import the base Ant build script... -->
+	<import file="base-build.xml" />
+
+</project>
\ No newline at end of file




More information about the jboss-svn-commits mailing list