Spring Cloud GCP依赖性管理
2024-01-09 17:30 更新
Spring Cloud GCP物料清单(BOM)包含其使用的所有依赖项的版本。
如果您是Maven用户,则将以下内容添加到pom.xml文件中将使您可以不指定任何Spring Cloud GCP依赖版本。相反,您使用的BOM的版本将确定所使用依赖项的版本。
<dependencyManagement> <dependencies> <dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-gcp-dependencies</artifactId> <version>{project-version}</version> <type>pom</type> <scope>import</scope> </dependency> </dependencies> </dependencyManagement>
在以下各节中,将假定您正在使用Spring Cloud GCP BOM,并且相关代码段将不包含版本。
Gradle用户可以使用Spring的依赖项管理插件 Gradle插件来获得相同的BOM体验 。为简单起见,本文档其余部分中的Gradle依赖项片段也将省略其版本。
以上内容是否对您有帮助:
更多建议: