You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jackrabbit.apache.org by ju...@apache.org on 2009/04/08 06:10:09 UTC

svn commit: r762700 - /jackrabbit/trunk/jackrabbit-core/pom.xml

Author: jukka
Date: Tue Apr  7 11:24:28 2009
New Revision: 762700

URL: http://svn.apache.org/viewvc?rev=762700&view=rev
Log:
JCR-2055: RepositoryStub implementation in jackrabbit-core

Upgrade jcr-tests to an optional dependency. This way it's part of the compile classpath on src/main/java, but won't force itself to downstream users who're not testing the implementation.

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

Modified: jackrabbit/trunk/jackrabbit-core/pom.xml
URL: http://svn.apache.org/viewvc/jackrabbit/trunk/jackrabbit-core/pom.xml?rev=762700&r1=762699&r2=762700&view=diff
==============================================================================
--- jackrabbit/trunk/jackrabbit-core/pom.xml (original)
+++ jackrabbit/trunk/jackrabbit-core/pom.xml Tue Apr  7 11:24:28 2009
@@ -206,14 +206,14 @@
       <artifactId>derby</artifactId>
     </dependency>
     <dependency>
-      <groupId>junit</groupId>
-      <artifactId>junit</artifactId>
-      <scope>test</scope>
-    </dependency>
-    <dependency>
       <groupId>org.apache.jackrabbit</groupId>
       <artifactId>jackrabbit-jcr-tests</artifactId>
       <version>1.6-SNAPSHOT</version>
+      <optional>true</optional>
+    </dependency>
+    <dependency>
+      <groupId>junit</groupId>
+      <artifactId>junit</artifactId>
       <scope>test</scope>
     </dependency>
     <dependency>