Stuart McCulloch | bb01437 | 2012-06-07 21:57:32 +0000 | [diff] [blame^] | 1 | package aQute.bnd.annotation; |
2 | |||||
3 | import java.lang.annotation.*; | ||||
4 | |||||
5 | @Retention(RetentionPolicy.CLASS) | ||||
6 | @Target({ElementType.PACKAGE}) | ||||
7 | public @interface Version { | ||||
8 | String value(); | ||||
9 | } |