我在我的系统 (Mac) 上运行了 Gradle 6.2.2,对于我在本地运行的一些关键项目,我需要它保持在 6.2.2 上。
我刚刚克隆了另一个项目,该项目由其他都使用 Gradle 6.7.1 的开发人员维护。它是一个 Spring Boot 应用程序。当我在命令行上运行它的任何 Gradle 命令时,我得到:
> Failed to apply plugin [id 'org.springframework.boot']
> Spring Boot plugin requires Gradle 5 (5.6.x only) or Gradle 6 (6.3 or later). The current version is Gradle 6.2.2
所以看起来Spring Boot 希望我使用 Gradle 6.3+。
我对 Gradle Wrapper 的理解(如果我错了,请纠正我)是:
- 您使用指定用于项目的 Gradle 版本的指令进行
build.gradle
修改wrapper
- 然后,您
gradle wrapper
在命令行上运行,Gradle 会为您下载和缓存(某处)该版本的 Gradle - 现在你可以运行你的普通 Gradle 命令,但不是
gradle
你使用gradlew
and 告诉 Gradle 使用 wrapper 指令中指定的 Gradle 版本
如果其中任何一个不正确或具有误导性,请先纠正我!假设它或多或少是正确的......
我在项目中添加了以下指令build.gradle
:
wrapper{
gradleVersion = '6.7.1'
distributionType = Wrapper.DistributionType.BIN
}
我希望虽然我在系统上本地使用 6.2.2,但这会告诉 Gradle 获取并使用我们知道与项目构建的其余部分兼容的 Gradle v6.7.1。
然后gradle wrapper
我在命令行上从项目根目录运行:
$ gradle wrapper
FAILURE: Build failed with an exception.
* Where:
Build file '/Users/myuser/workspace/the-new-project/build.gradle' line: 27
* What went wrong:
An exception occurred applying plugin request [id: 'org.springframework.boot', version: '2.3.2.RELEASE']
> Failed to apply plugin [id 'org.springframework.boot']
> Spring Boot plugin requires Gradle 5 (5.6.x only) or Gradle 6 (6.3 or later). The current version is Gradle 6.2.2
* Try:
Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output. Run with --scan to get full insights.
* Get more help at https://help.gradle.org
BUILD FAILED in 702ms
关于这里发生了什么的任何想法?如何告诉 Gradle 下载和使用 6.7.1 但不碰我的本地版本 6.2.2?