org.apache.maven.plugins.dependency.fromDependencies.UnpackDependenciesMojo Maven / Gradle / Ivy
/*
* 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.
*/
package org.apache.maven.plugins.dependency.fromDependencies;
import java.io.File;
import org.apache.maven.artifact.Artifact;
import org.apache.maven.plugin.MojoExecutionException;
import org.apache.maven.plugins.annotations.Component;
import org.apache.maven.plugins.annotations.LifecyclePhase;
import org.apache.maven.plugins.annotations.Mojo;
import org.apache.maven.plugins.annotations.Parameter;
import org.apache.maven.plugins.annotations.ResolutionScope;
import org.apache.maven.plugins.dependency.utils.DependencyStatusSets;
import org.apache.maven.plugins.dependency.utils.DependencyUtil;
import org.apache.maven.plugins.dependency.utils.UnpackUtil;
import org.apache.maven.plugins.dependency.utils.filters.MarkerFileFilter;
import org.apache.maven.plugins.dependency.utils.markers.DefaultFileMarkerHandler;
import org.apache.maven.shared.artifact.filter.collection.ArtifactsFilter;
import org.codehaus.plexus.components.io.filemappers.FileMapper;
/**
* Goal that unpacks the project dependencies from the repository to a defined location.
*
* @author Brian Fox
* @since 1.0
*/
// CHECKSTYLE_OFF: LineLength
@Mojo(
name = "unpack-dependencies",
requiresDependencyResolution = ResolutionScope.TEST,
defaultPhase = LifecyclePhase.PROCESS_SOURCES,
threadSafe = true)
// CHECKSTYLE_ON: LineLength
public class UnpackDependenciesMojo extends AbstractFromDependenciesMojo {
@Component
private UnpackUtil unpackUtil;
/**
* A comma separated list of file patterns to include when unpacking the artifact. i.e.
* **/*.xml,**/*.properties
NOTE: Excludes patterns override the includes. (component code =
* return isIncluded( name ) AND !isExcluded( name );
)
*
* @since 2.0
*/
@Parameter(property = "mdep.unpack.includes")
private String includes;
/**
* A comma separated list of file patterns to exclude when unpacking the artifact. i.e.
* **/*.xml,**/*.properties
NOTE: Excludes patterns override the includes. (component code =
* return isIncluded( name ) AND !isExcluded( name );
)
*
* @since 2.0
*/
@Parameter(property = "mdep.unpack.excludes")
private String excludes;
/**
* ignore to set file permissions when unpacking a dependency
*
* @since 2.7
*/
@Parameter(property = "dependency.ignorePermissions", defaultValue = "false")
private boolean ignorePermissions;
/**
* Encoding of artifacts.
*
* @since 3.0
*/
@Parameter(property = "mdep.unpack.encoding")
private String encoding;
/**
* {@link FileMapper}s to be used for rewriting each target path, or {@code null} if no rewriting shall happen.
*
* @since 3.1.2
*/
@Parameter(property = "mdep.unpack.filemappers")
private FileMapper[] fileMappers;
/**
* 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 #getDependencySets(boolean)
*/
@Override
protected void doExecute() throws MojoExecutionException {
DependencyStatusSets dss = getDependencySets(this.failOnMissingClassifierArtifact);
for (Artifact artifact : dss.getResolvedDependencies()) {
File destDir = DependencyUtil.getFormattedOutputDirectory(
useSubDirectoryPerScope,
useSubDirectoryPerType,
useSubDirectoryPerArtifact,
useRepositoryLayout,
stripVersion,
stripType,
outputDirectory,
artifact);
unpackUtil.unpack(
artifact.getFile(),
artifact.getType(),
destDir,
getIncludes(),
getExcludes(),
getEncoding(),
ignorePermissions,
getFileMappers(),
getLog());
DefaultFileMarkerHandler handler = new DefaultFileMarkerHandler(artifact, this.markersDirectory);
handler.setMarker();
}
for (Artifact artifact : dss.getSkippedDependencies()) {
getLog().info(artifact.getId() + " already exists in destination.");
}
}
@Override
protected ArtifactsFilter getMarkedArtifactFilter() {
return new MarkerFileFilter(
this.overWriteReleases,
this.overWriteSnapshots,
this.overWriteIfNewer,
new DefaultFileMarkerHandler(this.markersDirectory));
}
/**
* @return Returns a comma separated list of excluded items
*/
public String getExcludes() {
return DependencyUtil.cleanToBeTokenizedString(this.excludes);
}
/**
* @param excludes A comma separated list of items to exclude i.e. **\/*.xml, **\/*.properties
*/
public void setExcludes(String excludes) {
this.excludes = excludes;
}
/**
* @return Returns a comma separated list of included items
*/
public String getIncludes() {
return DependencyUtil.cleanToBeTokenizedString(this.includes);
}
/**
* @param includes A comma separated list of items to include i.e. **\/*.xml, **\/*.properties
*/
public void setIncludes(String includes) {
this.includes = includes;
}
/**
* @param encoding The encoding to set.
* @since 3.0
*/
public void setEncoding(String encoding) {
this.encoding = encoding;
}
/**
* @return Returns the encoding.
* @since 3.0
*/
public String getEncoding() {
return this.encoding;
}
/**
* @return {@link FileMapper}s to be used for rewriting each target path, or {@code null} if no rewriting shall
* happen.
*
* @since 3.1.2
*/
public FileMapper[] getFileMappers() {
return this.fileMappers;
}
/**
* @param fileMappers {@link FileMapper}s to be used for rewriting each target path, or {@code null} if no
* rewriting shall happen.
*
* @since 3.1.2
*/
public void setFileMappers(FileMapper[] fileMappers) {
this.fileMappers = fileMappers;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy