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 27dbe640824686d985f049e5f2865c067cec289e 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 6e9dd8de4c..7c4eb65d50 100644 --- a/pom.xml +++ b/pom.xml @@ -1314,6 +1314,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>
