Hi all,
I'm working with maven in a multi module project and it works fine. But when it starts it refers to some projects as unnamed.
Anyone does know why, and how to solve it?
Thanks.
Hi all,
I'm working with maven in a multi module project and it works fine. But when it starts it refers to some projects as unnamed.
Anyone does know why, and how to solve it?
Thanks.
You need to give a name entry in every module you use. That should help. May be you can post your pom...if it isn't the problem.
<name>Entry</name>
In every sub module, simply specify a <name>
:
<project>
...
<name>My project</name>
...
This name
will then be used by the Reactor to display the build order of the modules.