org.revapi.maven.CheckForkMojo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of revapi-maven-plugin Show documentation
Show all versions of revapi-maven-plugin Show documentation
Maven integration for Revapi.
package org.revapi.maven;
import org.apache.maven.plugins.annotations.Execute;
import org.apache.maven.plugins.annotations.LifecyclePhase;
import org.apache.maven.plugins.annotations.Mojo;
import org.apache.maven.plugins.annotations.ResolutionScope;
/**
* @author Lukas Krejci
* @since 0.7.0
*/
@Mojo(name = "check-fork", threadSafe = true,
requiresDependencyCollection = ResolutionScope.COMPILE_PLUS_RUNTIME)
@Execute(phase = LifecyclePhase.PACKAGE)
public class CheckForkMojo extends CheckMojo {
}