blob: fae42b1bf3627b12dc977e083cbbcbab6d3bbf25 [file] [log] [blame]
Stuart McCulloch26e7a5a2011-10-17 10:31:43 +00001package aQute.bnd.annotation;
2
3import java.lang.annotation.*;
4
5@Retention(RetentionPolicy.CLASS)
6@Target({ElementType.PACKAGE})
7public @interface Version {
8 String value();
9}