Improved error message when pom parent ids do not match.

git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@696696 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Britton Isbell 2008-09-18 16:32:51 +00:00
parent 6282ce0b0e
commit 1d10a62086
1 changed files with 2 additions and 2 deletions

View File

@ -307,8 +307,8 @@ public final class DefaultProjectBuilder
if ( !parentDomainModel.matchesParent( domainModel.getModel().getParent() ) )
{
logger.warn( "Parent pom ids do not match: Parent File = " + parentFile.getAbsolutePath() +
": Child ID = " + domainModel.getModel().getId() );
logger.warn( "Parent pom ids do not match: Parent File = " + parentFile.getAbsolutePath() + ", Parent ID = "
+ parentDomainModel.getId() + ": Child ID = " + domainModel.getId() );
}
domainModels.add( parentDomainModel );