Maven shows some modules marked as "unnamed",

I work with maven in a project with several modules and it works great. But when it starts, it refers to some projects as unnamed. Why is this happening and how can I solve it?

+6
maven-2
source share
2 answers

In each add-on module, simply specify <name> :

 <project> ... <name>My project</name> ... 

This name will be used by the reactor to display the assembly order of the modules.

+15
source share

You need to specify a name in each module that you use. This should help. Maybe you can post your pom ... if that is not a problem.

 <name>Entry</name> 
+2
source share

All Articles