You are viewing a plain text version of this content. The canonical link for it is here.
Posted to oak-commits@jackrabbit.apache.org by ju...@apache.org on 2014/01/30 17:19:22 UTC

svn commit: r1562875 - /jackrabbit/oak/trunk/oak-core/pom.xml

Author: jukka
Date: Thu Jan 30 16:19:22 2014
New Revision: 1562875

URL: http://svn.apache.org/r1562875
Log:
OAK-1266: SQL/JDBC DocumentStore implementation

Mark the json-simple dependency as provided since we embed it in the bundle

Modified:
    jackrabbit/oak/trunk/oak-core/pom.xml

Modified: jackrabbit/oak/trunk/oak-core/pom.xml
URL: http://svn.apache.org/viewvc/jackrabbit/oak/trunk/oak-core/pom.xml?rev=1562875&r1=1562874&r2=1562875&view=diff
==============================================================================
--- jackrabbit/oak/trunk/oak-core/pom.xml (original)
+++ jackrabbit/oak/trunk/oak-core/pom.xml Thu Jan 30 16:19:22 2014
@@ -231,6 +231,14 @@
       <optional>true</optional>
     </dependency>
 
+    <!-- Embedded (provided) dependency to json-simple  -->
+    <dependency>
+      <groupId>com.googlecode.json-simple</groupId>
+      <artifactId>json-simple</artifactId>
+      <version>1.1</version>
+      <scope>provided</scope>
+    </dependency>
+
     <!-- JCR and Jackrabbit dependencies -->
     <dependency>
       <groupId>javax.jcr</groupId>
@@ -309,11 +317,5 @@
       <version>1.5.5</version>
       <scope>test</scope>
     </dependency>
-    <dependency>
-      <groupId>com.googlecode.json-simple</groupId>
-      <artifactId>json-simple</artifactId>
-      <version>1.1</version>
-      <!--<scope>test</scope> temporarily changed the scope for OAK-1266-->
-    </dependency>
   </dependencies>
 </project>