classmethod / gradle-aws-plugin

Gradle plugin to manage Amazon Web Services
276 stars 132 forks source link

Complier warning with new release #78

Open donalhenry opened 7 years ago

donalhenry commented 7 years ago

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
glebsts commented 7 years ago

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