我想尝试一下 spring-boot 的里程碑版本:
3.4.0-MC2
。为了获得 Spring Boot 的里程碑版本,我添加了一个单独的 Maven 存储库,该存储库适用于 Java 工件:
repositories {
mavenCentral()
maven { url "http://repo.spring.io/libs-milestone" }
}
我始终将 spring-boot gradle 插件保持在与 spring 版本相同的版本上。我不知道版本 3.4.0-MC2 中是否存在
org.springframework.boot
gradle 插件,以及使用哪个存储库来下载它。
它们存储在同一个地方:) 您需要在
settings.gradle
文件中单独添加存储库,如下所示:
pluginManagement {
repositories {
mavenCentral()
gradlePluginPortal()
maven {
url 'https://repo.spring.io/milestone'
}
}
}
完整示例(为我构建):https://github.com/willb611/hello-world-spring-boot-gradle/pull/1/files