
org.kantega.reststop.maven.dist.PackagePluginMojo Maven / Gradle / Ivy
The newest version!
/*
* Copyright 2018 Kantega AS
*
* 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 org.kantega.reststop.maven.dist;
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 org.apache.maven.plugins.annotations.ResolutionScope;
import org.apache.maven.project.MavenProject;
import org.apache.maven.project.MavenProjectHelper;
import org.eclipse.aether.repository.LocalRepository;
import org.eclipse.aether.repository.LocalRepositoryManager;
import java.io.File;
/**
*
*/
@Mojo(name = "package-plugins",
defaultPhase = LifecyclePhase.PREPARE_PACKAGE,
requiresDependencyResolution = ResolutionScope.COMPILE)
public class PackagePluginMojo extends AbstractDistMojo {
@Parameter(defaultValue = "${project.build.directory/reststop/warpack/WEB-INF/reststop}")
private File packageDirectory;
@Override
public void execute() throws MojoExecutionException, MojoFailureException {
File repository = new File(packageDirectory, "repository");
repository.mkdirs();
LocalRepository repo = new LocalRepository(repository);
LocalRepositoryManager manager = repoSystem.newLocalRepositoryManager(repoSession, repo);
copyPlugins(getPlugins(), manager);
writePluginsXml(new File(packageDirectory, "plugins.xml"), manager, createPluginXmlDocument(true));
}
@Override
protected void attachPackage(MavenProjectHelper mavenProjectHelper, MavenProject mavenProject) throws MojoFailureException {
}
@Override
protected void performPackaging() throws MojoExecutionException {
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy