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/18 21:42:26 UTC

[sling-whiteboard] 01/04: [feature-diff] fixed dependencies management to make the diff bundle being installable in the Feature context

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

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

commit 3b5d4e1d1f6ed981a7dbc901f813174f005215bd
Author: Simo Tripodi <st...@adobe.com>
AuthorDate: Tue Jun 18 20:09:49 2019 +0200

    [feature-diff] fixed dependencies management to make the diff bundle
    being installable in the Feature context
---
 feature-diff/pom.xml | 12 ++++++++++++
 1 file changed, 12 insertions(+)

diff --git a/feature-diff/pom.xml b/feature-diff/pom.xml
index e89ae4b..2d34583 100644
--- a/feature-diff/pom.xml
+++ b/feature-diff/pom.xml
@@ -56,6 +56,12 @@
       <version>3.8.1</version>
       <scope>provided</scope>
     </dependency>
+    <dependency>
+      <groupId>org.apache.commons</groupId>
+      <artifactId>commons-collections4</artifactId>
+      <version>4.1</version>
+      <scope>provided</scope>
+    </dependency>
 
     <!--
      | Sling Feature Model libraries
@@ -80,6 +86,12 @@
       <artifactId>jackson-databind</artifactId>
       <version>${jackson.version}</version>
       <scope>provided</scope>
+      <exclusions>
+        <exclusion>
+          <groupId>org.apache.commons</groupId>
+          <artifactId>commons-collections4</artifactId>
+        </exclusion>
+      </exclusions>
     </dependency>
     <dependency>
       <groupId>com.fasterxml.jackson.core</groupId>