How to create Maven Multi Module Project in Intellij?

I am using IntelliJ IDEA Community Edition 2016.1.3. I'm trying to create a maven multi module project. Project company is the parent and Project employee and Project skillset are child modules. Project employee and skillset will have packing as a WAR but Project company has packing as POM.

在这里输入图像描述 my project structure look like this (above), but i need my project structure to be like below image 在这里输入图像描述

and I could not create a class under employee and skillset. How can I create a multi module project without having src folder in parent (company)?


Your presumption is correct, the top level project being pom packaging should have no source.

So start by removing (just delete or move elsewhere) the src folder from the top level (and everything under it... main, java, resources, text...)

Now, looking at your modules, they look correct. You can test they are configured properly by control-clicking them from the top pom, and they should navigate to the child pom's.

Lastly you want to set up a source structure under the child projects (which have war packaging). Manually create a folder structure under Employee module srcmainjava , right click it and choose Mark As -> Source Root .

Do same for SkillSet and you're done.

链接地址: http://www.djcxy.com/p/61778.html

上一篇: 使用Intellij从修改的Maven项目构建工件

下一篇: 如何在Intellij中创建Maven Multi模块项目?