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

我使用 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')

}


波斯汪
浏览 199回答 2
2回答

潇潇雨雨

您正在使用 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/" }}但你最好使用普遍可用的版本。

森林海

Junit 依赖项带有"spring-boot-starter-test",它可能在您的 spring 版本中不可用。尝试更改 spring 版本或使用最新版本并试一试。
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Java