We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi,
I can't run the plugin, there is an issue when running : Unable to load class 'com.sun.xml.bind.Utils'.
Unable to load class 'com.sun.xml.bind.Utils'.
I'm on Java 11 and Gradle 6.8. I've tried adding the dependencies in my build.gradle, but it doesn't change anything.
My wsdl2java configuration looks like this
wsdl2java { wsdlDir = file("src/main/resources/wsdl") wsdlsToGenerate = [["$wsdlDir/naviwest.wsdl"]] }
If you have any idea, I'm being stuck on this Thanks
The text was updated successfully, but these errors were encountered:
have you found any solution to this?
I came across the same problem when i upgraded spring boot from 2.2.4 to 2.6.4.
I will post my solution if i find one..
Thanks
Sorry, something went wrong.
In my case the solution was changing these lines in my dependencies:
implementation("org.jvnet.jaxb2_commons:jaxb2-basics-runtime:1.11.1")
wsdl2java("org.jvnet.jaxb2_commons:jaxb2-basics-runtime:0.11.0") wsdl2java("org.jvnet.jaxb2_commons:jaxb2-basics:0.11.0")
To these:
implementation("com.sun.xml.bind:jaxb-impl:3.0.2")
wsdl2java("com.sun.xml.bind:jaxb-impl:2.3.3")
I use spring boot 2.6.3, java 11, kotlin 1.6.10, gradle 6+, wsdl2java 0.12 i tried a lot of different versions but these worked for me.
No branches or pull requests
Hi,
I can't run the plugin, there is an issue when running :
Unable to load class 'com.sun.xml.bind.Utils'.
I'm on Java 11 and Gradle 6.8.
I've tried adding the dependencies in my build.gradle, but it doesn't change anything.
My wsdl2java configuration looks like this
If you have any idea, I'm being stuck on this
Thanks
The text was updated successfully, but these errors were encountered: