You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@rave.apache.org by un...@apache.org on 2012/06/09 09:23:11 UTC

svn commit: r1348326 - in /rave/sandbox/content-services/rave-jcr-config/src/test/resources/org: ./ apache/ apache/rave/ apache/rave/jcr/ apache/rave/jcr/jackrabbit/ apache/rave/jcr/jackrabbit/repository.xml

Author: unico
Date: Sat Jun  9 07:23:10 2012
New Revision: 1348326

URL: http://svn.apache.org/viewvc?rev=1348326&view=rev
Log:
RAVE-603 default repository.xml for test stub

Added:
    rave/sandbox/content-services/rave-jcr-config/src/test/resources/org/
    rave/sandbox/content-services/rave-jcr-config/src/test/resources/org/apache/
    rave/sandbox/content-services/rave-jcr-config/src/test/resources/org/apache/rave/
    rave/sandbox/content-services/rave-jcr-config/src/test/resources/org/apache/rave/jcr/
    rave/sandbox/content-services/rave-jcr-config/src/test/resources/org/apache/rave/jcr/jackrabbit/
    rave/sandbox/content-services/rave-jcr-config/src/test/resources/org/apache/rave/jcr/jackrabbit/repository.xml

Added: rave/sandbox/content-services/rave-jcr-config/src/test/resources/org/apache/rave/jcr/jackrabbit/repository.xml
URL: http://svn.apache.org/viewvc/rave/sandbox/content-services/rave-jcr-config/src/test/resources/org/apache/rave/jcr/jackrabbit/repository.xml?rev=1348326&view=auto
==============================================================================
--- rave/sandbox/content-services/rave-jcr-config/src/test/resources/org/apache/rave/jcr/jackrabbit/repository.xml (added)
+++ rave/sandbox/content-services/rave-jcr-config/src/test/resources/org/apache/rave/jcr/jackrabbit/repository.xml Sat Jun  9 07:23:10 2012
@@ -0,0 +1,42 @@
+<?xml version="1.0"?>
+<!--
+   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.
+  -->
+<!DOCTYPE Repository PUBLIC "-//The Apache Software Foundation//DTD Jackrabbit 1.6//EN" "http://jackrabbit.apache.org/dtd/repository-1.6.dtd">
+<Repository>
+  <FileSystem class="org.apache.jackrabbit.core.fs.mem.MemoryFileSystem"/>
+
+  <DataStore class="org.apache.jackrabbit.core.data.FileDataStore"/>
+
+  <Security appName="Jackrabbit">
+    <SecurityManager class="org.apache.jackrabbit.core.security.simple.SimpleSecurityManager" workspaceName="security"/>
+    <AccessManager class="org.apache.jackrabbit.core.security.simple.SimpleAccessManager"/>
+    <LoginModule class="org.apache.jackrabbit.core.security.simple.SimpleLoginModule"/>
+  </Security>
+
+  <Workspaces rootPath="${rep.home}/workspaces" defaultWorkspace="default" maxIdleTime="2"/>
+
+  <Workspace name="${wsp.name}">
+    <FileSystem class="org.apache.jackrabbit.core.fs.mem.MemoryFileSystem"/>
+    <PersistenceManager class="org.apache.jackrabbit.core.persistence.mem.InMemBundlePersistenceManager"/>
+  </Workspace>
+
+  <Versioning rootPath="${rep.home}/version">
+    <FileSystem class="org.apache.jackrabbit.core.fs.mem.MemoryFileSystem"/>
+    <PersistenceManager class="org.apache.jackrabbit.core.persistence.mem.InMemBundlePersistenceManager"/>
+  </Versioning>
+
+</Repository>