com.gitee.starblues.plugin.pack.AbstractPackagerMojo Maven / Gradle / Ivy
The newest version!
/**
* Copyright [2019-Present] [starBlues]
*
* 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.gitee.starblues.plugin.pack;
import lombok.Data;
import lombok.EqualsAndHashCode;
import org.apache.maven.artifact.Artifact;
import org.apache.maven.plugin.MojoExecutionException;
import org.apache.maven.plugin.MojoFailureException;
import org.apache.maven.plugins.annotations.Parameter;
import org.apache.maven.project.MavenProject;
import java.io.File;
import java.util.Set;
/**
* 抽象的重新打包 mojo
*
* @author starBlues
* @since 3.0.0
* @version 3.1.1
*/
@EqualsAndHashCode(callSuper = true)
@Data
public abstract class AbstractPackagerMojo extends AbstractDependencyFilterMojo{
@Parameter(defaultValue = "${project}", readonly = true, required = true)
private MavenProject project;
@Parameter(defaultValue = "${project.build.directory}", required = true)
private File outputDirectory;
@Parameter(property = "spring-brick-packager.mode", defaultValue = "dev", required = true)
private String mode;
@Parameter(property = "spring-brick-packager.skip", defaultValue = "false")
private boolean skip;
@Parameter
private String classifier;
@Parameter(property = "spring-brick-packager.pluginInfo")
private PluginInfo pluginInfo;
@Parameter(property = "spring-brick-packager.loadMainResourcePattern", required = false)
private LoadMainResourcePattern loadMainResourcePattern;
@Parameter(property = "spring-brick-packager.includeSystemScope", defaultValue = "true", required = false)
private Boolean includeSystemScope;
@Override
public final void execute() throws MojoExecutionException, MojoFailureException {
if(Constant.isPom(this.getProject().getPackaging())){
getLog().debug("repackage goal could not be applied to pom project.");
return;
}
if (this.skip) {
getLog().debug("skipping plugin package.");
return;
}
pack();
}
/**
* 打包
* @throws MojoExecutionException MojoExecutionException
* @throws MojoFailureException MojoFailureException
*/
protected abstract void pack() throws MojoExecutionException, MojoFailureException;
public final Set getFilterDependencies() throws MojoExecutionException {
Set artifacts = project.getArtifacts();
return filterDependencies(artifacts, getFilters());
}
public final Set getSourceDependencies() throws MojoExecutionException {
return project.getArtifacts();
}
}