Deprecated Gradle features were used in this build, making it incompatible with Gradle 5.0

后端 未结 14 747
暖寄归人
暖寄归人 2020-11-28 07:33

I\'ve got a gradle FAILURE:

...\"Deprecated Gradle features were used in this build, making it incompatible with Gradle 5.0.\"

Case descrip

14条回答
  •  一向
    一向 (楼主)
    2020-11-28 07:44

    Run the Gradle build with a command line argument --warning-mode=all to see what exactly the deprecated features are.

    It will give you a detailed description of found issues with links to the Gradle docs for instructions how to fix your build.

    Adding --stacktrace to that, you will also be able to pinpoint where the warning comes from, if it's triggered by outdated code in one of the plugins and not your build script.

提交回复
热议问题