tags:

views:

73

answers:

2

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.

+1  A: 

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> 
khmarbaise
thank you for your quick reply!
Udo Fholl
+4  A: 

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.

romaintaz