mirror of https://github.com/apache/maven.git
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:
parent
6282ce0b0e
commit
1d10a62086
|
@ -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 );
|
||||
|
|
Loading…
Reference in New Issue