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

A Gradle plugin to run the XJC binding compiler during a build

Results 23 gradle-xjc-plugin issues
Sort by recently updated
recently updated
newest added

When i add `xsd:annotation` block with ``, exception occurs: ``` Execution failed for task ':xjcGenerate'. > A failure occurred while executing org.unbrokendome.gradle.plugins.xjc.work.xjc23.XjcGeneratorWorkAction > java.lang.NullPointerException (no error message) ``` example of...

This could be optional. This will mean generated code is ignored by code coverage and static analysis tools without extra configuration.

Dear all, Could you please help. When I set the docLocale I get an exception on running xjcGenerate: > A failure occurred while executing org.unbrokendome.gradle.plugins.xjc.work.xjc23.XjcGeneratorWorkAction > Could not serialize unit...

https://repo.maven.apache.org/maven2/org/unbroken-dome/gradle-plugins/gradle-xjc-plugin/2.0.0/gradle-xjc-plugin-2.0.0.pom ==> 404 Not Found

I have seen similar questions on here, but still a bit fuzzy. How would the Gradle build file below (for example) be look in sourceSets/version 2.0 land? ``` plugins {...

I’m using the XJC Gradle plugin (version `2.0.0`) with the configuration ```groovy sourceSets { main { xjcCatalog.srcDir("my/package") xjcTargetPackage = "my.package" } } xjc { extension = true } ``` After...

The Gradle [configuration cache](https://docs.gradle.org/current/userguide/configuration_cache.html) can't be enabled when using `org.unbroken-dome.xjc` Gradle plugin. Quoting from the doc: > Gradle model types (e.g. Gradle, Settings, Project, SourceSet, Configuration etc…​) are usually used...

Hi, I am trying to get a very basic setup working based on the documentation here: https://unbroken-dome.github.io/projects/gradle-xjc-plugin/ It suggests that a basic setup as below should be enough to get...

com.sun.tools.xjc.XJCTask supports language:"WSDL" to directly process WSDL files. This is the only way I currently can process SAP generated WSDL files, as they contain 2 schemas. https://github.com/kohsuke/jaxb/blob/master/jaxb-ri/xjc/src/main/java/com/sun/tools/xjc/Language.java and https://github.com/kohsuke/jaxb/blob/master/jaxb-ri/xjc/src/main/java/com/sun/tools/xjc/ModelLoader.java#L368 Is...

Hi, I'm using an old version of an gradle xjc plugin and had two tasks there in my build.gradle: ``` task xjcGenerateObjects1(type: XjcGenerateTask) { source = fileTree('src/main/resources/proj1') { include '**/objects1.xsd'...