blob: 4fe1c562891b356face024ed9392de574014213a [file] [log] [blame]
Stuart McCullochf3173222012-06-07 21:57:32 +00001package aQute.bnd.annotation;
2
3import java.lang.annotation.*;
4
5@Retention(RetentionPolicy.CLASS)
Stuart McCulloch4482c702012-06-15 13:27:53 +00006@Target({
7 ElementType.PACKAGE
8})
Stuart McCullochf3173222012-06-07 21:57:32 +00009public @interface Version {
10 String value();
11}