o Extended error message

git-svn-id: https://svn.apache.org/repos/asf/maven/maven-3/trunk@830222 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Benjamin Bentmann 2009-10-27 15:04:19 +00:00
parent 21fff93ae9
commit 6ce5060ddc
1 changed files with 2 additions and 1 deletions

View File

@ -576,7 +576,8 @@ public class DefaultModelBuilder
catch ( UnresolvableModelException e )
{
problems.addFatalError( "Non-resolvable parent POM "
+ ModelProblemUtils.toId( groupId, artifactId, version ) + ": " + e.getMessage(), e );
+ ModelProblemUtils.toId( groupId, artifactId, version ) + " for "
+ ModelProblemUtils.toId( childModel ) + ": " + e.getMessage(), e );
throw new ModelBuildingException( problems.getRootModelId(), problems.getProblems() );
}