Skip to content

Commit

Permalink
fixes #6036
Browse files Browse the repository at this point in the history
- added PACKAGE as target

Signed-off-by: Mark Hoffmann <m.hoffmann@data-in-motion.biz>
  • Loading branch information
maho7791 committed Feb 16, 2024
1 parent 1b923e2 commit 96cbde2
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,13 +1,16 @@
package aQute.bnd.annotation.spi;

import static java.lang.annotation.ElementType.PACKAGE;
import static java.lang.annotation.ElementType.TYPE;
import static java.lang.annotation.RetentionPolicy.CLASS;

import java.lang.annotation.Retention;
import java.lang.annotation.Target;

@Retention(CLASS)
@Target(TYPE)
@Target({
PACKAGE, TYPE
})
public @interface ServiceProviders {
ServiceProvider[] value();
}

0 comments on commit 96cbde2

Please sign in to comment.