gpt4 book ai didi

java - 为什么我在 IntelliJ 中收到 Gradle 配置构建错误 junit5?

转载 作者:行者123 更新时间:2023-12-01 06:02:51 25 4
gpt4 key购买 nike

我使用 Spring Boot 初始化程序创建了干净的项目,但出现配置构建错误。我收到的消息是: Could not find org.junit:junit-bom:5.4.0-SNAPSHOT. 但在我的 gradle 文件中没有它。这是怎么回事?

    buildscript {
ext {
springBootVersion = '2.2.0.BUILD-SNAPSHOT'
}
repositories {
mavenCentral()
maven { url "https://repo.spring.io/snapshot" }
maven { url "https://repo.spring.io/milestone" }
}
dependencies {
classpath("org.springframework.boot:spring-boot-gradle-plugin:${springBootVersion}")
}
}

apply plugin: 'java'
apply plugin: 'eclipse'
apply plugin: 'idea'
apply plugin: 'org.springframework.boot'
apply plugin: 'io.spring.dependency-management'

group = 'com.example'
version = '0.0.1-SNAPSHOT'
sourceCompatibility = 11

repositories {
mavenCentral()
maven { url "https://repo.spring.io/snapshot" }
maven { url "https://repo.spring.io/milestone" }
}


dependencies {
implementation('org.springframework.boot:spring-boot-starter-security')
implementation('org.springframework.boot:spring-boot-starter-web')
testImplementation('org.springframework.boot:spring-boot-starter-test')
testImplementation('org.springframework.security:spring-security-test')
}

最佳答案

您正在使用 Spring Boot 的开发(快照)版本,该版本引用 JUnit 5 的开发(快照)版本,但您尚未添加 JUnit 的快照存储库:https://oss.sonatype.org/content/repositories/snapshots/org/junit/junit-bom/5.4.0-SNAPSHOT/ :

repositories {
maven { url "https://oss.sonatype.org/content/repositories/snapshots/" }
}

但您最好使用通用版本。

关于java - 为什么我在 IntelliJ 中收到 Gradle 配置构建错误 junit5?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53705166/

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