gradle-aws-plugin icon indicating copy to clipboard operation
gradle-aws-plugin copied to clipboard

Complier warning with new release

Open donalhenry opened this issue 8 years ago • 1 comments
trafficstars

When building from either the master or develop branch (after release 0.31 created), I get the warning below:

$ gradlew clean jar
:clean
:compileJava
warning: No processor claimed any of these annotations: org.gradle.api.tasks.TaskAction,lombok.Setter,lombok.Getter,org.gradle.api.Nullable
/Users/dohenry/gradle_plugins/gradle-aws-plugin/src/main/java/jp/classmethod/aws/gradle/common/BasePluginExtension.java:41: warning: [unchecked] unchecked cast
        @Getter(lazy = true)
        ^
  required: T
  found:    Object
  where T is a type-variable:
    T extends AmazonWebServiceClient declared in class BasePluginExtension
2 warnings
:processResources
:classes
:jar

BUILD SUCCESSFUL

donalhenry avatar Nov 29 '16 19:11 donalhenry

https://github.com/rzwitserloot/lombok/issues/994 is the cause, I think.

glebsts avatar Dec 04 '16 15:12 glebsts