blob: a90c250f328e11525634a57da0c174f8309e954c [file] [log] [blame]
Stuart McCullochf3173222012-06-07 21:57:32 +00001package aQute.bnd.annotation;
2
3import java.lang.annotation.*;
4
Stuart McCulloch5515a832012-07-22 00:19:13 +00005@Documented
Stuart McCullochf3173222012-06-07 21:57:32 +00006@Retention(RetentionPolicy.CLASS)
Stuart McCulloch4482c702012-06-15 13:27:53 +00007@Target({
8 ElementType.PACKAGE
9})
Stuart McCullochf3173222012-06-07 21:57:32 +000010public @interface Version {
11 String value();
12}