-
Notifications
You must be signed in to change notification settings - Fork 2.7k
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
Make sure quarkusXXXCompileOnlyConfiguration extends from platform configuration #41007
Make sure quarkusXXXCompileOnlyConfiguration extends from platform configuration #41007
Conversation
Status for workflow
|
I am trying to add Lombok into a new Quarkus project with Gradle as my build tool. I have stumbled upon this issue too. Specifically with the quarkusGenerateCode task: $ gradle build
FAILURE: Build failed with an exception.
My Lombok configuration details as added to my gradle.properties file are as below:
The plugin is added in my settings.gradle file as below:
And it is added to my build.gradle file as a dependency as follows:
I have attempted to set my platform version to be 1.18.30 but this does not resolve the issue. Any thoughts? |
@jlegue if you think it's an issue in Quarkus then please create a new issue. |
@aloubyansky thanks for responding. I will create a new issue as based on my further investigation the issue seems to come from the quarkusGenerateCode task which is introduced by the quarkus-openapi-generator extension which is in preview currently. I am able to overcome the exception by forcing the Lombok version in the build.gradle file's dependencies section as follows:
|
Fixes the reproducer provided in #39073