org.apache.maven.plugins.gpg.AbstractGpgMojoExtension Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tycho-gpg-plugin Show documentation
Show all versions of tycho-gpg-plugin Show documentation
A plugin to produce GPG signatures for p2 artifacts
The newest version!
/*******************************************************************************
* Copyright (c) 2021 Red Hat Inc. and others.
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*******************************************************************************/
package org.apache.maven.plugins.gpg;
import org.apache.maven.plugin.MojoExecutionException;
import org.apache.maven.plugin.MojoFailureException;
import org.apache.maven.project.MavenProject;
public abstract class AbstractGpgMojoExtension extends AbstractGpgMojo {
@Override
protected ProxySignerWithPublicKeyAccess newSigner(MavenProject project)
throws MojoExecutionException, MojoFailureException {
return new ProxySignerWithPublicKeyAccess(super.newSigner(project));
}
}