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