|
From: Scott M S. <st...@us...> - 2004-03-20 02:28:59
|
User: starksm
Date: 04/03/19 18:19:08
Modified: . build.xml
Log:
Change the WSDL2Java classpath from library.classpath to thirdparty.classpath
since the jaxrpc and saaj classes come from the j2ee module
Revision Changes Path
1.351 +4 -4 jbosstest/build.xml
Index: build.xml
===================================================================
RCS file: /cvsroot/jboss/jbosstest/build.xml,v
retrieving revision 1.350
retrieving revision 1.351
diff -u -r1.350 -r1.351
--- build.xml 16 Mar 2004 05:34:48 -0000 1.350
+++ build.xml 20 Mar 2004 02:19:07 -0000 1.351
@@ -15,7 +15,7 @@
<!-- -->
<!-- ====================================================================== -->
-<!-- $Id: build.xml,v 1.350 2004/03/16 05:34:48 starksm Exp $ -->
+<!-- $Id: build.xml,v 1.351 2004/03/20 02:19:07 starksm Exp $ -->
<project default="main" name="JBoss/Testsuite">
@@ -908,7 +908,7 @@
<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="library.classpath"/>
+ <classpath refid="thirdparty.classpath"/>
</java>
<!-- Delete the service impl skeleton as we have an impl already -->
@@ -919,7 +919,7 @@
<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="library.classpath"/>
+ <classpath refid="thirdparty.classpath"/>
</java>
<!-- call wsdl4j emitter for Google stubs -->
@@ -927,7 +927,7 @@
<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="library.classpath"/>
+ <classpath refid="thirdparty.classpath"/>
</java>
<!-- these taskdefs allow to call jboss.net specific xdoclet functionality -->
|