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:03:30 UTC

[sling-slingfeature-maven-plugin] branch SLING-8251 created (now 3faa9b0)

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

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


      at 3faa9b0  SLING-8251 - Support checking dependencies for content packages

This branch includes the following new commits:

     new 3faa9b0  SLING-8251 - Support checking dependencies for content packages

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.



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

Posted by si...@apache.org.
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

commit 3faa9b0b6be60eafd526d5d357fdfaa36bcbeb73
Author: Simo Tripodi <st...@adobe.com>
AuthorDate: Wed Jun 12 10:03:17 2019 +0200

    SLING-8251 - Support checking dependencies for content packages
    
    added missing dependencies in order to let the new AnalyzerTask working
    in the Maven plugin
---
 pom.xml | 20 ++++++++++++++++++--
 1 file changed, 18 insertions(+), 2 deletions(-)

diff --git a/pom.xml b/pom.xml
index 7d9f48a..82fb46c 100644
--- a/pom.xml
+++ b/pom.xml
@@ -159,7 +159,7 @@
         <dependency>
             <groupId>org.apache.sling</groupId>
             <artifactId>org.apache.sling.feature</artifactId>
-            <version>1.0.2</version>
+            <version>1.0.3-SNAPSHOT</version>
         </dependency>
         <dependency>
             <groupId>org.apache.sling</groupId>
@@ -169,8 +169,24 @@
         <dependency>
             <groupId>org.apache.sling</groupId>
             <artifactId>org.apache.sling.feature.analyser</artifactId>
-            <version>1.0.2</version>
+            <version>1.0.3-SNAPSHOT</version>
+        </dependency>
+        <!-- Content-Package check -->
+        <dependency>
+            <groupId>org.apache.jackrabbit.vault</groupId>
+            <artifactId>org.apache.jackrabbit.vault</artifactId>
+            <version>3.2.6</version>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.jackrabbit</groupId>
+            <artifactId>jackrabbit-spi-commons</artifactId>
+            <version>2.19.1</version>
+        </dependency>
+        <dependency>
+            <groupId>javax.jcr</groupId>
+            <artifactId>jcr</artifactId>
         </dependency>
+        <!-- END Content-Package check -->
         <dependency>
             <groupId>org.apache.maven</groupId>
             <artifactId>maven-core</artifactId>