我很高兴得知gradle 5 supports importing poms natively(例如从mavenBom()
插件在Maven或spring-dependency-management
中导入范围)
但是,当我尝试在自己的build.gradle.kts
中使用它时:
plugins {
idea
base
java
}
dependencies {
compile(platform("org.springframework.boot:spring-boot-dependencies:2.1.1.RELEASE"))
compile("org.springframework.boot:spring-boot-starter")
testCompile("org.springframework.boot:spring-boot-starter-test")
}
他们没有解决。