码迷,mamicode.com
首页 > 其他好文 > 详细

pom文件

时间:2016-10-18 22:38:01      阅读:224      评论:0      收藏:0      [点我收藏+]

标签:

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>




pom文件

标签:

原文地址:http://www.cnblogs.com/cat-and-water/p/5974767.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!