io.snyk.snyk_maven_plugin.goal.SnykMonitorMojo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of snyk-maven-plugin Show documentation
Show all versions of snyk-maven-plugin Show documentation
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 io.snyk.snyk_maven_plugin.command.Command;
import org.apache.maven.plugins.annotations.LifecyclePhase;
import org.apache.maven.plugins.annotations.Mojo;
@Mojo(name = "monitor", defaultPhase = LifecyclePhase.INSTALL)
public class SnykMonitorMojo extends SnykMojo {
@Override
public Command getCommand() {
return Command.MONITOR;
}
}