推荐先阅读
:Maven
制作方式
作用:通过继承可以实现在子工程中沿用父工程中的配置
- maven中的继承与Java中继承相似,在子工程中配置继承关系
制作方式:
<parent> <groupId>com.zx</groupId> <artifactId>ssm</artifactId> <version>1.0-SNAPSHOT</version> <relativePath>../ssm/pom.xml</relativePath> </parent>
|
依赖定义
在父工程中定义依赖管理
<dependencyManagement> <dependencies> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-context</artifactId> <version>5.1.9.RELEASE</version> </dependency> </dependencies> </dependencyManagement>
|
依赖使用
在子工程中定义依赖关系,无需声明依赖版本,版本参照父工程中依赖的版本
<dependencies> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-context</artifactId> </dependency> </dependencies>
|
继承的资源