This is an automated email from the ASF dual-hosted git repository. kwin pushed a commit to branch bugfix/make-annotations-scope-provided in repository https://gitbox.apache.org/repos/asf/jackrabbit-oak.git
commit 6e110782be34701f9b9a16359784a0df3ea37704 Author: Konrad Windszus <[email protected]> AuthorDate: Thu Jun 15 08:36:47 2023 +0200 OAK-10305: make annotation dependencies have scope "provided" --- oak-core/pom.xml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/oak-core/pom.xml b/oak-core/pom.xml index 763d844121..6b77df6985 100644 --- a/oak-core/pom.xml +++ b/oak-core/pom.xml @@ -229,10 +229,12 @@ <dependency> <groupId>org.osgi</groupId> <artifactId>org.osgi.service.component.annotations</artifactId> + <scope>provided</scope> </dependency> <dependency> <groupId>org.osgi</groupId> <artifactId>org.osgi.service.metatype.annotations</artifactId> + <scope>provided</scope> </dependency> <!-- Dependencies to other Oak components -->
