You are viewing a plain text version of this content. The canonical link for it is here.
Posted to axis-cvs@ws.apache.org by ve...@apache.org on 2009/10/10 21:15:14 UTC

svn commit: r823922 - /webservices/axis2/trunk/java/modules/integration/itest-build.xml

Author: veithen
Date: Sat Oct 10 19:15:14 2009
New Revision: 823922

URL: http://svn.apache.org/viewvc?rev=823922&view=rev
Log:
Use correct classpath when executing WSDL2Java in the integration tests for WSDL 2.0. This fixes the build failure since Woden depends on slf4j-log4j12 in scope runtime.

Modified:
    webservices/axis2/trunk/java/modules/integration/itest-build.xml

Modified: webservices/axis2/trunk/java/modules/integration/itest-build.xml
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/java/modules/integration/itest-build.xml?rev=823922&r1=823921&r2=823922&view=diff
==============================================================================
--- webservices/axis2/trunk/java/modules/integration/itest-build.xml (original)
+++ webservices/axis2/trunk/java/modules/integration/itest-build.xml Sat Oct 10 19:15:14 2009
@@ -153,7 +153,7 @@
 	<target name="wsdl20-codegen">
 		<echo>Running codegen for WSDL 2.0</echo>
 		<java classname="org.apache.axis2.wsdl.WSDL2Java" fork="true">
-			<classpath refid="maven.dependency.classpath"/>
+			<classpath refid="maven.runtime.classpath"/>
 			<arg line="-wv 2.0 -ap -o target/wsdl20-test -s -uri test-resources/wsdl20/HotelReservationService.wsdl"/>
 		</java>
 		<ant antfile="build.xml" inheritall="true" inheritrefs="true" dir="target/wsdl20-test"