blob: 13b3a5177f569f1a2d9cb1faf1b823aec83f8951 [file] [log] [blame]
package org.apache.maven.shared.dependency.graph.internal;
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
import org.apache.maven.artifact.resolver.filter.ArtifactFilter;
import org.apache.maven.project.MavenProject;
import org.apache.maven.project.ProjectBuildingRequest;
import org.apache.maven.shared.dependency.graph.DependencyCollectorBuilder;
import org.apache.maven.shared.dependency.graph.DependencyCollectorBuilderException;
import org.apache.maven.shared.dependency.graph.DependencyNode;
import org.codehaus.plexus.PlexusConstants;
import org.codehaus.plexus.PlexusContainer;
import org.codehaus.plexus.component.annotations.Component;
import org.codehaus.plexus.component.repository.exception.ComponentLookupException;
import org.codehaus.plexus.context.Context;
import org.codehaus.plexus.context.ContextException;
import org.codehaus.plexus.logging.AbstractLogEnabled;
import org.codehaus.plexus.personality.plexus.lifecycle.phase.Contextualizable;
/**
* Default project dependency raw dependency collector API, providing an abstraction layer against Maven 3 and Maven
* 3.1+ particular Aether implementations.
*
* @author Gabriel Belingueres
* @since 3.1.0
*/
@Component( role = DependencyCollectorBuilder.class )
public class DefaultDependencyCollectorBuilder
extends AbstractLogEnabled
implements DependencyCollectorBuilder, Contextualizable
{
protected PlexusContainer container;
@Override
public DependencyNode collectDependencyGraph( ProjectBuildingRequest buildingRequest, ArtifactFilter filter )
throws DependencyCollectorBuilderException
{
try
{
String hint = isMaven31() ? "maven31" : "maven3";
DependencyCollectorBuilder effectiveGraphBuilder =
(DependencyCollectorBuilder) container.lookup( DependencyCollectorBuilder.class.getCanonicalName(),
hint );
if ( getLogger().isDebugEnabled() )
{
MavenProject project = buildingRequest.getProject();
getLogger().debug( "building " + hint + " RAW dependency tree for " + project.getId() + " with "
+ effectiveGraphBuilder.getClass().getSimpleName() );
}
return effectiveGraphBuilder.collectDependencyGraph( buildingRequest, filter );
}
catch ( ComponentLookupException e )
{
throw new DependencyCollectorBuilderException( e.getMessage(), e );
}
}
/**
* @return true if the current Maven version is Maven 3.1.
*/
protected static boolean isMaven31()
{
return canFindCoreClass( "org.eclipse.aether.artifact.Artifact" ); // Maven 3.1 specific
}
private static boolean canFindCoreClass( String className )
{
try
{
Thread.currentThread().getContextClassLoader().loadClass( className );
return true;
}
catch ( ClassNotFoundException e )
{
return false;
}
}
/**
* Injects the Plexus content.
*
* @param context Plexus context to inject.
* @throws ContextException if the PlexusContainer could not be located.
*/
@Override
public void contextualize( Context context )
throws ContextException
{
container = (PlexusContainer) context.get( PlexusConstants.PLEXUS_KEY );
}
}