Closed pluttrell closed 6 years ago
@pluttrell You need to specify the annotation processor dependency for Lombok, in order to remove this warning.
plugins {
id 'io.franzbecker.gradle-lombok' version '1.11'
id 'java'
}
repositories {
jcenter()
}
dependencies {
annotationProcessor 'org.projectlombok:lombok:1.16.20'
}
lombok {
version = "1.16.20"
sha256 = ""
}
@ahamana Thanks for letting me know. It does resolve the warning.
However I wonder if the plugin should add this without requiring that users do it themselves. It seams strange that we're defining the version in two places.
Also if this going to be required now and into the future, perhaps the docs should be updated.
Yes absolutely, I’ll try to update the plugin as soon as possible. Contributions are very welcome :)
I merged the PR of @dialogbox and create a new release, this should fix this issue. Thanks again!
Using Gradle v4.6 with this simple build script:
Builds generate the following warning:
And with the full warning: