You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@sling.apache.org by pa...@apache.org on 2017/03/28 13:03:15 UTC

svn commit: r1789120 - /sling/trunk/bundles/extensions/discovery/oak/pom.xml

Author: pauls
Date: Tue Mar 28 13:03:15 2017
New Revision: 1789120

URL: http://svn.apache.org/viewvc?rev=1789120&view=rev
Log:
SLING-6692: Replace commons.json usage in org.apache.sling.discovery.oak

Modified:
    sling/trunk/bundles/extensions/discovery/oak/pom.xml

Modified: sling/trunk/bundles/extensions/discovery/oak/pom.xml
URL: http://svn.apache.org/viewvc/sling/trunk/bundles/extensions/discovery/oak/pom.xml?rev=1789120&r1=1789119&r2=1789120&view=diff
==============================================================================
--- sling/trunk/bundles/extensions/discovery/oak/pom.xml (original)
+++ sling/trunk/bundles/extensions/discovery/oak/pom.xml Tue Mar 28 13:03:15 2017
@@ -214,12 +214,6 @@
 			<version>4.3.5</version>
 			<scope>provided</scope>
 		</dependency>
-		<dependency>
-			<groupId>org.apache.sling</groupId>
-			<artifactId>org.apache.sling.commons.json</artifactId>
-			<version>2.0.6</version>
-            <scope>provided</scope>
-		</dependency>
         <dependency>
             <groupId>commons-io</groupId>
             <artifactId>commons-io</artifactId>
@@ -308,6 +302,12 @@
             <artifactId>org.apache.sling.testing.sling-mock</artifactId>
             <version>1.2.0</version>
             <scope>test</scope>
+            <exclusions>
+            <exclusion>
+            <groupId>org.apache.sling</groupId>
+            <artifactId>org.apache.sling.commons.json</artifactId>
+            </exclusion>
+            </exclusions>
         </dependency>
         <dependency>
         	<groupId>org.apache.jackrabbit</groupId>
@@ -332,5 +332,11 @@
         	<artifactId>org.apache.sling.hc.core</artifactId>
         	<version>1.0.6</version>
         </dependency>
+        <dependency>
+                <groupId>org.apache.sling</groupId>
+                <artifactId>org.apache.sling.commons.johnzon</artifactId>
+                <version>0.1.0-SNAPSHOT</version>
+                <scope>test</scope>
+        </dependency>
     </dependencies>
 </project>