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