This is an automated email from the ASF dual-hosted git repository.

robertlazarski pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/axis-axis2-java-core.git


The following commit(s) were added to refs/heads/master by this push:
     new 7a4e5a3  add RESTClient to userguide build.xml
7a4e5a3 is described below

commit 7a4e5a39720a50121e811447be6957d6f30a5be0
Author: Robert Lazarski <robertlazar...@gmail.com>
AuthorDate: Fri Jul 30 11:44:06 2021 -0400

    add RESTClient to userguide build.xml
---
 modules/samples/userguide/build.xml | 10 +++++++++-
 1 file changed, 9 insertions(+), 1 deletion(-)

diff --git a/modules/samples/userguide/build.xml 
b/modules/samples/userguide/build.xml
index 1381a2e..a42406a 100644
--- a/modules/samples/userguide/build.xml
+++ b/modules/samples/userguide/build.xml
@@ -30,7 +30,7 @@
 
 
     <target name="run.client.all"
-            
depends="run.client.ping,run.client.blocking,run.client.blockingdual,run.client.nonblocking,run.client.nonblockingdual,run.client.servicewithmodule">
+            
depends="run.client.rest,run.client.ping,run.client.blocking,run.client.blockingdual,run.client.nonblocking,run.client.nonblockingdual,run.client.servicewithmodule">
     </target>
     
     <target name="compile">
@@ -128,6 +128,14 @@
         </java>
     </target>
     
+    <target name="run.client.rest" depends="compile">
+        <java classname="userguide.clients.RESTClient"
+              classpathref="axis.classpath" fork="true">
+            <jvmarg value="-Daxis2.repo=${mainDir}/repository"/>
+           <jvmarg value="-Daxis2.xml=conf/axis2.xml"/>
+        </java>
+    </target>
+
     <target name="run.client.servicewithmodule" depends="compile">
        <echo message="${mainDir}" />
        <echo message="${mainDir}/repository/conf/axis2.xml" />

Reply via email to