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/13 11:22:07 UTC

[sling-slingfeature-maven-plugin] branch SLING-8251_merged_after_releases created (now 9b2ecda)

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

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


      at 9b2ecda  SLING-8251 - Support checking dependencies for content packages

This branch includes the following new commits:

     new 9b2ecda  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_merged_after_releases
in repository https://gitbox.apache.org/repos/asf/sling-slingfeature-maven-plugin.git

commit 9b2ecda57f0d97bda3ae237ba07738a74c746753
Author: Simo Tripodi <st...@adobe.com>
AuthorDate: Thu Jun 13 13:21:53 2019 +0200

    SLING-8251 - Support checking dependencies for content packages
    
    added required dependencies in order to invoke the new AnalyzerTask
---
 pom.xml | 21 ++++++++++++++++++++-
 1 file changed, 20 insertions(+), 1 deletion(-)

diff --git a/pom.xml b/pom.xml
index d923ef5..21a744d 100644
--- a/pom.xml
+++ b/pom.xml
@@ -169,8 +169,27 @@
         <dependency>
             <groupId>org.apache.sling</groupId>
             <artifactId>org.apache.sling.feature.analyser</artifactId>
-            <version>1.0.4</version>
+            <version>1.0.5-SNAPSHOT</version>
+        </dependency>
+        <!-- aux dependencies for Content-Package check -->
+        <dependency>
+            <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>
             <groupId>org.apache.maven</groupId>
             <artifactId>maven-core</artifactId>