添加Spring IO Platform的目的:
避免自己的project的外部依赖(external dependencies)之间产生版本冲突问题。更多详细信息参见:
具体操作步骤:
step1,往自己的工程中添加Spring IO Platform
-
-
- 编写project的pom.xml,添加如下代码,引入Spring IO Platform
io.spring.platform platform-bom Athens-SR1 pom import
- 编写project的pom.xml,添加如下代码,引入Spring IO Platform
-
step2,使用Spring IO Platform
-
-
- 引入了Spring IO Platform之后,后面再往project中引入external dependencies的时候,可以不用管external dependencies的版本,譬如要引入spring-core这个external dependency,只需要按照如下方式编写pom.xml即可,不用填写<version>标签的值
- 注意,不引入Spring IO Platform的情况下,如果按照上图配置pom.xml,maven会自动查找Spring-core的最新版本集成到你的project,但是引入了Spring IO Platform的情况下,maven则会集成中所定义的Spring-core的相应版本到你的project中,不管Spring-core有多少可用版本,最新版本是什么,maven都不会理会,它只会遵照Spring IO Platform表格中定义的版本去构建你的工程
- 引入了Spring IO Platform之后,后面再往project中引入external dependencies的时候,可以不用管external dependencies的版本,譬如要引入spring-core这个external dependency,只需要按照如下方式编写pom.xml即可,不用填写<version>标签的值
-