Skip to content

Commit

Permalink
Merge pull request #6037 from maho7791/serviceprov
Browse files Browse the repository at this point in the history
fixes #6036 ServiceProviders annotation
  • Loading branch information
pkriens committed Mar 15, 2024
2 parents cf750fb + 1ddd06d commit c951830
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
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();
}
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
@org.osgi.annotation.bundle.Export
@org.osgi.annotation.versioning.Version("2.0")
@org.osgi.annotation.versioning.Version("2.0.1")
package aQute.bnd.annotation.spi;

0 comments on commit c951830

Please sign in to comment.