Author: ningjiang
Date: Sun Jun 24 22:05:39 2007
New Revision: 550348
URL: http://svn.apache.org/viewvc?view=rev&rev=550348
Log:
Added build dependence to the target server and the target client
Modified:
incubator/cxf/trunk/benchmark/performance/basic_type/build.xml
incubator/cxf/trunk/benchmark/performance/complex_type/build.xml
Modified: incubator/cxf/trunk/benchmark/performance/basic_type/build.xml
URL:
http://svn.apache.org/viewvc/incubator/cxf/trunk/benchmark/performance/basic_type/build.xml?view=diff&rev=550348&r1=550347&r2=550348
==============================================================================
--- incubator/cxf/trunk/benchmark/performance/basic_type/build.xml (original)
+++ incubator/cxf/trunk/benchmark/performance/basic_type/build.xml Sun Jun 24
22:05:39 2007
@@ -22,7 +22,7 @@
<property name="wsdl.dir" location="${basedir}/wsdl"/>
<property name="wsdl.file" value="basic_type.wsdl"/>
- <target name="client" description="run basic_type client">
+ <target name="client" description="run basic_type client" depends="build">
<property name="param" value=""/>
<property name="pipe" value=""/>
<cxf.client.run
classname="org.apache.cxf.performance.basic_type.client.Client" argline=
@@ -34,7 +34,7 @@
-Threads ${cxf.threads} ${pipe}"/>
</target>
- <target name="server" description="run basic_type server">
+ <target name="server" description="run basic_type server" depends="build">
<cxf.server.run
classname="org.apache.cxf.performance.basic_type.server.Server" argline="-WSDL
${basedir}/wsdl/${wsdl.file}"/>
</target>
Modified: incubator/cxf/trunk/benchmark/performance/complex_type/build.xml
URL:
http://svn.apache.org/viewvc/incubator/cxf/trunk/benchmark/performance/complex_type/build.xml?view=diff&rev=550348&r1=550347&r2=550348
==============================================================================
--- incubator/cxf/trunk/benchmark/performance/complex_type/build.xml (original)
+++ incubator/cxf/trunk/benchmark/performance/complex_type/build.xml Sun Jun 24
22:05:39 2007
@@ -24,7 +24,7 @@
<property name="wsdl.dir" location="${basedir}/wsdl"/>
<property name="wsdl.file" value="complex_type.wsdl"/>
- <target name="client" description="run complex_type client">
+ <target name="client" description="run complex_type client" depends="build">
<property name="param" value=""/>
<property name="pipe" value=""/>
@@ -35,7 +35,7 @@
-Threads ${cxf.threads} ${pipe}"/>
</target>
- <target name="server" description="run complex_type server">
+ <target name="server" description="run complex_type server" depends="build">
<cxf.server.run
classname="org.apache.cxf.performance.complex_type.server.Server"
argline="-WSDL ${basedir}/wsdl/${wsdl.file}"/>
</target>