You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@maven.apache.org by "Evgeny Goldin (JIRA)" <ji...@codehaus.org> on 2009/06/27 22:19:05 UTC

[jira] Created: (MNG-4220) When building a module - display it's : rather than just a

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