PR: MNG-664

license should be inherited

git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@225534 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Brett Leslie Porter 2005-07-27 15:07:47 +00:00
parent 24e9ecf4a0
commit 3288b82caa
1 changed files with 6 additions and 0 deletions

View File

@ -136,6 +136,12 @@ public class DefaultModelInheritanceAssembler
child.setDevelopers( parent.getDevelopers() );
}
// licenses
if ( child.getLicenses().size() == 0 )
{
child.setLicenses( parent.getLicenses() );
}
// developers
if ( child.getContributors().size() == 0 )
{