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
Currently the plugin doesn't support testCompileOnly and testAnnotationProcessor keywords, which is needed for the Lombok library.
testCompileOnly
testAnnotationProcessor
Snippet from https://projectlombok.org/setup/gradle
dependencies { compileOnly 'org.projectlombok:lombok:1.18.20' annotationProcessor 'org.projectlombok:lombok:1.18.20' testCompileOnly 'org.projectlombok:lombok:1.18.20' testAnnotationProcessor 'org.projectlombok:lombok:1.18.20' }
Workaround is to specifically add the dependencies for the integration test. For example:
dependencies { integrationCompileOnly 'org.projectlombok:lombok:1.18.20' integrationAnnotationProcessor 'org.projectlombok:lombok:1.18.20' }
Since Lombok library is fairly popular and can be useful for integration tests, it'd be nice to support it.
The text was updated successfully, but these errors were encountered:
Hi, thanks for your PR.
I extended all test configurations to handle all cases like the one with Lombok (commit). Please, try version 1.3.0 and let me know if all is good.
1.3.0
Sorry, something went wrong.
Verified that v1.3.0 works fine. Thanks.
Successfully merging a pull request may close this issue.
Currently the plugin doesn't support
testCompileOnly
andtestAnnotationProcessor
keywords, which is needed for the Lombok library.Snippet from https://projectlombok.org/setup/gradle
Workaround is to specifically add the dependencies for the integration test. For example:
Since Lombok library is fairly popular and can be useful for integration tests, it'd be nice to support it.
The text was updated successfully, but these errors were encountered: