Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

maven shows up some modules marked as "unnamed"

Tags:

maven-2

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. Why does this happen, and how can I solve it?

like image 798
ssedano Avatar asked May 05 '10 09:05

ssedano


1 Answers

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.

like image 50
Romain Linsolas Avatar answered Oct 15 '22 07:10

Romain Linsolas