尝试从 Github 设置 spring-boot 开源项目时出现问题

问题描述 投票:0回答:1

我正在尝试设置 spring boot 开源项目以贡献它。我正在执行here中的步骤。我在

main
分支。当我尝试跑步时

./gradlew build

我收到此错误

* Where:
Settings file '<my local path>/spring-boot/settings.gradle' line: 26

* What went wrong:
Plugin [id: 'io.spring.ge.conventions', version: '0.0.12'] was not found in any of the following sources:

- Gradle Core Plugins (plugin is not in 'org.gradle' namespace)
- Plugin Repositories (could not resolve plugin artifact 'io.spring.ge.conventions:io.spring.ge.conventions.gradle.plugin:0.0.12')
  Searched in the following repositories:
    MavenRepo
    Gradle Central Plugin Repository
    maven(https://repo.spring.io/release)
    maven2(https://repo.spring.io/snapshot)

settings.gradle 在第 26 行包含此内容

id "io.spring.ge.conventions" version "0.0.12"
根据我在上面日志中的理解,gradle 正在尝试搜索 

io.spring.ge.conventions

 但无法在这些存储库中找到它。我以前没有使用过 gradle,所以我不确定问题到底是什么以及如何解决它。

这些是我的系统详细信息:

System: Mac(Intel) java version "17.0.5" 2022-10-18 LTS Editor: Intellij
我没有单独安装gradle。我正在使用项目提供的 gradle 包装器。

此外,我刚刚在

settings.gradle

 中注释掉了该行并运行了构建。成功了。

有人可以帮我解决这个问题吗?

spring spring-boot gradle setup-project gradle-wrapper
1个回答
0
投票

io.spring.ge.conventions.gradle.plugin 也许你可以去这个网站看看是否有不存在的版本

使用 ./gradlew build 构建 spring-webflux 版本 5.3.21 时失败 (spring-webflux:5.3.21) 我受到这个网站的启发并切换到另一个版本

© www.soinside.com 2019 - 2024. All rights reserved.