pom.xml

使用intelJ idea 导入maven包管理文件是,使用Import的方式导入,会自动导入pom.xml来导入包。

 

pom.xml会指定父子关系。

 

例如,总模块的pom.xml中有一下内容:

<modules>
        <module>xxx-client</module>
        <module>xxx-web</module>
        <module>xxx-biz</module>
        <module>xxx-test</module>
    </modules>

 

则在xxx-client目录下面的pom.xml中会指定parent

<parent>
        <artifactId>xxx</artifactId>
        <groupId>xxxxxxdfsfdsf</groupId>
        <version>1.0.0-SNAPSHOT</version>
    </parent>

 

posted @ 2016-09-28 17:31  穆穆兔兔  阅读(238)  评论(0编辑  收藏  举报