You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-dev@axis.apache.org by he...@apache.org on 2005/06/07 17:37:46 UTC

svn commit: r188800 - /webservices/axis/trunk/java/maven.xml /webservices/axis/trunk/java/modules/samples/script/build.xml

Author: hemapani
Date: Tue Jun  7 08:37:44 2005
New Revision: 188800

URL: http://svn.apache.org/viewcvs?rev=188800&view=rev
Log:
checked in the sample ant scripts

Added:
    webservices/axis/trunk/java/modules/samples/script/build.xml
Modified:
    webservices/axis/trunk/java/maven.xml

Modified: webservices/axis/trunk/java/maven.xml
URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/java/maven.xml?rev=188800&r1=188799&r2=188800&view=diff
==============================================================================
--- webservices/axis/trunk/java/maven.xml (original)
+++ webservices/axis/trunk/java/maven.xml Tue Jun  7 08:37:44 2005
@@ -143,7 +143,8 @@
 			<ant:classes dir="modules/core/conf">
       		    	<ant:include name="*.properties"/>
 			</ant:classes>
-                        <ant:webinf dir="modules/samples/target/toWar/"/>
+                        <ant:webinf dir="modules/samples/target/toWar/"/>
+                        <ant:webinf dir="modules/core/src/org/apache/axis/deployment"/>
 		</ant:war>
     </goal>
 	<!-- to transforme htmls to xdocs -->

Added: webservices/axis/trunk/java/modules/samples/script/build.xml
URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/java/modules/samples/script/build.xml?rev=188800&view=auto
==============================================================================
--- webservices/axis/trunk/java/modules/samples/script/build.xml (added)
+++ webservices/axis/trunk/java/modules/samples/script/build.xml Tue Jun  7 08:37:44 2005
@@ -0,0 +1,28 @@
+<project name="samples" default="alltests">
+<path id="axis.classpath">
+		<fileset dir="../lib">
+			<include name="*.jar"/>
+		</fileset>
+		<pathelement location="userguide/sample.jar"/>
+</path>
+
+<target name="alltests" depends="testEchoBlockingClient,testEchoBlockingDualClient,testEchoNonBlockingDualClient,testPingClient,testWebServiceWithModuleClient">
+</target>
+
+<target name="testEchoBlockingClient">
+		<java classname="userguide.clients.EchoBlockingClient" classpathref="axis.classpath"/>
+</target>
+<target name="testEchoBlockingDualClient">
+		<java classname="userguide.clients.EchoBlockingDualClient" classpathref="axis.classpath"/>
+</target>
+<target name="testEchoNonBlockingDualClient">
+		<java classname="userguide.clients.EchoNonBlockingDualClient" classpathref="axis.classpath"/>
+</target>
+<target name="testPingClient">
+		<java classname="userguide.clients.PingClient" classpathref="axis.classpath"/>
+</target>
+<target name="testWebServiceWithModuleClient">
+		<java classname="userguide.clients.ClientForWebServiceWithModule" classpathref="axis.classpath"/>
+</target>
+
+</project>
\ No newline at end of file