目的:集中管理第三方Jar,解决冗余定义和升级问题,抽离公共部分到父类中管理
ProjectParent pom.xml
<dependencyManagement>
<dependencies>
<dependency>
//此处只添加第三方依赖包
ProjectChild pom.xml
<parent>
<groupId>
<artifactId>
<version>
ProjectParent pom.xml
<dependencyManagement>
<dependencies>
<dependency>
//此处只添加第三方依赖包
ProjectChild pom.xml
<parent>
<groupId>
<artifactId>
<version>