Gradle 找不到 Spring Boot 依赖项



这是我的build.gradle文件

plugins {
id 'org.springframework.boot' version '2.2.1.RELEASE'
id 'io.spring.dependency-management' version '1.0.8.RELEASE'
id 'java'
}
group = 'de.quinscape'
version = '0.0.1-SNAPSHOT'
sourceCompatibility = '1.8'
configurations {
developmentOnly
runtimeClasspath {
extendsFrom developmentOnly
}
}
repositories {
mavenCentral()
}
dependencies {
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
implementation 'org.springframework.boot:spring-boot-starter-mail'
implementation 'org.springframework.boot:spring-boot-starter-thymeleaf'
implementation 'org.springframework.boot:spring-boot-starter-web'
implementation 'org.springframework.boot:spring-context'
developmentOnly 'org.springframework.boot:spring-boot-devtools'
compile("org.springframework.security:spring-security-ldap")
compile group: 'com.h2database', name: 'h2', version: '1.4.197'
testImplementation('org.springframework.boot:spring-boot-starter-test') {
exclude group: 'org.junit.vintage', module: 'junit-vintage-engine'
}
}
test {
useJUnitPlatform()
}

这是我得到的错误:

Could not find org.springframework.boot:spring-context:.

我做错了什么?我用 Spring 初始值设定项添加了所有依赖项。我只在那个特定项目中收到此错误。

只需删除implementation 'org.springframework.boot:spring-context',Spring 上下文将自动可用(具有间接依赖项(

最新更新