IDEA 新建 module
Posted 阿丙的博客园
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了IDEA 新建 module相关的知识,希望对你有一定的参考价值。
maven项目可以创建多个module,在IDEA中具体操作
1、在已经建好的maven项目上右键
2、新建:
效果如下:
这时在子pom.xml中
<parent> <artifactId>spring-shell</artifactId> <groupId>cn.jiashubing</groupId> <version>1.0-SNAPSHOT</version> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>cli</artifactId>
父 pom.xml中
<modules> <module>cli</module> </modules>
以上是关于IDEA 新建 module的主要内容,如果未能解决你的问题,请参考以下文章