You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@sling.apache.org by di...@apache.org on 2022/02/01 09:57:33 UTC

[sling-org-apache-sling-sitemap] branch master updated: SLING-11094: explicitly set all dependencies to provided scope

This is an automated email from the ASF dual-hosted git repository.

diru pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/sling-org-apache-sling-sitemap.git


The following commit(s) were added to refs/heads/master by this push:
     new 0065e12  SLING-11094: explicitly set all dependencies to provided scope
0065e12 is described below

commit 0065e123f4042755126b963e6d3bb415c8a9b161
Author: Dirk Rudolph <di...@apache.org>
AuthorDate: Tue Feb 1 10:57:26 2022 +0100

    SLING-11094: explicitly set all dependencies to provided scope
---
 pom.xml | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/pom.xml b/pom.xml
index 75903f2..72463d1 100644
--- a/pom.xml
+++ b/pom.xml
@@ -129,15 +129,18 @@
         <dependency>
             <groupId>org.osgi</groupId>
             <artifactId>org.osgi.service.event</artifactId>
+            <scope>provided</scope>
         </dependency>
         <dependency>
             <groupId>org.osgi</groupId>
             <artifactId>org.osgi.util.tracker</artifactId>
+            <scope>provided</scope>
         </dependency>
         <dependency>
             <groupId>org.apache.jackrabbit</groupId>
             <artifactId>jackrabbit-jcr-commons</artifactId>
             <version>2.21.3</version>
+            <scope>provided</scope>
         </dependency>
         <dependency>
             <groupId>org.apache.sling</groupId>
@@ -167,6 +170,7 @@
             <groupId>org.apache.sling</groupId>
             <artifactId>org.apache.sling.commons.metrics</artifactId>
             <version>1.2.8</version>
+            <scope>provided</scope>
         </dependency>
         <dependency>
             <groupId>org.apache.felix</groupId>