pluginapi/src/main/java/xyz/etztech/core/maven/MavenLibraries.java

15 lines
264 B
Java

package xyz.etztech.core.maven;
import java.lang.annotation.*;
/**
* Allows MavenLibrary to be repeatable
*/
@Documented
@Target(ElementType.TYPE)
@Retention(RetentionPolicy.RUNTIME)
public @interface MavenLibraries {
MavenLibrary[] value() default {};
}