name.remal.gradle_plugins.toolkit.testkit.MinSupportedJavaVersion Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of testkit Show documentation
Show all versions of testkit Show documentation
Remal Gradle plugins: toolkit: testkit
package name.remal.gradle_plugins.toolkit.testkit;
import static java.lang.annotation.ElementType.ANNOTATION_TYPE;
import static java.lang.annotation.ElementType.METHOD;
import static java.lang.annotation.ElementType.TYPE;
import static java.lang.annotation.RetentionPolicy.RUNTIME;
import java.lang.annotation.Documented;
import java.lang.annotation.Inherited;
import java.lang.annotation.Retention;
import java.lang.annotation.Target;
import name.remal.gradle_plugins.toolkit.testkit.internal.MinSupportedJavaVersionExtension;
import org.junit.jupiter.api.extension.ExtendWith;
@ExtendWith(MinSupportedJavaVersionExtension.class)
@Target({TYPE, METHOD, ANNOTATION_TYPE})
@Retention(RUNTIME)
@Inherited
@Documented
public @interface MinSupportedJavaVersion {
int value();
}