Stuart McCulloch | bb01437 | 2012-06-07 21:57:32 +0000 | [diff] [blame] | 1 | package aQute.bnd.annotation; |
| 2 | |
| 3 | import java.lang.annotation.*; |
| 4 | |
Stuart McCulloch | 4b9de8e | 2012-07-22 00:19:13 +0000 | [diff] [blame] | 5 | @Documented |
Stuart McCulloch | bb01437 | 2012-06-07 21:57:32 +0000 | [diff] [blame] | 6 | @Retention(RetentionPolicy.CLASS) |
Stuart McCulloch | 2286f23 | 2012-06-15 13:27:53 +0000 | [diff] [blame] | 7 | @Target({ |
| 8 | ElementType.PACKAGE |
| 9 | }) |
Stuart McCulloch | bb01437 | 2012-06-07 21:57:32 +0000 | [diff] [blame] | 10 | public @interface Version { |
| 11 | String value(); |
| 12 | } |