blob: 91a80ef481d1f29c6a210eaf841885f7df079e70 [file] [log] [blame]
<?xml version="1.0" ?>
<project>
<target name="test">
<!-- Verify files generated based on what is referenced in WSDL -->
<wsdl2java url="src/test/wsdl/groups/Groups.wsdl"
output="${project.build.directory}/work"
deployscope="none"
serverSide="no"
noimports="no"
verbose="no"
testcase="no">
<mapping namespace="http://test.com/reference" package="test.wsdl.groups"/>
</wsdl2java>
<!-- Same test as above but this time the -a flag is turned on -->
<wsdl2java url="src/test/wsdl/groups/Groups.wsdl"
output="${project.build.directory}/work"
serverSide="no"
all="yes">
<mapping namespace="http://test.com/reference" package="test.wsdl.groupsAll"/>
</wsdl2java>
</target>
</project>