How can I add a namespace mapping to axis ant task in gradle?
I use the following gradle build:
dependencies {
axisGenAntTask “org.apache.axis:axis-ant:1.4”,
“org.apache.axis:axis:1.4”,
“org.apache.axis:axis-jaxrpc:1.4”,
“axis:axis-wsdl4j:1.5.1”,
“commons-codec:commons-codec:1.3”,
“commons-logging:commons-logging:1.1.1”,
“commons-discovery:commons-discovery:0.2” }
task genWsdlClasses() << {
ant.echo(message:“Generating Classes for use with WSDL”)
ant.taskdef(
name: “genClassesFromWSDL”,
classname: “org.apache.axis.tools.ant.wsdl.Wsdl2javaAntTask”,
classpath: configurations.axisGenAntTask.asPath
)
def wsdlLocation = “resources/service.wsdl”
ant.genClassesFromWSDL(
url: wsdlLocation,
output: “src/main/java”,
// TODO namespace mapping here?
) }
The formely used ant target was this:
<axis-wsdl2java url=“resources/enhancedCheckService.wsdl”
output="${project.gen}/src"
deployscope=“session”
serverSide=“false”
noWrapped=“true”
skeletonDeploy=“false”
verbose=“true”
typeMappingVersion=“1.2”
testcase=“no”>
<mapping namespace=“http://www.my.org/”
package=“com.service.gen”/>
I can’t get the mapping tag to work in gradle.
The Wsdl2javaAntTask has an addMapping method with which holds the mapping details. How can I get this function called in the genClassesFromWSDL? Any ideas?