net.nicoulaj.maven.plugins.checksum.mojo.DependenciesMojo Maven / Gradle / Ivy
/*
* checksum-maven-plugin - http://checksum-maven-plugin.nicoulaj.net
* Copyright © 2010-2018 checksum-maven-plugin contributors
*
* Licensed 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 net.nicoulaj.maven.plugins.checksum.mojo;
import org.apache.maven.artifact.Artifact;
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 java.util.LinkedList;
import java.util.List;
import java.util.Set;
/**
* Compute project dependencies checksum digests and store them in a summary file.
*
* @author Julien Nicoulaud
* @since 1.0
*/
@Mojo(
name = DependenciesMojo.NAME,
defaultPhase = LifecyclePhase.VERIFY,
requiresProject = true,
inheritByDefault = false,
requiresDependencyResolution = ResolutionScope.RUNTIME,
threadSafe = true )
public class DependenciesMojo
extends AbstractChecksumMojo
{
/**
* The mojo name.
*/
public static final String NAME = "dependencies";
/**
* Indicates whether the build will store checksums in separate files (one file per algorithm per artifact).
*
* @since 1.0
*/
@Parameter( defaultValue = "false" )
protected boolean individualFiles;
/**
* The directory where output files will be stored. Leave unset to have each file next to the source file.
*
* @since 1.0
*/
@Parameter( defaultValue = "${project.build.directory}" )
protected String individualFilesOutputDirectory;
/**
* Indicates whether the build will store checksums to a single CSV summary file.
*
* @since 1.0
*/
@Parameter( defaultValue = "true" )
protected boolean csvSummary;
/**
* The name of the summary file created if the option is activated.
*
* @see #csvSummary
* @since 1.0
*/
@Parameter( defaultValue = "dependencies-checksums.csv" )
protected String csvSummaryFile;
/**
* Indicates whether the build will store checksums to a single XML summary file.
*
* @since 1.0
*/
@Parameter( defaultValue = "false" )
protected boolean xmlSummary;
/**
* The name of the summary file created if the option is activated.
*
* @see #xmlSummary
* @since 1.0
*/
@Parameter( defaultValue = "dependencies-checksums.xml" )
protected String xmlSummaryFile;
/**
* Indicates whether the build will store checksums to a single shasum summary file.
*
* @since 1.3
*/
@Parameter( defaultValue = "false" )
protected boolean shasumSummary;
/**
* The name of the summary file created if the option is activated.
*
* @see #shasumSummary
* @since 1.3
*/
@Parameter( defaultValue = "dependencies-checksums.sha" )
protected String shasumSummaryFile;
/**
* The dependency scopes to include.
*
* Allowed values are compile, test, runtime, provided and system.
All scopes are included by default.
*
*
Use the following syntax:
*
<scopes>
* <scope>compile<scope>
* <scope>runtime<scope>
* </scopes>
*
* @since 1.0
*/
@Parameter
protected List scopes;
/**
* The dependency types to include.
*
* All types are included by default.
*
*
Use the following syntax:
*
<types>
* <type>jar<type>
* <type>zip<type>
* </types>
*
* @since 1.0
*/
@Parameter
protected List types;
/**
* Transitive dependencies or only direct dependencies.
*
* @since 1.0
*/
@Parameter( defaultValue = "false" )
protected boolean transitive;
/**
* Constructor.
*/
public DependenciesMojo() {
super(false, true, true);
}
/**
* Build the list of files from which digests should be generated.
*
* The list is composed of the project dependencies.
*
* @return the list of files that should be processed.
*/
@Override
protected List getFilesToProcess()
{
List files = new LinkedList();
@SuppressWarnings("unchecked")
Set artifacts = transitive ? project.getArtifacts() : project.getDependencyArtifacts();
for ( Artifact artifact : artifacts )
{
if ( ( scopes == null || scopes.contains( artifact.getScope() ) ) && ( types == null || types.contains(
artifact.getType() ) ) )
{
files.add( new ChecksumFile( "", artifact.getFile() ) );
}
}
return files;
}
/**
* {@inheritDoc}
*/
@Override
protected boolean isIndividualFiles()
{
return individualFiles;
}
/**
* {@inheritDoc}
*/
@Override
protected String getIndividualFilesOutputDirectory()
{
return individualFilesOutputDirectory;
}
/**
* {@inheritDoc}
*/
@Override
protected boolean isCsvSummary()
{
return csvSummary;
}
/**
* {@inheritDoc}
*/
@Override
protected String getCsvSummaryFile()
{
return csvSummaryFile;
}
/**
* {@inheritDoc}
*/
@Override
protected boolean isXmlSummary()
{
return xmlSummary;
}
/**
* {@inheritDoc}
*/
@Override
protected String getXmlSummaryFile()
{
return xmlSummaryFile;
}
/**
* {@inheritDoc}
*/
@Override
protected boolean isShasumSummary()
{
return shasumSummary;
}
/**
* {@inheritDoc}
*/
@Override
protected String getShasumSummaryFile()
{
return shasumSummaryFile;
}
}