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/03 14:40:47 UTC

svn commit: r761651 - in /jackrabbit/commons/jcr-rmi/trunk/it: pom.xml src/test/java/org/ src/test/java/org/apache/ src/test/java/org/apache/jackrabbit/ src/test/java/org/apache/jackrabbit/rmi/ src/test/java/org/apache/jackrabbit/rmi/it/ testng.xml

Author: jukka
Date: Fri Apr  3 12:40:47 2009
New Revision: 761651

URL: http://svn.apache.org/viewvc?rev=761651&view=rev
Log:
JCRRMI-14: Integration tests for JCR-RMI

Never deploy the integration tests.

Add initial TestNG configuration and source folders.

Added:
    jackrabbit/commons/jcr-rmi/trunk/it/src/test/java/org/
    jackrabbit/commons/jcr-rmi/trunk/it/src/test/java/org/apache/
    jackrabbit/commons/jcr-rmi/trunk/it/src/test/java/org/apache/jackrabbit/
    jackrabbit/commons/jcr-rmi/trunk/it/src/test/java/org/apache/jackrabbit/rmi/
    jackrabbit/commons/jcr-rmi/trunk/it/src/test/java/org/apache/jackrabbit/rmi/it/
    jackrabbit/commons/jcr-rmi/trunk/it/testng.xml   (with props)
Modified:
    jackrabbit/commons/jcr-rmi/trunk/it/pom.xml

Modified: jackrabbit/commons/jcr-rmi/trunk/it/pom.xml
URL: http://svn.apache.org/viewvc/jackrabbit/commons/jcr-rmi/trunk/it/pom.xml?rev=761651&r1=761650&r2=761651&view=diff
==============================================================================
--- jackrabbit/commons/jcr-rmi/trunk/it/pom.xml (original)
+++ jackrabbit/commons/jcr-rmi/trunk/it/pom.xml Fri Apr  3 12:40:47 2009
@@ -43,6 +43,12 @@
   <build>
     <plugins>
       <plugin>
+        <artifactId>maven-deploy-plugin</artifactId>
+        <configuration>
+          <skip>true</skip>
+        </configuration>
+      </plugin>
+      <plugin>
         <artifactId>maven-compiler-plugin</artifactId>
         <configuration>
           <target>1.5</target>
@@ -52,6 +58,9 @@
       <plugin>
         <artifactId>maven-surefire-plugin</artifactId>
         <configuration>
+          <suiteXmlFiles>
+            <suiteXmlFile>testng.xml</suiteXmlFile>
+          </suiteXmlFiles>
           <systemProperties>
             <property>
               <name>derby.system.durability</name>

Added: jackrabbit/commons/jcr-rmi/trunk/it/testng.xml
URL: http://svn.apache.org/viewvc/jackrabbit/commons/jcr-rmi/trunk/it/testng.xml?rev=761651&view=auto
==============================================================================
--- jackrabbit/commons/jcr-rmi/trunk/it/testng.xml (added)
+++ jackrabbit/commons/jcr-rmi/trunk/it/testng.xml Fri Apr  3 12:40:47 2009
@@ -0,0 +1,26 @@
+<!DOCTYPE suite SYSTEM "http://testng.org/testng-1.0.dtd" >
+
+<!--
+   Licensed to the Apache Software Foundation (ASF) under one or more
+   contributor license agreements.  See the NOTICE file distributed with
+   this work for additional information regarding copyright ownership.
+   The ASF licenses this file to You under the Apache License, Version 2.0
+   (the "License"); you may not use this file except in compliance with
+   the License.  You may obtain a copy of the License at
+
+       http://www.apache.org/licenses/LICENSE-2.0
+
+   Unless required by applicable law or agreed to in writing, software
+   distributed under the License is distributed on an "AS IS" BASIS,
+   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+   See the License for the specific language governing permissions and
+   limitations under the License.
+  -->
+
+<suite name="jcr-rmi-integration-test">
+  <test name="JCR-RMI Integration Tests">
+    <packages>
+      <package name="org.apache.jackrabbit.rmi.it"/>
+    </packages>
+  </test>
+</suite>

Propchange: jackrabbit/commons/jcr-rmi/trunk/it/testng.xml
------------------------------------------------------------------------------
    svn:eol-style = native