blob: 11a268c255ed8d145fe11fb8f872bdfa2b4cbb77 [file] [log] [blame]
package org.apache.maven.shared.transfer.artifact.deploy.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 java.util.Collection;
import org.apache.maven.artifact.Artifact;
import org.apache.maven.artifact.repository.ArtifactRepository;
import org.apache.maven.project.ProjectBuildingRequest;
import org.apache.maven.shared.transfer.artifact.deploy.ArtifactDeployer;
import org.apache.maven.shared.transfer.artifact.deploy.ArtifactDeployerException;
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.personality.plexus.lifecycle.phase.Contextualizable;
/**
*
*/
@Component( role = ArtifactDeployer.class )
class DefaultArtifactDeployer implements ArtifactDeployer, Contextualizable
{
private PlexusContainer container;
@Override
public void deploy( ProjectBuildingRequest request, Collection<Artifact> mavenArtifacts )
throws ArtifactDeployerException
{
validateParameters( request, mavenArtifacts );
try
{
getMavenArtifactDeployer( request ).deploy( mavenArtifacts );
}
catch ( ComponentLookupException e )
{
throw new ArtifactDeployerException( e.getMessage(), e );
}
}
@Override
public void deploy( ProjectBuildingRequest request, ArtifactRepository remoteRepository,
Collection<Artifact> mavenArtifacts ) throws ArtifactDeployerException
{
validateParameters( request, mavenArtifacts );
try
{
getMavenArtifactDeployer( request ).deploy( remoteRepository, mavenArtifacts );
}
catch ( ComponentLookupException e )
{
throw new ArtifactDeployerException( e.getMessage(), e );
}
}
private void validateParameters( ProjectBuildingRequest request, Collection<Artifact> mavenArtifacts )
{
if ( request == null )
{
throw new IllegalArgumentException( "The parameter request is not allowed to be null." );
}
if ( mavenArtifacts == null )
{
throw new IllegalArgumentException( "The parameter mavenArtifacts is not allowed to be null." );
}
if ( mavenArtifacts.isEmpty() )
{
throw new IllegalArgumentException( "The collection mavenArtifacts is not allowed to be empty." );
}
}
/**
* @return true if the current Maven version is Maven 3.1.
*/
private boolean isMaven31()
{
try
{
// Maven 3.1 specific
Thread.currentThread().getContextClassLoader().loadClass( "org.eclipse.aether.artifact.Artifact" );
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.
*/
public void contextualize( Context context ) throws ContextException
{
container = (PlexusContainer) context.get( PlexusConstants.PLEXUS_KEY );
}
private MavenArtifactDeployer getMavenArtifactDeployer( ProjectBuildingRequest buildingRequest )
throws ComponentLookupException, ArtifactDeployerException
{
if ( isMaven31() )
{
org.eclipse.aether.RepositorySystem repositorySystem = container.lookup(
org.eclipse.aether.RepositorySystem.class );
org.eclipse.aether.RepositorySystemSession session = Invoker.invoke( buildingRequest,
"getRepositorySession" );
return new Maven31ArtifactDeployer( repositorySystem, session );
}
else
{
org.sonatype.aether.RepositorySystem repositorySystem = container.lookup(
org.sonatype.aether.RepositorySystem.class );
org.sonatype.aether.RepositorySystemSession session = Invoker.invoke( buildingRequest,
"getRepositorySession" );
return new Maven30ArtifactDeployer( repositorySystem, session );
}
}
}