基于IDEA建立module操作步骤解析
贾树丙 人气:0本文着重讲解了基于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>
加载全部内容