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 2010/05/18 11:46:03 UTC

svn commit: r945564 - in /jackrabbit/trunk/jackrabbit-core/src/test/compatibility: create20/ create20/pom.xml create20/src/test/java/org/apache/jackrabbit/harness/compatibility/CreateRepositoryTest.java pom.xml

Author: jukka
Date: Tue May 18 09:46:03 2010
New Revision: 945564

URL: http://svn.apache.org/viewvc?rev=945564&view=rev
Log:
JCR-2631: Move backwards compatibility tests to trunk

Add a Jackrabbit 2.0 repository

Added:
    jackrabbit/trunk/jackrabbit-core/src/test/compatibility/create20/
      - copied from r945228, jackrabbit/trunk/jackrabbit-core/src/test/compatibility/create16/
    jackrabbit/trunk/jackrabbit-core/src/test/compatibility/create20/pom.xml
      - copied, changed from r945247, jackrabbit/trunk/jackrabbit-core/src/test/compatibility/create16/pom.xml
Modified:
    jackrabbit/trunk/jackrabbit-core/src/test/compatibility/create20/src/test/java/org/apache/jackrabbit/harness/compatibility/CreateRepositoryTest.java
    jackrabbit/trunk/jackrabbit-core/src/test/compatibility/pom.xml

Copied: jackrabbit/trunk/jackrabbit-core/src/test/compatibility/create20/pom.xml (from r945247, jackrabbit/trunk/jackrabbit-core/src/test/compatibility/create16/pom.xml)
URL: http://svn.apache.org/viewvc/jackrabbit/trunk/jackrabbit-core/src/test/compatibility/create20/pom.xml?p2=jackrabbit/trunk/jackrabbit-core/src/test/compatibility/create20/pom.xml&p1=jackrabbit/trunk/jackrabbit-core/src/test/compatibility/create16/pom.xml&r1=945247&r2=945564&rev=945564&view=diff
==============================================================================
--- jackrabbit/trunk/jackrabbit-core/src/test/compatibility/create16/pom.xml (original)
+++ jackrabbit/trunk/jackrabbit-core/src/test/compatibility/create20/pom.xml Tue May 18 09:46:03 2010
@@ -30,8 +30,8 @@
     <relativePath>../parent/pom.xml</relativePath>
   </parent>
 
-  <artifactId>jackrabbit-bc-create16</artifactId>
-  <name>Jackrabbit 1.6 Repositories</name>
+  <artifactId>jackrabbit-bc-create20</artifactId>
+  <name>Jackrabbit 2.0 Repositories</name>
 
   <dependencies>
     <dependency>
@@ -41,15 +41,21 @@
       <scope>test</scope>
     </dependency>
     <dependency>
+      <groupId>javax.jcr</groupId>
+      <artifactId>jcr</artifactId>
+      <version>2.0</version>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
       <groupId>org.apache.jackrabbit</groupId>
       <artifactId>jackrabbit-core</artifactId>
-      <version>1.6.0</version>
+      <version>2.0.0</version>
       <scope>test</scope>
     </dependency>
     <dependency>
       <groupId>org.slf4j</groupId>
       <artifactId>slf4j-log4j12</artifactId>
-      <version>1.5.3</version>
+      <version>1.5.8</version>
       <scope>test</scope>
     </dependency>
   </dependencies>

Modified: jackrabbit/trunk/jackrabbit-core/src/test/compatibility/create20/src/test/java/org/apache/jackrabbit/harness/compatibility/CreateRepositoryTest.java
URL: http://svn.apache.org/viewvc/jackrabbit/trunk/jackrabbit-core/src/test/compatibility/create20/src/test/java/org/apache/jackrabbit/harness/compatibility/CreateRepositoryTest.java?rev=945564&r1=945228&r2=945564&view=diff
==============================================================================
--- jackrabbit/trunk/jackrabbit-core/src/test/compatibility/create20/src/test/java/org/apache/jackrabbit/harness/compatibility/CreateRepositoryTest.java (original)
+++ jackrabbit/trunk/jackrabbit-core/src/test/compatibility/create20/src/test/java/org/apache/jackrabbit/harness/compatibility/CreateRepositoryTest.java Tue May 18 09:46:03 2010
@@ -22,7 +22,7 @@ public class CreateRepositoryTest extend
 
     @Test
     public void createRepositories() throws Exception {
-        doCreateRepositories("jackrabbit-1.6");
+        doCreateRepositories("jackrabbit-2.0");
     }
 
 }

Modified: jackrabbit/trunk/jackrabbit-core/src/test/compatibility/pom.xml
URL: http://svn.apache.org/viewvc/jackrabbit/trunk/jackrabbit-core/src/test/compatibility/pom.xml?rev=945564&r1=945563&r2=945564&view=diff
==============================================================================
--- jackrabbit/trunk/jackrabbit-core/src/test/compatibility/pom.xml (original)
+++ jackrabbit/trunk/jackrabbit-core/src/test/compatibility/pom.xml Tue May 18 09:46:03 2010
@@ -48,6 +48,7 @@
     <module>create14</module>
     <module>create15</module>
     <module>create16</module>
+    <module>create20</module>
   </modules>
 
   <build>