This is an automated email from the ASF dual-hosted git repository. pkarwasz pushed a commit to branch bnd in repository https://gitbox.apache.org/repos/asf/logging-log4j2.git
commit 44988a4cf24ef255265d59f04b74f9e60b356d95 Author: Piotr P. Karwasz <[email protected]> AuthorDate: Tue Sep 26 09:29:24 2023 +0200 Add OSGi annotation dependencies --- pom.xml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/pom.xml b/pom.xml index 1215c2d64e..cb24b8d7c3 100644 --- a/pom.xml +++ b/pom.xml @@ -1316,6 +1316,29 @@ </dependencies> </dependencyManagement> + <!-- Common annotations used in all the modules --> + <dependencies> + + <dependency> + <groupId>biz.aQute.bnd</groupId> + <artifactId>biz.aQute.bnd.annotation</artifactId> + <scope>provided</scope> + </dependency> + + <dependency> + <groupId>org.osgi</groupId> + <artifactId>osgi.annotation</artifactId> + <scope>provided</scope> + </dependency> + + <dependency> + <groupId>org.osgi</groupId> + <artifactId>org.osgi.annotation.bundle</artifactId> + <scope>provided</scope> + </dependency> + + </dependencies> + <repositories> <repository> <releases>
