spring-boot gradle 插件的里程碑构建存储在哪里?

问题描述 投票:0回答:1

我想尝试一下 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 插件,以及使用哪个存储库来下载它。

spring-boot gradle spring-boot-gradle-plugin
1个回答
0
投票

它们存储在同一个地方:) 您需要在

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

© www.soinside.com 2019 - 2024. All rights reserved.