IntelliJ IDEA创建Maven多模块项目

https://elendil.tuchong.com/15009989/

项目结构

首先放上一张项目构建完之后的图

通过上图可知,父项目(ShzThink)聚合很多子项目(common-utils、common-dao、common-service、think-web、think-crm)。这些模块的依赖关系如下:
common-dao –> common-utils
common-service –> common-dao
think-web –> common-service
think-crm –> common-service

项目构建

Parent Project

新建一个空白标准maven project(不要选择Create from archetype选项)

得到一个标准的maven项目,因为该项目是作为一个Parent project存在的,可以直接删除src文件夹。

增加common-*模块

选中父模块之后,依次New->Module,会出现下面窗口,勾选Create from archetype,选择maven-archetype-quickstart选项。

以此方法依次创建common-utils、common-dao、common-service子模块。

增加think-*模块

与2.2中相似,只不过因为think-*是我们最终要部署的应用,因此在创建模块的时候选择maven-archetype-webapp选项。

添加项目依赖

以common-dao模块为例,在添加依赖之前,我们可以看到它的pom文件是这样的:


<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">
    <parent>
        <artifactId>shz-think-backend</artifactId>
        <groupId>com.shzthink.web</groupId>
        <version>1.0-SNAPSHOT</version>
    </parent>
    <modelVersion>4.0.0</modelVersion>

    <artifactId>common-dao</artifactId>
    <packaging>jar</packaging>

    <name>common-dao</name>
    <url>http://maven.apache.org</url>

    <properties>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    </properties>

    <dependencies>
        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <version>3.8.1</version>
            <scope>test</scope>
        </dependency>
    </dependencies>
</project>

选择common-dao子模块,右键->Open Module Settings,出现如下窗口,选择common-utils。

此时再查看common-dao子模块的pom文件会发现在 < dependencies>下增加了一段代码:

<dependency>
    <groupId>com.shzthink.web</groupId>
    <artifactId>common-utils</artifactId>
    <version>1.0-SNAPSHOT</version>
</dependency>

依照上述方法依次给common-service、think-web、think-crm添加依赖。此时就完成了多模块Maven项目的创建。

Build项目

在ShzThink父项目的根目录中运行mvn clean install,输出的末尾大概会是这样的

注意Reactor Summary,整个项目根据我们希望的顺序进行build。Maven根据我们的依赖配置,智能的安排了顺序。

参考&引用

Maven最佳实践 划分模块 配置多模块项目 pom modules

更新时间

发布时间 : 2016-07-23

看你的了!