Uploaded image for project: 'Maven'
  1. Maven
  2. MNG-4275

[regression] Direct relocations no longer log at WARNING level : MNG-3380 conflicts with MNG-1689

    XMLWordPrintableJSON

Details

    • Bug
    • Status: Closed
    • Minor
    • Resolution: Fixed
    • 2.2.0
    • 2.2.1
    • Dependencies
    • None
    • Patch

    Description

      Changes for MNG-3380 [1] to Process relocations before child-nodes are discovered during artifact collection, conflict with MNG-1689 [2] " Only print relocation warnings in standard output for the current pom". This results in a regression where (direct) relocations are no longer logged at WARNING level and are only logged at DEBUG. Direct relocations should be logged at WARNING level.

      @675087 [3] MNG-3380 was applied to DefaultArtifactCollector - the result is that the call to MavenMetadataSource#retrieveRelocatedArtifact() (then retrieveRelocatedProject()) occur before the call to artifact.setDependencyTrail( node.getDependencyTrail() ); in DefaultArtifactCollector. This results in a null list in MavenMetadataSource, which then fails the if-test to log at WARNING level introduced in MNG-1689.

      With a quick inspection I couldn't see the harm in bringing forward the call to:

      artifact.setDependencyTrail( node.getDependencyTrail() )

      , it is already called once when about to throw an exception, and this call can be replaced. Proposed patch makes the setDependencyTrail call earlier, prior to relocation detection.

      See also Nabble post [4].

      [1] http://jira.codehaus.org/browse/MNG-3380
      [2] http://jira.codehaus.org/browse/MNG-1689
      [3] http://svn.apache.org/viewvc?view=rev&revision=675087
      [4] http://www.nabble.com/2.0.9-%3E2.1.0-change-regression-in-relocation-WARNING--td24368186.html

      Attachments

        Activity

          People

            jdcasey John Dennis Casey
            brett_s_r Brett Randall
            Votes:
            0 Vote for this issue
            Watchers:
            1 Start watching this issue

            Dates

              Created:
              Updated:
              Resolved: