com.prezi.pride.cli.commands.Group Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pride Show documentation
Show all versions of pride Show documentation
Pride manages multiple Gradle modules as a single Gradle project
package com.prezi.pride.cli.commands;
import java.lang.annotation.Documented;
import java.lang.annotation.Retention;
import java.lang.annotation.Target;
import static java.lang.annotation.ElementType.TYPE;
import static java.lang.annotation.RetentionPolicy.RUNTIME;
@Target(TYPE)
@Retention(RUNTIME)
@Documented
public @interface Group {
String value();
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy