gpt4 book ai didi

gradle - 如何在build.gradle中声明gradle版本5.0?

转载 作者:行者123 更新时间:2023-12-04 13:18:26 25 4
gpt4 key购买 nike

我在Gradle为4.x时使用了task wrapper,但是当我将gradleVersion更改为5.0时,gradle包装器指出无法添加具有相同名称的任务。当我将其从4.8更改为4.9而没有问题时,这在4.x时没有发生。 Gradle是否更改了task wrapper的工作方式?

最佳答案

从Gradle 4.8版本开始,在构建脚本中定义自定义wrapper任务已被弃用,请参见Gradle 4.8 depreciations(“覆盖Gradle的内置任务”一节)

从4.8版开始(以及5.0之前的版本),如果您仍然定义自定义wrapper任务,则应该收到以下警告消息:

$ ./gradlew clean --warning-mode all

> Configure project :

Creating a custom task named 'wrapper' has been deprecated and is scheduled to be removed in Gradle 5.0.

You can configure the existing task using the 'wrapper { }' syntax or create your custom task under a different name.'.



如所宣布的,在Gradle 5.0中已删除了对自定义 wrapper任务的支持,因此您需要使用新的方式来配置包装器:
// Configuring the wrapper, the old way (gradle < 4.8 )
// see https://docs.gradle.org/4.4/userguide/gradle_wrapper.html#sec:wrapper_generation
task wrapper(type: Wrapper) {
gradleVersion = '4.4'
distributionType = Wrapper.DistributionType.BIN
}

// Configuring the wrapper, the new way (since Gradle 4.8)
// see https://docs.gradle.org/current/userguide/gradle_wrapper.html#customizing_wrapper
wrapper{
gradleVersion = '5.1'
distributionType = Wrapper.DistributionType.BIN
}

关于gradle - 如何在build.gradle中声明gradle版本5.0?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53521437/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com