<dependency>
<groupId>io.sundr.builder</groupId>
<artifactId>sundrio-annotations-builder</artifactId>
<version>VERSION</version>
</dependency>
import io.sundr.builder.annotations.Buildable;
@Buildable
public @interface MyAnnotation {
String value();
int count() default 1;
}
mvn compile
@MyAnnotation(value = "Hello World", count = 5)
public class MyClass {
}