Author: igarashitm
Date: 2010-11-09 21:27:37 -0500 (Tue, 09 Nov 2010)
New Revision: 9863
Modified:
trunk/examples/common/build.xml
Log:
added default value of client.args property to avoid build error on the examples which
don't use client.args
Modified: trunk/examples/common/build.xml
===================================================================
--- trunk/examples/common/build.xml 2010-11-09 23:58:11 UTC (rev 9862)
+++ trunk/examples/common/build.xml 2010-11-10 02:27:37 UTC (rev 9863)
@@ -55,6 +55,7 @@
<property name="classes.dir" value="${build.dir}/classes"/>
<property name="config.dir"
value="${imported.basedir}/config"/>
<property name="example.config.dir" value="config"/>
+ <property name="client.args" value=""/>
<path id="extra.classpath">
</path>
@@ -140,6 +141,7 @@
<!--<echo>client classpath = ${clientClasspath}</echo>-->
<property file="${imported.basedir}/config/server.properties"/>
<java classname="${example.classname}" fork="true"
resultproperty="example-result">
+ <jvmarg line="${client.args}"/>
<jvmarg
value="-Dhornetq.example.server.classpath=${serverclasspath}"/>
<jvmarg value="-Dhornetq.example.server.args=${server.args}"/>
<jvmarg
value="-Dhornetq.example.logserveroutput=${hornetq.example.logserveroutput}"/>