com.google.code.mojo.license.LicenseFormatMojo 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;
/**
* Reformat files with a missing header to add it
*
* @author Mathieu Carbou ([email protected])
* @goal format
*/
public final class LicenseFormatMojo extends AbstractLicenseMojo {
/**
* Wheter to treat multi-modules projects as only one project (true) or treat multi-module projects separately
* (false, by default)
*
* @parameter expression="${license.dryRun}" default-value="false"
*/
protected boolean dryRun = false;
/**
* Wheter to skip file where a header has been detected
*
* @parameter expression="${license.skipExistingHeaders}" default-value="false"
*/
protected boolean skipExistingHeaders = false;
public void execute() throws MojoExecutionException, MojoFailureException {
getLog().info("Updating license headers...");
execute(new Callback() {
public void onHeaderNotFound(Document document, Header header) {
document.parseHeader();
if (document.headerDetected()) {
if (skipExistingHeaders) {
debug("Keeping license header in: %s", document.getFile());
return;
} else
document.removeHeader();
}
info("Updating license header in: %s", document.getFile());
document.updateHeader(header);
if (!dryRun) {
document.save();
} else {
String name = document.getFile().getName() + ".licensed";
File copy = new File(document.getFile().getParentFile(), name);
info("Result saved to: %s", copy);
document.saveTo(copy);
}
}
public void onExistingHeader(Document document, Header header) {
debug("Header OK in: %s", document.getFile());
}
});
}
}