Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEike Stepper2011-01-11 07:19:35 +0000
committerEike Stepper2011-01-11 07:19:35 +0000
commit5d95951ff261e50cb15a4eede3144f876ba09aaa (patch)
tree0ec1b1392afedb617b558516be551d879c34c4e1
parentb70a7f1dc3a4ece52c90ee982487d99eedd8f687 (diff)
downloadcdo-5d95951ff261e50cb15a4eede3144f876ba09aaa.tar.gz
cdo-5d95951ff261e50cb15a4eede3144f876ba09aaa.tar.xz
cdo-5d95951ff261e50cb15a4eede3144f876ba09aaa.zip
tabs->spaces
-rw-r--r--features/org.eclipse.emf.cdo.server.product-feature/rootfiles/configuration/cdo-server.xml138
1 files changed, 68 insertions, 70 deletions
diff --git a/features/org.eclipse.emf.cdo.server.product-feature/rootfiles/configuration/cdo-server.xml b/features/org.eclipse.emf.cdo.server.product-feature/rootfiles/configuration/cdo-server.xml
index b6beb6af84..315aa6f2f7 100644
--- a/features/org.eclipse.emf.cdo.server.product-feature/rootfiles/configuration/cdo-server.xml
+++ b/features/org.eclipse.emf.cdo.server.product-feature/rootfiles/configuration/cdo-server.xml
@@ -1,75 +1,73 @@
<?xml version="1.0" encoding="UTF-8"?>
<cdoServer>
- <!--
- <acceptor type="http"/>
- -->
-
- <acceptor type="tcp" listenAddr="0.0.0.0" port="2036">
- <!--
- <negotiator type="challenge" description="_database/repo1.users"/>
- -->
- </acceptor>
-
- <repository name="repo1">
- <property name="overrideUUID" value=""/>
- <property name="supportingAudits" value="true"/>
- <property name="supportingBranches" value="true"/>
- <property name="supportingEcore" value="true"/>
-
- <!--
- <userManager type="file" description="_database/repo1.users"/>
- -->
-
- <store type="db">
- <mappingStrategy type="horizontalBranching">
- <property name="qualifiedNames" value="false"/>
- <property name="toManyReferences" value="ONE_TABLE_PER_REFERENCE"/>
- <property name="toOneReferences" value="LIKE_ATTRIBUTES"/>
-
- <!--
- Per default, the objectTypeCache is in-memory and contains
- 10,000,000 cache entries. If you want to change the size,
- uncomment the following line and set the desired size.
- The cache can be disabled by setting a size of 0.
- -->
- <!-- <property name="objectTypeCacheSize" value="10000000" /> -->
- </mappingStrategy>
-
- <dbAdapter name="h2"/>
- <dataSource class="org.h2.jdbcx.JdbcDataSource"
- uRL="jdbc:h2:_database/repo1"/>
-
- <!--
- <dbAdapter name="derby-embedded"/>
- <dataSource class="org.apache.derby.jdbc.EmbeddedDataSource"
- databaseName="/temp/repo1"
- createDatabase="create"/>
- -->
-
- <!--
- <dbAdapter name="hsqldb"/>
- <dataSource class="org.eclipse.net4j.db.hsqldb.HSQLDBDataSource"
- database="jdbc:hsqldb:mem:repo1"
- user="sa"/>
- -->
-
- <!--
- <dbAdapter name="mysql"/>
- <dataSource class="com.mysql.jdbc.jdbc2.optional.MysqlDataSource"
- url="jdbc:mysql://localhost/repo1"
- user="sa"/>
- -->
-
- <!--
- <dbAdapter name="postgresql"/>
- <dataSource class="org.postgresql.ds.PGSimpleDataSource"
- url="jdbc:postgresql://localhost:5432/repo1"
- databaseName="repo1"
- user="cdo"
- password="cdo"/>
- -->
- </store>
- </repository>
+ <acceptor type="tcp" listenAddr="0.0.0.0" port="2036">
+ <!--
+ <negotiator type="challenge" description="_database/repo1.users"/>
+ -->
+ </acceptor>
+
+ <!--
+ <acceptor type="http"/>
+ -->
+
+ <repository name="repo1">
+
+ <property name="overrideUUID" value=""/>
+ <property name="supportingAudits" value="true"/>
+ <property name="supportingBranches" value="true"/>
+ <property name="supportingEcore" value="true"/>
+
+ <!--
+ <userManager type="file" description="_database/repo1.users"/>
+ -->
+
+ <store type="db">
+
+ <mappingStrategy type="horizontalBranching">
+ <property name="qualifiedNames" value="false"/>
+ <property name="toManyReferences" value="ONE_TABLE_PER_REFERENCE"/>
+ <property name="toOneReferences" value="LIKE_ATTRIBUTES"/>
+
+ <!--
+ Per default, the objectTypeCache is in-memory and contains
+ 10,000,000 cache entries. If you want to change the size,
+ uncomment the following line and set the desired size.
+ The cache can be disabled by setting a size of 0.
+ -->
+ <!-- <property name="objectTypeCacheSize" value="10000000" /> -->
+ </mappingStrategy>
+
+ <dbAdapter name="h2"/>
+ <dataSource class="org.h2.jdbcx.JdbcDataSource"
+ uRL="jdbc:h2:_database/repo1"/>
+
+ <!--
+ <dbAdapter name="derby-embedded"/>
+ <dataSource class="org.apache.derby.jdbc.EmbeddedDataSource"
+ databaseName="/temp/repo1"
+ createDatabase="create"/>
+
+ <dbAdapter name="hsqldb"/>
+ <dataSource class="org.eclipse.net4j.db.hsqldb.HSQLDBDataSource"
+ database="jdbc:hsqldb:mem:repo1"
+ user="sa"/>
+
+ <dbAdapter name="mysql"/>
+ <dataSource class="com.mysql.jdbc.jdbc2.optional.MysqlDataSource"
+ url="jdbc:mysql://localhost/repo1"
+ user="sa"/>
+
+ <dbAdapter name="postgresql"/>
+ <dataSource class="org.postgresql.ds.PGSimpleDataSource"
+ url="jdbc:postgresql://localhost:5432/repo1"
+ databaseName="repo1"
+ user="cdo"
+ password="cdo"/>
+ -->
+
+ </store>
+
+ </repository>
</cdoServer> \ No newline at end of file

Back to the top