You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@sling.apache.org by si...@apache.org on 2019/06/12 08:24:17 UTC

[sling-slingfeature-maven-plugin] branch SLING-8251 updated: SLING-8251 - Support checking dependencies for content packages

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

simonetripodi pushed a commit to branch SLING-8251
in repository https://gitbox.apache.org/repos/asf/sling-slingfeature-maven-plugin.git


The following commit(s) were added to refs/heads/SLING-8251 by this push:
     new 8c64798  SLING-8251 - Support checking dependencies for content packages
8c64798 is described below

commit 8c6479869bedfcb180184d93def2705a4b186586
Author: Simo Tripodi <st...@adobe.com>
AuthorDate: Wed Jun 12 10:24:11 2019 +0200

    SLING-8251 - Support checking dependencies for content packages
    
    all Content-Package check APIs dependencies need to be in the runtime
    scope
---
 pom.xml | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/pom.xml b/pom.xml
index 82fb46c..982452e 100644
--- a/pom.xml
+++ b/pom.xml
@@ -176,15 +176,18 @@
             <groupId>org.apache.jackrabbit.vault</groupId>
             <artifactId>org.apache.jackrabbit.vault</artifactId>
             <version>3.2.6</version>
+            <scope>runtime</scope>
         </dependency>
         <dependency>
             <groupId>org.apache.jackrabbit</groupId>
             <artifactId>jackrabbit-spi-commons</artifactId>
             <version>2.19.1</version>
+            <scope>runtime</scope>
         </dependency>
         <dependency>
             <groupId>javax.jcr</groupId>
             <artifactId>jcr</artifactId>
+            <scope>runtime</scope>
         </dependency>
         <!-- END Content-Package check -->
         <dependency>