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

io.snyk.snyk_maven_plugin.goal.ComposedMojo Maven / Gradle / Ivy

Go to download

Tests and monitors your Maven dependencies for vulnerabilities. This plugin is officially maintained by Snyk.io

The newest version!
package io.snyk.snyk_maven_plugin.goal;

import org.apache.maven.plugin.AbstractMojo;
import org.apache.maven.plugin.MojoExecutionException;
import org.apache.maven.plugin.MojoFailureException;

public abstract class ComposedMojo extends AbstractMojo {

    @Override
    public void execute() throws MojoFailureException, MojoExecutionException {
        getExecutor().execute();
    }

    public abstract MojoExecutor getExecutor();

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy