wsdl2java-gradle-plugin icon indicating copy to clipboard operation
wsdl2java-gradle-plugin copied to clipboard

A Gradle plugin for generating Java classes from WSDL files

Results 21 wsdl2java-gradle-plugin issues
Sort by recently updated
recently updated
newest added

I tried to configure the `wsdl2java` plugin with `-Xcollection-setter-injector` as follows: ``` wsdl2java { options.add("-xjc-Xcollection-setter-injector") wsdlDir = layout.projectDirectory includesWithOptions = ["src/main/resources/wsdl/service.wsdl" : ["-wsdlLocation", "http://localhost/wsdl/service.wsdl"] cxfVersion = "4.0.2" useJakarta = true...

Updated cxf to avoid CVE-2021-40690 vulnerabilites

includes -> includesWithOptions

I needed this additional setting for a set of XSDs I am using.

You've created a nice plugin, thank you for your efforts. I've been trying to use the generated Java sources from Kotlin. The Kotlin compiler did not see the generated sources...

Hiyah, Thanks for this plugin - its proved very useful in my project. I did however have a problem using it with bindings files which I thought worth raising as...

The plugin should allow to specify the output encoding. The undocumented wsdl2java option `-encoding` can be used for this. The new option should default to the encoding set on the...

My scheme contains name space as following http://www.foo.com/Public/Services As a result java classes were generated in package com.foo.public.services But public is java keyword. As a result I cannot build my...

If your WSDL files breach the `theEnumMemberSizeCap` limit, you need to be able to specify a JAXB binding file to raise the `theEnumMemberSizeCap` limit. PR #3 fixes this.