wsdl2java icon indicating copy to clipboard operation
wsdl2java copied to clipboard

Gradle plugin for generating java source from wsdl files

Results 60 wsdl2java issues
Sort by recently updated
recently updated
newest added

I have commons-io in my classpath, which is needed for another gradle plugin. This cause the following error: ``` > Task :abcd:wsdl2java configuration key 'class.resource.loader.class' has been deprecated in favor...

We're in the process of upgrading from java 8 to 11 and are running into a classnotfoundexception ``` at org.gradle.api.internal.tasks.execution.ExecuteActionsTaskExecuter.lambda$executeIfValid$1(ExecuteActionsTaskExecuter.java:208) at org.gradle.internal.Try$Failure.ifSuccessfulOrElse(Try.java:263) at org.gradle.api.internal.tasks.execution.ExecuteActionsTaskExecuter.executeIfValid(ExecuteActionsTaskExecuter.java:206) at org.gradle.api.internal.tasks.execution.ExecuteActionsTaskExecuter.execute(ExecuteActionsTaskExecuter.java:187) at org.gradle.api.internal.tasks.execution.CleanupStaleOutputsExecuter.execute(CleanupStaleOutputsExecuter.java:114) at org.gradle.api.internal.tasks.execution.FinalizePropertiesTaskExecuter.execute(FinalizePropertiesTaskExecuter.java:46)...

Java 8, Gradle 6, wsdl2java 0.12 1) Clone this repository: https://github.com/barancev/wsdl2java_sample 2) Run `gradlew wsdl2java` The result is: ``` C:\devel\homework\java\wsdl2java_sample>gradlew wsdl2java FAILURE: Build failed with an exception. * Where: Build...

Hi all We have the following situation in our project. We have multiple versioned wsdl's. Some of the wsdl's generate the same target classes in the same package. We want...

Getting this error after adding the plugin and the corresponding wsdl2java task in my build.gradle file. Can someone please help in providing a resolution.

Somehow generatedWsdlDir has been removed in v.12, but what is the replacement ?

After a few years, I think it's [fair to assume](https://github.com/nilsmagnus/wsdl2java/issues/57 ) that the xsd2java plugin as mentioned in the readme will not be "coming soon". So I'd prefer to get...

Is it possible to generate collection setters in the generated classes? I have an existing Maven project which I'm converting to gradle, the maven project uses: ``` org.apache.cxf cxf-codegen-plugin 2.3.1...

``` wsdl2java { wsdlDir = file("src/main/resources/wsdl") wsdlsToGenerate = [ ['-p', 'org.example', '-autoNameResolution', '-db', 'xmlbeans', "$projectDir/src/main/resources/wsdl/file.wsdl"] ] locale = Locale.ENGLISH } ``` Execution failed for task ':wsdl2java'. > Could not find...

Using 0.11 and 0.12 the generated files are built in `build/wsdl2java/...` and the copied in `build/generated/wsdl` but nothing gets in the specified `wsdlDir`. The presence of the directory specified in...