[MNG-4475] Transitive Dependency Resolution silently fails if parent pom cannot be retrieved from repository

git-svn-id: https://svn.apache.org/repos/asf/maven/maven-3/trunk@885804 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Benjamin Bentmann 2009-12-01 15:46:18 +00:00
parent 269c956ea6
commit 705edc524a
1 changed files with 4 additions and 1 deletions

View File

@ -581,7 +581,10 @@ public class MavenMetadataSource
}
else
{
message = "Invalid artifact metadata for " + relocatedArtifact.getId();
message =
"Invalid artifact metadata for " + relocatedArtifact.getId()
+ ", transitive dependencies (if any) will not be available"
+ ", enable debug logging for more details";
}
if ( logger.isDebugEnabled() )