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) | ||||
Stuart McCulloch | 2286f23 | 2012-06-15 13:27:53 +0000 | [diff] [blame^] | 6 | @Target({ |
7 | ElementType.PACKAGE | ||||
8 | }) | ||||
Stuart McCulloch | bb01437 | 2012-06-07 21:57:32 +0000 | [diff] [blame] | 9 | public @interface Version { |
10 | String value(); | ||||
11 | } |