Right now I usually find a pom.xml
file on the web that has a pom
packaging and copy and paste it to create my parent project. Then I used to run archetype:create
inside the parent directory to create sub modules but archetype:create
has become deprecated since then.
Any recommendations on how to create new Maven multi-module projects?
The easiest way I've found to do this is to use the pom-root
archetype to create the top-level pom and then repeatedly use archetype:generate
to create each module individually. This will automatically add the modules to the root pom (aggregator) and set the root pom as the parent pom for each module (edit: apparently some archetypes can have a hard-coded parent, but it works for maven-archetype-quickstart
).
Here's the breakdown:
Create the top-level root: mvn archetype:generate \ -DarchetypeGroupId=org.codehaus.mojo.archetypes \ -DarchetypeArtifactId=pom-root \ -DarchetypeVersion=RELEASE cd into your newly created root dir. For each module: mvn archetype:generate \ -DarchetypeGroupId=org.apache.maven.archetypes \ -DarchetypeArtifactId=maven-archetype-quickstart \ -DarchetypeVersion=RELEASE
Note that -DarchetypeVersion=RELEASE
above will automatically use the latest version of the archetype. You may want to add -DgroupId=...
to each of those commands to avoid repeating yourself.
Here is a screencast on how you could do it with Intellij Idea. First, start a new project (File -> New Project), choose 'Maven Module':
https://i.stack.imgur.com/uScc4.png
Type in a name, click next, don't change anything else in the following steps, click finish.
Now in your pom.xml
type <packaging>
and enable auto-updates:
https://i.stack.imgur.com/BYdw3.png
Type in modules:
https://i.stack.imgur.com/WPTxn.png
Place your cursor at m1
and press Alt+Enter.
https://i.stack.imgur.com/SbJLe.png
Module m1
will be automatically added to your project. Now you can do Alt+Enter for m2
and that's it.
https://i.stack.imgur.com/U92sL.png
You can also start by adding pom.xml
for an existing module of your project: right click on it in the project tree, 'Add Framework Support...', choose 'Maven'. This will create a pom.xml
.
<module>m1</module>
inside <modules>
tag. I am new to pom file and ended up spending good amount of time on why alt + enter
doesn't show any mentioned options.
mvn archetype:create
has been deprecated in favor of mvn archetype:generate
, so just the name changed. There is an archetype for multi-module projects in the official repositories, so running this command yields the (minimalist) result:
[axe@gromp test]$ mvn archetype:generate
..
<num>: remote -> pom-root (Root project archetype for creating multi module projects)
..
Choose a number: 109: <num>
..
[axe@gromp test]$ tree
.
└── modules.test
└── pom.xml
1 directory, 1 file
[axe@gromp test]$ cat modules.test/pom.xml
<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">
<modelVersion>4.0.0</modelVersion>
<groupId>com.example</groupId>
<artifactId>modules.test</artifactId>
<version>1.0-SNAPSHOT</version>
<packaging>pom</packaging>
<name>modules.test</name>
</project>
So, basically you will have to create the folder structure and module descriptors (pom.xml files) yourself. Using a simple shell script or batch file will easily do this, if you require it more than once.
I'm not sure if I understand your question correctly, but for creating a multi module project I normally use a simple pom (at the root level):
<?xml version="1.0" encoding="UTF-8"?>
<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">
<modelVersion>4.0.0</modelVersion>
<groupId>com.vijaykiran</groupId>
<artifactId>myproject-parent</artifactId>
<version>1.0</version>
<packaging>pom</packaging>
<modules>
<module>m1</module>
<module>m2</module>
</modules>
</project>
This is probably the simplest multi-module parent pom that you can use. The project you want to create might already have an archetype which might help you in creating the structure. Although you can get help from an IDE to write the pom yourself, if there's an archetype available for the type of the project you want to build, it is normally easier to use that instead.
archetype:generate
that asks me whether I want to create a multi module project and if so what modules it does contain and then it creates the pom.xml
files for me.
If you are working with the eclipse IDE you should use the m2eclipse plug-in. This is one of the easiest way to create multi-module projects. You can add a module to every maven project by creating a 'Maven Module-Project' within eclipse. When doing this you have the possibility to select a parent project. The plug-in does everything, means it copies the new module to parent module and modifies the pom.xml file.
Same answer as Chris H. i just added groupId, artifactId and version options and disabled the interactive mode.
mvn archetype:generate -DarchetypeGroupId=org.codehaus.mojo.archetypes \
-DarchetypeArtifactId=pom-root \
-DarchetypeVersion=RELEASE \
-DinteractiveMode=false \
-DgroupId=com.mycompany.app \
-DartifactId=my-app \
-Dversion=1.0.0-SNAPSHOT \
Consider a parent project bookmarks and 3 sub modules rest, security and model, referring to Spring docs. It doesn't have the dependencies as in the Spring doc, just the basic setup from multi-module point of view.
To create a parent maven project in non-interactive mode/ batch mode
mvn archetype:generate \
-DarchetypeGroupId=org.codehaus.mojo.archetypes \
-DarchetypeArtifactId=pom-root \
-DarchetypeVersion=RELEASE \
-DgroupId=bookmarks \
-DartifactId=bookmarks \
-Dversion=0.0.1-SNAPSHOT \
-DinteractiveMode=false
To create sub modules in non interactive mode/ batch mode.
cd into your newly created root dir. Referring to answer by @Chris.H
-Dpackage is the package structure. Here it is bookmarks. If not specified then it will consider the artifactId as default package
mvn archetype:generate \
-DarchetypeGroupId=org.apache.maven.archetypes \
-DarchetypeArtifactId=maven-archetype-quickstart \
-DarchetypeVersion=RELEASE \
-DgroupId=model \
-DartifactId=model \
-Dversion=0.0.1-SNAPSHOT \
-Dpackage=bookmarks \
-DinteractiveMode=false
To create a new module in eclipse goto File->new->other->maven->maven module, this shows up immediately in eclipse workspace package explorer.
Or from cli, cd inside parent folder, here bookmarks and run the following, it will create the project and then you have to import into eclipse as a maven project, or can work from parent, here bookmarks project
mvn archetype:generate \
-DarchetypeGroupId=org.apache.maven.archetypes \
-DarchetypeArtifactId=maven-archetype-quickstart \
-DarchetypeVersion=RELEASE \
-DgroupId=security \
-DartifactId=security \
-Dversion=0.0.1-SNAPSHOT \
-Dpackage=bookmarks \
-DinteractiveMode=false
Simple 4 steps if you want to avoid xml copy paste.
Create a 284(default) archetype project. Open the pom file created change the packaging from jar to pom Delete the src folder from the project - This is now the Parent project without src, since the packaging is pom. In the above folder create another new project(284 default). Change the packaging to war or ejb or ear. This becomes the sub module. Execute mvn eclipse:eclipse on each module. Now the project should be ready to be imported as a Eclipse Project. While importing the project, Eclipse would complain the below Project configuration is not up-to-date with pom.xml. Run Maven->Update Project or use Quick Fix. To avoid the above error right click and choose Quick Fix. This will update the POMS. Another way to avoid this error is by declaring the sub modules in the Parent pom
Reference the below link for more details. http://maven.apache.org/guides/introduction/introduction-to-the-pom.html#Example_1
Success story sharing