gpt4 book ai didi

spring-boot - 无法使用org.springframework.boot 1.5.19.RELEASE构建gradle项目

转载 作者:行者123 更新时间:2023-12-03 04:16:42 25 4
gpt4 key购买 nike

我在Gradle项目中使用插件“org.springframework.boot”。更新到1.5.19.RELEASE版本后,尝试构建项目时出现错误:

Could not resolve all dependencies for configuration ':detachedConfiguration1'.

  • Cannot resolve external dependency org.springframework.boot:spring-boot-starter-parent:1.5.19.RELEASE because no repositories are defined. Required by: project :


我还使用其他插件:
plugins {
id 'java'
id 'idea'
id 'jacoco'
id 'maven-publish'
id 'io.spring.dependency-management' version '1.0.6.RELEASE'
id 'org.springframework.boot' version '1.5.19.RELEASE'
id 'org.sonarqube' version '2.6.2'

}

当我使用1.15.18.RELEASE时,项目将成功构建。
我该如何解决?

最佳答案

错误消息是说,Gradle无法解析任何依赖关系,因为您尚未在build.gradle文件中配置任何存储库。 Spring Boot发行版已发布到Maven Central,因此您应该能够通过将以下内容添加到build.gradle来纠正问题:

repositories {
mavenCentral()
}

关于spring-boot - 无法使用org.springframework.boot 1.5.19.RELEASE构建gradle项目,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54821594/

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