com.google.code.mojo.license.LicenseCheckMojo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of maven-license-plugin Show documentation
Show all versions of maven-license-plugin Show documentation
Maven 2 plugin to check and update license headers in source files
/**
* Copyright (C) 2008 http://code.google.com/p/maven-license-plugin/
*
* 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 com.google.code.mojo.license;
import com.google.code.mojo.license.document.Document;
import com.google.code.mojo.license.header.Header;
import org.apache.maven.plugin.MojoExecutionException;
import org.apache.maven.plugin.MojoFailureException;
import java.io.File;
import java.util.Collection;
import java.util.concurrent.ConcurrentLinkedQueue;
/**
* Check if the source files of the project have a valid license header
*
* @author Mathieu Carbou ([email protected])
* @goal check
* @phase verify
*/
public final class LicenseCheckMojo extends AbstractLicenseMojo {
/**
* Whether to fail the build if some file miss license header
*
* @parameter expression="${license.failIfMissing}" default-value="true"
*/
protected boolean failIfMissing = true;
public final Collection missingHeaders = new ConcurrentLinkedQueue();
public void execute() throws MojoExecutionException, MojoFailureException {
getLog().info("Checking licenses...");
missingHeaders.clear();
execute(new Callback() {
public void onHeaderNotFound(Document document, Header header) {
info("Missing header in: %s", document.getFile());
missingHeaders.add(document.getFile());
}
public void onExistingHeader(Document document, Header header) {
debug("Header OK in: %s", document.getFile());
}
});
if (!missingHeaders.isEmpty()) {
if (failIfMissing) {
throw new MojoExecutionException("Some files do not have the expected license header");
} else {
getLog().warn("Some files do not have the expected license header");
}
}
}
}