|
From: Thomas D. <tdi...@us...> - 2004-08-03 08:04:12
|
User: tdiesler Date: 04/08/03 01:04:06 Modified: . build.xml Log: Restore the jboss.net test build Revision Changes Path 1.386 +36 -19 jbosstest/build.xml Index: build.xml =================================================================== RCS file: /cvsroot/jboss/jbosstest/build.xml,v retrieving revision 1.385 retrieving revision 1.386 diff -u -r1.385 -r1.386 --- build.xml 2 Aug 2004 22:13:14 -0000 1.385 +++ build.xml 3 Aug 2004 08:04:06 -0000 1.386 @@ -15,7 +15,7 @@ <!-- --> <!-- ====================================================================== --> -<!-- $Id: build.xml,v 1.385 2004/08/02 22:13:14 starksm Exp $ --> +<!-- $Id: build.xml,v 1.386 2004/08/03 08:04:06 tdiesler Exp $ --> <project default="main" name="JBoss/Testsuite"> @@ -920,6 +920,39 @@ destdir="${build.resources}/entity/entity/META-INF"/> </ejbdoclet> + <!-- JBoss.NET services generation --> + + <!-- call wsdl4j emitter for AddressBook interfaces and stubs --> + <java dir="${build.gen-src}" fork="yes" failOnError="true" className="org.apache.axis.wsdl.WSDL2Java"> + <arg value="-s"/> + <arg value="-d"/> + <arg value="Session"/> + <arg value="-Nhttp://test.jboss.org/samples/AddressBook=org.jboss.test.webservice.wsr"/> + <arg value="${source.resources}/webservice/wsr/wsr/META-INF/AddressBook.wsdl"/> + <classpath refid="thirdparty.classpath"/> + </java> + + <!-- Delete the service impl skeleton as we have an impl already --> + <delete file="${build.gen-src}/org/jboss/test/webservice/wsr/AddressBookSOAPBindingImpl.java"/> + + <!-- call wsdl4j emitter for Bablefish stubs --> + <java dir="${build.gen-src}" fork="yes" failOnError="true" className="org.apache.axis.wsdl.WSDL2Java"> + <arg value="-d"/> + <arg value="Session"/> + <arg value="-Nhttp://www.xmethods.net/sd/BabelFishService.wsdl=org.jboss.test.webservice.external.babelfish"/> + <arg value="${source.resources}/webservice/external/wsr/META-INF/babelfish.wsdl"/> + <classpath refid="thirdparty.classpath"/> + </java> + + <!-- call wsdl4j emitter for Google stubs --> + <java dir="${build.gen-src}" fork="yes" failOnError="true" className="org.apache.axis.wsdl.WSDL2Java"> + <arg value="-d"/> + <arg value="Session"/> + <arg value="-Nurn:GoogleSearch=org.jboss.test.webservice.external.google"/> + <arg value="${source.resources}/webservice/external/wsr/META-INF/google.wsdl"/> + <classpath refid="thirdparty.classpath"/> + </java> + <!-- these taskdefs allow to call jboss.net specific xdoclet functionality --> <taskdef name="webserviceejbdoclet" classname="xdoclet.modules.ejb.EjbDocletTask"> <classpath refid="xdoclet.task.classpath"/> @@ -1239,8 +1272,6 @@ <classpath refid="tests.classpath"/> <include name="${javac.includes}"/> <exclude name="${javac.excludes}"/> - <!-- Exclude the jboss.net tests for now --> - <exclude name="org/jboss/test/webservice/**" /> </javac> </target> @@ -1434,6 +1465,7 @@ _jars-txtimer, _jars-util, _jars-web, + _jars-jbossnet, _jars-webservice, _jars-xa"> </target> @@ -1626,7 +1658,6 @@ <!-- ok, we have created the loadtime jars, let us now precompile the classes for standalone test --> -<!-- <aopc compilerclasspathref="aop.task.classpath"> <classpath refid="thirdparty.classpath"/> <classpath path="${build.classes}"/> @@ -1634,7 +1665,7 @@ <include name="org/jboss/test/aop/bean/**"/> <aoppath path="${source.resources}/aop/META-INF/jboss-aop.xml"/> </aopc> ---> + </target> <!-- bank test --> @@ -5240,20 +5271,6 @@ </fileset> </jar> - <jar jarfile="${build.lib}/wsuddi.jar" manifest="${build.etc}/manifest.mf"> - <fileset dir="${build.classes}"> - <include name="**/test/util/**"/> - <include name="**/test/webservice/security/server/*Login*.*"/> - <include name="**/test/security/service/SecurityConfig*.*"/> - <exclude name="**/*TestCase*.*"/> - </fileset> - <fileset dir="${build.resources}/webservice/uddi/ejb/"> - <include name="**/*.xml"/> - </fileset> - <fileset dir="${build.resources}/webservice/security/server/"> - <include name="**/*.xml"/> - </fileset> - </jar> </target> <!-- ws4ee tests --> |