com.liferay.source.formatter.maven.FormatSourceMojo Maven / Gradle / Ivy
/**
* Copyright (c) 2000-present Liferay, Inc. All rights reserved.
*
* This library is free software; you can redistribute it and/or modify it under
* the terms of the GNU Lesser General Public License as published by the Free
* Software Foundation; either version 2.1 of the License, or (at your option)
* any later version.
*
* This library is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
* FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
* details.
*/
package com.liferay.source.formatter.maven;
import com.liferay.source.formatter.SourceFormatter;
import com.liferay.source.formatter.SourceFormatterArgs;
import java.util.Arrays;
import java.util.List;
import java.util.Map;
import org.apache.maven.plugin.AbstractMojo;
import org.apache.maven.plugin.MojoExecutionException;
/**
* Formats Liferay sources.
*
* @author Raymond Augé
* @goal format
*/
public class FormatSourceMojo extends AbstractMojo {
@Override
public void execute() throws MojoExecutionException {
try {
@SuppressWarnings("rawtypes")
Map pluginContext = getPluginContext();
SourceFormatter sourceFormatter = new SourceFormatter(
_sourceFormatterArgs);
sourceFormatter.format();
List modifiedFileNames =
sourceFormatter.getModifiedFileNames();
pluginContext.put(
SourceFormatterArgs.OUTPUT_KEY_MODIFIED_FILES,
modifiedFileNames);
}
catch (Exception e) {
throw new MojoExecutionException(e.getMessage(), e);
}
}
/**
* @parameter
*/
public void setAutoFix(boolean autoFix) {
_sourceFormatterArgs.setAutoFix(autoFix);
}
/**
* @parameter
*/
public void setBaseDir(String baseDir) {
_sourceFormatterArgs.setBaseDirName(baseDir);
}
/**
* @parameter
*/
public void setFileNames(String[] fileNames) {
_sourceFormatterArgs.setFileNames(Arrays.asList(fileNames));
}
/**
* @parameter
*/
public void setFormatCurrentBranch(boolean formatCurrentBranch) {
_sourceFormatterArgs.setFormatCurrentBranch(formatCurrentBranch);
}
/**
* @parameter
*/
public void setFormatLatestAuthor(boolean formatLatestAuthor) {
_sourceFormatterArgs.setFormatLatestAuthor(formatLatestAuthor);
}
/**
* @parameter
*/
public void setFormatLocalChanges(boolean formatLocalChanges) {
_sourceFormatterArgs.setFormatLocalChanges(formatLocalChanges);
}
/**
* @parameter
*/
public void setGitWorkingBranchName(String gitWorkingBranchName) {
_sourceFormatterArgs.setGitWorkingBranchName(gitWorkingBranchName);
}
/**
* @parameter
*/
public void setIncludeSubrepositories(boolean includeSubrepositories) {
_sourceFormatterArgs.setIncludeSubrepositories(includeSubrepositories);
}
/**
* @parameter
*/
public void setMaxLineLength(int maxLineLength) {
_sourceFormatterArgs.setMaxLineLength(maxLineLength);
}
/**
* @parameter
*/
public void setPrintErrors(boolean printErrors) {
_sourceFormatterArgs.setPrintErrors(printErrors);
}
/**
* @parameter
*/
public void setProcessorThreadCount(int processorThreadCount) {
_sourceFormatterArgs.setProcessorThreadCount(processorThreadCount);
}
/**
* @parameter
*/
public void setShowDebugInformation(boolean showDebugInformation) {
_sourceFormatterArgs.setShowDebugInformation(showDebugInformation);
}
/**
* @parameter
*/
public void setShowDocumentation(boolean showDocumentation) {
_sourceFormatterArgs.setShowDocumentation(showDocumentation);
}
/**
* @parameter
*/
public void setShowStatusUpdates(boolean showStatusUpdates) {
_sourceFormatterArgs.setShowStatusUpdates(showStatusUpdates);
}
/**
* @parameter
*/
public void setThrowException(boolean throwException) {
_sourceFormatterArgs.setThrowException(throwException);
}
private final SourceFormatterArgs _sourceFormatterArgs =
new SourceFormatterArgs();
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy