blob: 1bb957ab1f98eea14884ee7f8941d64a95783f30 [file] [log] [blame]
package org.apache.maven.plugin.dependency;
/*
* 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.io.File;
import java.util.Iterator;
import java.util.Set;
import org.apache.maven.artifact.Artifact;
import org.apache.maven.plugin.MojoExecutionException;
import org.apache.maven.plugin.dependency.utils.DependencyStatusSets;
import org.apache.maven.plugin.dependency.utils.DependencyUtil;
import org.apache.maven.plugin.dependency.utils.filters.ArtifactsFilter;
import org.apache.maven.plugin.dependency.utils.filters.MarkerFileFilter;
import org.apache.maven.plugin.dependency.utils.markers.DefaultFileMarkerHandler;
/**
* Goal that unpacks the project dependencies from the repository to a defined
* location.
*
* @goal unpack-dependencies
* @requiresDependencyResolution test
* @phase process-sources
* @author brianf
* @since 1.0
*/
public class UnpackDependenciesMojo
extends AbstractFromDependenciesMojo
{
/**
* Main entry into mojo. This method gets the dependencies and iterates
* through each one passing it to DependencyUtil.unpackFile().
*
* @throws MojoExecutionException
* with a message if an error occurs.
*
* @see #getDependencies
* @see DependencyUtil#unpackFile(Artifact, File, File, ArchiverManager,
* Log)
*/
public void execute()
throws MojoExecutionException
{
DependencyStatusSets dss = getDependencySets( true );
Set artifacts = dss.getResolvedDependencies();
for ( Iterator i = artifacts.iterator(); i.hasNext(); )
{
Artifact artifact = (Artifact) i.next();
File destDir = DependencyUtil.getFormattedOutputDirectory( this.useSubDirectoryPerType,
this.useSubDirectoryPerArtifact,
this.outputDirectory, artifact );
unpack( artifact.getFile(), destDir );
DefaultFileMarkerHandler handler = new DefaultFileMarkerHandler( artifact, this.markersDirectory );
handler.setMarker();
}
artifacts = dss.getSkippedDependencies();
for ( Iterator i = artifacts.iterator(); i.hasNext(); )
{
Artifact artifact = (Artifact) i.next();
getLog().info( artifact.getFile().getName() + " already exists in destination." );
}
}
protected ArtifactsFilter getMarkedArtifactFilter()
{
return new MarkerFileFilter( this.overWriteReleases, this.overWriteSnapshots, this.overWriteIfNewer,
new DefaultFileMarkerHandler( this.markersDirectory ) );
}
}