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?
In each add-on module, simply specify <name> :
<name>
<project> ... <name>My project</name> ...
This name will be used by the reactor to display the assembly order of the modules.
name
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>