com.mycila.maven.plugin.license.LicenseCheckMojo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of license-maven-plugin Show documentation
Show all versions of license-maven-plugin Show documentation
Maven 2 plugin to check and update license headers in source files
The newest version!
/*
* Copyright (C) 2008-2024 Mycila ([email protected])
*
* 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
*
* https://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 com.mycila.maven.plugin.license;
import com.mycila.maven.plugin.license.dependencies.AggregateLicensePolicyEnforcer;
import com.mycila.maven.plugin.license.dependencies.LicenseMap;
import com.mycila.maven.plugin.license.dependencies.LicensePolicy;
import com.mycila.maven.plugin.license.dependencies.LicensePolicyEnforcerResult;
import com.mycila.maven.plugin.license.dependencies.MavenProjectLicenses;
import com.mycila.maven.plugin.license.document.Document;
import com.mycila.maven.plugin.license.header.Header;
import org.apache.maven.artifact.Artifact;
import org.apache.maven.plugin.MojoExecutionException;
import org.apache.maven.plugin.MojoFailureException;
import org.apache.maven.plugins.annotations.LifecyclePhase;
import org.apache.maven.plugins.annotations.Mojo;
import org.apache.maven.plugins.annotations.Parameter;
import java.io.File;
import java.util.Collection;
import java.util.Map;
import java.util.Set;
import java.util.concurrent.ConcurrentLinkedQueue;
import java.util.stream.Collectors;
/**
* Check if the source files of the project have a valid license header.
*/
@Mojo(name = "check", defaultPhase = LifecyclePhase.VERIFY, threadSafe = true)
public final class LicenseCheckMojo extends AbstractLicenseMojo {
@Parameter(property = "license.errorMessage", defaultValue = "Some files do not have the expected license header. Run license:format to update them.")
public String errorMessage = "Some files do not have the expected license header. Run license:format to update them.";
public final Collection missingHeaders = new ConcurrentLinkedQueue<>();
@Override
public void execute() throws MojoExecutionException, MojoFailureException {
report = new Report(reportFormat, Report.Action.CHECK, project, clock, reportSkipped);
if (!skip) {
getLog().info("Checking licenses...");
}
missingHeaders.clear();
AbstractCallback callback = new AbstractCallback() {
@Override
public void onHeaderNotFound(Document document, Header header) {
if (skipExistingHeaders) {
document.parseHeader();
if (document.headerDetected()) {
debug("Existing header in: %s", document.getFilePath());
report.add(document.getFile(), Report.Result.PRESENT);
return;
}
}
warn("Missing header in: %s", document.getFilePath());
missingHeaders.add(document.getFile());
report.add(document.getFile(), Report.Result.MISSING);
}
@Override
public void onExistingHeader(Document document, Header header) {
debug("Header OK in: %s", document.getFilePath());
report.add(document.getFile(), Report.Result.PRESENT);
}
};
if (dependencyEnforce) {
//TODO(rremer) config-driven factory of the LicenseMap implementation
final LicenseMap licenseMap = new MavenProjectLicenses(session, project, dependencyGraphBuilder, projectBuilder, dependencyScopes, getLog());
final AggregateLicensePolicyEnforcer enforcer = new AggregateLicensePolicyEnforcer(dependencyPolicies);
final Map licenseResult = enforcer.apply(licenseMap);
final Set deniedLicenseResult = licenseResult.values().stream()
.filter(result -> result.getRuling().equals(LicensePolicy.Rule.DENY))
.collect(Collectors.toSet());
if (!deniedLicenseResult.isEmpty()) {
final StringBuilder licenseExceptionMsg = new StringBuilder(dependencyExceptionMessage);
deniedLicenseResult.stream().forEach(result -> {
licenseExceptionMsg.append(System.lineSeparator());
licenseExceptionMsg.append(result);
});
throw new MojoExecutionException(licenseExceptionMsg.toString());
}
}
execute(callback);
if (!missingHeaders.isEmpty()) {
if (failIfMissing) {
throw new MojoExecutionException(errorMessage);
}
getLog().warn(errorMessage);
}
callback.checkUnknown();
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy