All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.maven.plugins.gpg.AbstractGpgMojoExtension Maven / Gradle / Ivy

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));
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy