-
Notifications
You must be signed in to change notification settings - Fork 18
New issue
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
Warning since Gradle 7.x: Execution optimizations have been disabled for task ':processResources' #38
Comments
bwaldvogel
changed the title
Warning since Gradle 7.3: Execution optimizations have been disabled for task ':processResources'
Warning since Gradle 7.x: Execution optimizations have been disabled for task ':processResources'
Nov 23, 2021
same problem here, even worse: when having multiple xjc configurations, gradle complains about circular dependencies among them. the workaround given above unfortunately does not work for me.
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I’m using the XJC Gradle plugin (version
2.0.0
) with the configurationAfter upgrading Gradle from 6.x to 7.x, I get the following new warning when assembling the project via
./gradlew assemble
:To hide the warning, I declared an explicit task dependency as a temporary workaround:
processResources.dependsOn xjcGenerate, xjcGenerateTest
The text was updated successfully, but these errors were encountered: