-merge changes from archiva-1.0.x branch -r630722

git-svn-id: https://svn.apache.org/repos/asf/maven/archiva/trunk@630750 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Maria Odea B. Ching 2008-02-25 07:38:31 +00:00
parent 64cd5a7455
commit 79947feead
1 changed files with 8 additions and 3 deletions

View File

@ -111,10 +111,15 @@ public class EffectiveProjectModelFilter
// Resolve dependency versions from dependency management.
applyDependencyManagement( effectiveProject );
synchronized ( effectiveProjectCache )
// Do not add project into cache if it contains no groupId and
// version information
if ( project.getGroupId() != null && project.getVersion() != null )
{
DEBUG( "Putting (to cache/projectKey): " + projectKey );
effectiveProjectCache.put( projectKey, effectiveProject );
synchronized ( effectiveProjectCache )
{
DEBUG( "Putting (to cache/projectKey): " + projectKey );
effectiveProjectCache.put( projectKey, effectiveProject );
}
}
// Return what we got.