猿问

Gradle 5 中是否有 dependencyManagement.importe

我需要从类似于 org.springframework.boot.spring-boot-dependencies 的 BOM 中获取像“jackson.version”这样的属性。我知道我可以通过使用 dependencyManagement.importedProperties 使用 io.spring.dependency-management 插件来做到这一点。但是 Gradle 的 5 Maven BOM 支持有什么办法呢?


这是 io.spring.dependency-management(Kotlin DSL) 的示例:


dependencyManagement {

    imports {

        mavenBom("org.springframework.cloud:spring-cloud-dependencies:Greenwich.RELEASE")

    }

}


dependencies {

    implementation("org.group:artifact:${dependencyManagement.importedProperties["spring-cloud-aws.version"]}")

}

我想对 Gradle 5 做同样的事情:


dependencies {

    implementation(platform("org.springframework.cloud:spring-cloud-dependencies:Greenwich.RELEASE}"))

    implementation("org.group:artifact:${?["spring-cloud-aws.version"]}")

}

如何获取“spring-cloud-aws.version”(BOM 中的任何属性)?


森林海
浏览 177回答 1
1回答

12345678_0001

目前没有。有许多功能尚不可用。您可以计划看到它在更高版本的 Gradle 中实现,或者更可能是等效功能。
随时随地看视频慕课网APP

相关分类

Java
我要回答