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
commit 9573062ebbacc8aa7329773cd1bb3e4e456e730f Author: Robert Lazarski <[email protected]> AuthorDate: Sat Apr 11 12:53:20 2026 -1000 AXIS2-6102 Remove WSDL 2.0 integration test codegen target The wsdl20-codegen target in itest-build.xml calls WSDL2Java with -wv 2.0, which now throws CodeGenerationException since WSDL 2.0 codegen was removed. Remove the target and its invocation. Co-Authored-By: Claude Opus 4.6 (1M context) <[email protected]> --- modules/integration/itest-build.xml | 12 ++---------- 1 file changed, 2 insertions(+), 10 deletions(-) diff --git a/modules/integration/itest-build.xml b/modules/integration/itest-build.xml index cd25e48d98..3d35e7b1f1 100644 --- a/modules/integration/itest-build.xml +++ b/modules/integration/itest-build.xml @@ -76,7 +76,7 @@ <ant antfile="build.xml" inheritall="true" inheritrefs="true" dir="target/wsdl/complexdatatypebare" /> <ant antfile="itest-build.xml" inheritall="true" inheritrefs="true" dir="." target="rpc-wsdl-codegen" /> - <ant antfile="itest-build.xml" inheritall="true" inheritrefs="true" dir="." target="wsdl20-codegen" /> + <!-- WSDL 2.0 codegen removed in 2.0.1 (AXIS2-6102) --> </target> <target name="rpc-wsdl-codegen"> @@ -127,15 +127,7 @@ target="jar.client"/> </target> - <target name="wsdl20-codegen"> - <echo>Running codegen for WSDL 2.0</echo> - <java classname="org.apache.axis2.wsdl.WSDL2Java" fork="true"> - <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" - target="jar.client"/> - </target> + <!-- wsdl20-codegen target removed in 2.0.1 (AXIS2-6102) --> <target name="enterprise-wsdl-codegen"> <!-- codegen for the enterprise wsdl -->
