如何在Gradle中获取Spring引导依赖版本?

pb3skfrl  于 2022-12-13  发布在  Spring
关注(0)|答案(2)|浏览(236)

我有一个带有org.springframework.boot:spring-boot-gradle-plugin的标准的spring-boot项目。我知道我可以用例如覆盖依赖版本。

ext['slf4j.version'] = '1.7.5'

但是我如何才能获得当前由spring-boot插件导入的版本,以便我以后在脚本中使用它?例如:

currentSlf4jVersion = xxx('slf4j.version')
fjaof16o

fjaof16o1#

Sping Boot 的插件为您应用的dependency management plugin提供了对导入的bom中的属性的编程访问。
您可以取得slf4j.version属性的值,如下所示:

dependencyManagement.importedProperties['slf4j.version']
ax6ht2ek

ax6ht2ek2#

You can find your gradle project dependencies using command

gradle dependencies

For All:

gradle listAllDependencies

For sub-project:

gradle :<subproject>:dependencies

This will output dependencies

相关问题