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

Maven 的聚合

时间:2018-05-23 14:17:34      阅读:141      评论:0      收藏:0      [点我收藏+]

标签:apache   xmlns   url   sch   modules   www.   utf-8   artifact   pil   

1.maven的集合

1.假设我们已经拥有了项目Age,项目Bge,项目Cge,项目Summary

2.我们在项目Summary的pom.xml中引入集合标签(以项目Summary汇总)

<modules>

    <module>../引入的项artifactId</module>

    <module>../引入的项artifactId</module>

</modules>

例子:

Summary的pom.xml如下

<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  <modelVersion>4.0.0</modelVersion>

  <groupId>com.imooc.Summary</groupId>
  <artifactId>Summary</artifactId>
  <version>0.0.1-SNAPSHOT</version>
  <packaging>pom</packaging>

  <name>Summary</name>
  <url>http://maven.apache.org</url>

  <properties>
    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  </properties>
  
  <modules>
          <module>../Age</module>
          <module>../Bge</module>
          <module>../Cge</module>
  </modules>
</project>

作用:项目Summary执行install  ,clean  ,compile,test时,存在module中的项目会一起执行这一个命令

 

Maven 的聚合

标签:apache   xmlns   url   sch   modules   www.   utf-8   artifact   pil   

原文地址:https://www.cnblogs.com/yvanBk/p/9076485.html

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