Darryl Miles
Darryl Miles
Any other details ? Which Gradle version ? Do you have a basic build.gradle project that can reproduce this exception.
If you did not have that custom task, does it run and run without error? even if the extra task was not executed, the introduction (default initialization) of the custom...
RTFM ? https://unbroken-dome.github.io/projects/gradle-xjc-plugin/#_specifying_extra_arguments https://docs.oracle.com/javase/8/docs/technotes/tools/unix/xjc.html So maybe this means: ``` sourceSets { main { xjcExtraArgs.addAll '-mark-generated' } } ``` This works for me, ensure to provide the annotation on the classpath...
Can you confirm there is only a single xjcGenerate execution per module and each module has its own build output directory to itself ? It certainly looks like there isn't...
@chrisdennis Can you confirm if you are using Windows ? are you using catalogs ? or classpath: or maven: references ? I have not experienced any concurrency issues since doing...
Thanks for your comment, no problem on delay. To give you my thoughts in a response: I continue to maintain the view in my previous comment. Description of the sequence...
With modern Gradle you can try adding the following: ``` repositories { gradlePluginPortal() } ``` Or take a look at the Gradle plugin page for other options: https://plugins.gradle.org/plugin/org.unbroken-dome.xjc Sure it...
@eskatos thanks for your comment on this concerning making the plugin work with Gradle configuration cache When you say this could be a `ConfigurableFileCollection` are you aware the MavenUriResolver feature...
Thanks for this report. I quick look at this, can you confirm if you see a root cause exception from the XJC tool itself, or only the NPE, so the...
My use case is: ``` COPY build_description.sh /tmp ENV DESCRIPTION=$(bash /tmp/build_description.sh) LABEL "org.opencontainers.image.description=$DESCRIPTION" ``` ``` #!/bin/bash -e # Usage: build_description.sh # Which version of bash did we get after the...