标签:
1.父子pom
如果在一个工程中分多个模块,那么会有父子pom。一般子pom中会有配置,指示其依赖的父pom:
<parent>
<groupId>com.xxx</groupId>
<artifactId>xxx</artifactId>
<version>1.1.0-SNAPSHOT</version>
</parent>
而父pom中会指示对应的子模块。配置如下:
<modules>
<module>datacenter-client</module>
<module>datacenter-web</module>
<module>biz-datacenter</module>
<module>datacenter-common</module>
<module>datacenter-service</module>
</modules>
在父pom中会指定所有子模块需要依赖的jar包信息,包括版本信息。子pom中添加依赖的时候,只需要指定groupid、affactid即可。不用版本信息。这样就可以
统一控制整个工程的jar包版本。可以减少冲突的可能。比如如下配置:
父pom:
<dependencies>
<dependency>
<groupId>com.lianlianpay.prophet</groupId>
<artifactId>biz-prophet</artifactId>
<version>1.0-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>com.lianlianpay.prophet</groupId>
<artifactId>prophet-common</artifactId>
<version>1.0-SNAPSHOT</version>
</dependency>
</dependencies>
子pom:
<dependencies>
<dependency>
<groupId>com.lianlianpay.prophet</groupId>
<artifactId>biz-prophet</artifactId>
</dependency>
<dependency>
<groupId>com.lianlianpay.prophet</groupId>
<artifactId>prophet-common</artifactId>
</dependency>
</dependencies>
标签:
原文地址:http://www.cnblogs.com/cat-and-water/p/5974767.html