When building a module - display it's <groupId>:<artifactId> rather than just a 
<name>
--------------------------------------------------------------------------------------

                 Key: MNG-4220
                 URL: http://jira.codehaus.org/browse/MNG-4220
             Project: Maven 2
          Issue Type: Improvement
          Components: Logging
    Affects Versions: 2.1.0
         Environment: Java 6
            Reporter: Evgeny Goldin


When building a module - Maven logs the following message:

[INFO] ------------------------------------------------------------------------
[INFO] Building maven-find-plugin
[INFO]    task-segment: [clean, install]
[INFO] ------------------------------------------------------------------------

The corresponding line in 
org.apache.maven.lifecycle.DefaultLifecycleExecutor:executeTaskSegments()  is 
following:

getLogger().info("Building " + rootProject.getName());

How about the following:

getLogger().info("Building " + rootProject.getGroupId() + ":" + 
rootProject.getArtifactId());

I'd prefer an exact  <groupId>:<artifactId> rather than just a <name>





-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: 
http://jira.codehaus.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

Reply via email to