You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@chemistry.apache.org by fm...@apache.org on 2013/05/23 09:29:18 UTC

svn commit: r1485598 - /chemistry/opencmis/trunk/chemistry-opencmis-test/chemistry-opencmis-test-fit/pom.xml

Author: fmui
Date: Thu May 23 07:29:17 2013
New Revision: 1485598

URL: http://svn.apache.org/r1485598
Log:
CMIS-584: added default document type configuration to FIT pom.xml

Modified:
    chemistry/opencmis/trunk/chemistry-opencmis-test/chemistry-opencmis-test-fit/pom.xml

Modified: chemistry/opencmis/trunk/chemistry-opencmis-test/chemistry-opencmis-test-fit/pom.xml
URL: http://svn.apache.org/viewvc/chemistry/opencmis/trunk/chemistry-opencmis-test/chemistry-opencmis-test-fit/pom.xml?rev=1485598&r1=1485597&r2=1485598&view=diff
==============================================================================
--- chemistry/opencmis/trunk/chemistry-opencmis-test/chemistry-opencmis-test-fit/pom.xml (original)
+++ chemistry/opencmis/trunk/chemistry-opencmis-test/chemistry-opencmis-test-fit/pom.xml Thu May 23 07:29:17 2013
@@ -31,6 +31,16 @@
         <maven-failsafe-plugin.version>2.14.1</maven-failsafe-plugin.version>
         <maven-jetty-plugin.version>6.1.22</maven-jetty-plugin.version>
         <jcr.version>2.0</jcr.version>
+        <overlay.groupId></overlay.groupId>
+        <overlay.artifactId></overlay.artifactId>
+        <factory.class></factory.class>
+        <!-- Used in ServiceLoader to look up impl. -->
+        <service.factory.class></service.factory.class>
+        <repository></repository>
+        <user></user>
+        <password></password>
+        <!-- "VersionableType" to run versioning tests with the InMemory repository -->
+        <default.documentType>VersionableType</default.documentType>        
     </properties>
 
 
@@ -116,6 +126,10 @@
 			              <name>org.apache.chemistry.opencmis.password</name>
 			              <value>${password}</value>
 			            </systemProperty>
+			            <systemProperty>
+			              <name>org.apache.chemistry.opencmis.tck.default.documentType</name>
+			              <value>${default.documentType}</value>
+			            </systemProperty>
 	                	<systemProperty>
 	                		<name>project.basedir</name>
 	                		<value>${project.basedir}</value>
@@ -175,9 +189,10 @@
             	<overlay.groupId>org.apache.chemistry.opencmis</overlay.groupId>
             	<overlay.artifactId>chemistry-opencmis-server-jcr</overlay.artifactId>
             	<factory.class>org.apache.chemistry.opencmis.jcr.JcrServiceFactory</factory.class>
-            	<!-- Uses in ServiceLoader to look up impl. -->
+            	<!-- Used in ServiceLoader to look up impl. -->
             	<service.factory.class>org.modeshape.jcr.JcrRepositoryFactory</service.factory.class>
             	<repository>test</repository>
+            	<default.documentType>cmis:document</default.documentType>
             </properties>
 	        <dependencies>
 		        <dependency>
@@ -223,9 +238,10 @@
             	<overlay.groupId>${project.groupId}</overlay.groupId>
             	<overlay.artifactId>chemistry-opencmis-server-inmemory</overlay.artifactId>
             	<factory.class>org.apache.chemistry.opencmis.inmemory.server.InMemoryServiceFactoryImpl</factory.class>
-            	<!-- Uses in ServiceLoader to look up impl. -->
+            	<!-- Used in ServiceLoader to look up impl. -->
             	<service.factory.class>${factory.class}</service.factory.class>
             	<repository>test</repository>
+            	<default.documentType>VersionableType</default.documentType>
             </properties>
 	        <dependencies>
 	        	<dependency>
@@ -252,11 +268,12 @@
             	<overlay.groupId>${project.groupId}</overlay.groupId>
             	<overlay.artifactId>chemistry-opencmis-server-bindings-war</overlay.artifactId>
             	<factory.class>org.apache.chemistry.opencmis.jcr.JcrServiceFactory</factory.class>
-            	<!-- Uses in ServiceLoader to look up impl.  -->
+            	<!-- Used in ServiceLoader to look up impl.  -->
             	<service.factory.class>org.apache.jackrabbit.core.RepositoryFactoryImpl</service.factory.class>
             	<repository>default</repository>  
             	<user>admin</user>
             	<password>admin</password>
+            	<default.documentType>cmis:document</default.documentType>
             	<forkMode>never</forkMode>
             </properties>
 	        <dependencies>