Closed emlun closed 3 years ago
Thanks for taking a look!
While this passes the tests, it also modifies the tests – so I'm not sure it would actually work.
That's a fair point. I tried to organize the changes in commits of
Would you like some other organization of the changes?
There should be another way for the
VerifyLombok
task to somehow access this?
I'm not sure what you mean by this, but maybe my replies to your inline comments will help there.
Hey @emlun, this is now published as v5.0.0. Sorry for the delay – had to migrate this project from travis-ci.org to travis-ci.com
Cool, I'm happy to have helped! Sorry for me being slow to respond too. Thanks again!
Hi! The
:verifyLombok
task fails in Gradle 7 because thecompileOnly
configuration is no longer resolvable:Instead, it appears that libraries and plugins should use the
compileClasspath
configuration to resolve dependencies - for example to retrieve a JAR file, as in the case ofVerifyLombok
.Included here are a couple of tests that expose the issue and a fix for it. It seems like this maintains compatibility all the way back to Gradle 2. :slightly_smiling_face: