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 2008/12/09 16:34:44 UTC

svn commit: r724759 - in /jackrabbit/sandbox/jackrabbit-jdbc2jcr: ./ pom.xml src/ src/main/ src/main/java/ src/main/java/org/ src/main/java/org/apache/ src/main/java/org/apache/jackrabbit/ src/main/java/org/apache/jackrabbit/jdbc/

Author: jukka
Date: Tue Dec  9 07:34:43 2008
New Revision: 724759

URL: http://svn.apache.org/viewvc?rev=724759&view=rev
Log:
jdbc2jcr: Added a skeleton for the JDBC sandbox

Added:
    jackrabbit/sandbox/jackrabbit-jdbc2jcr/
    jackrabbit/sandbox/jackrabbit-jdbc2jcr/pom.xml
    jackrabbit/sandbox/jackrabbit-jdbc2jcr/src/
    jackrabbit/sandbox/jackrabbit-jdbc2jcr/src/main/
    jackrabbit/sandbox/jackrabbit-jdbc2jcr/src/main/java/
    jackrabbit/sandbox/jackrabbit-jdbc2jcr/src/main/java/org/
    jackrabbit/sandbox/jackrabbit-jdbc2jcr/src/main/java/org/apache/
    jackrabbit/sandbox/jackrabbit-jdbc2jcr/src/main/java/org/apache/jackrabbit/
    jackrabbit/sandbox/jackrabbit-jdbc2jcr/src/main/java/org/apache/jackrabbit/jdbc/

Added: jackrabbit/sandbox/jackrabbit-jdbc2jcr/pom.xml
URL: http://svn.apache.org/viewvc/jackrabbit/sandbox/jackrabbit-jdbc2jcr/pom.xml?rev=724759&view=auto
==============================================================================
--- jackrabbit/sandbox/jackrabbit-jdbc2jcr/pom.xml (added)
+++ jackrabbit/sandbox/jackrabbit-jdbc2jcr/pom.xml Tue Dec  9 07:34:43 2008
@@ -0,0 +1,68 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+   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.
+  -->
+
+<project xmlns="http://maven.apache.org/POM/4.0.0"
+         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
+                             http://maven.apache.org/maven-v4_0_0.xsd">
+  <modelVersion>4.0.0</modelVersion>
+
+  <groupId>org.apache.jackrabbit</groupId>
+  <artifactId>jackrabbit-jdbc2jcr</artifactId>
+  <version>SNAPSHOT</version>
+  <name>Jackrabbit JDBC to JCR</name>
+  <description>JDBC driver for accessing JCR content repositories</description>
+
+  <dependencies>
+    <dependency>
+      <groupId>javax.jcr</groupId>
+      <artifactId>jcr</artifactId>
+      <version>1.0</version>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.derby</groupId>
+      <artifactId>derby</artifactId>
+      <version>10.4.2.0</version>
+    </dependency>
+    <dependency>
+      <groupId>com.h2database</groupId>
+      <artifactId>h2</artifactId>
+      <version>1.1.104</version>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.jackrabbit</groupId>
+      <artifactId>jackrabbit-core</artifactId>
+      <version>1.5.0</version>
+      <scope>test</test>
+    </dependency>
+  </dependencies>
+
+  <build>
+    <plugins>
+      <plugin>
+        <artifactId>maven-compiler-plugin</artifactId>
+        <configuration>
+          <source>1.4</source>
+          <target>1.4</target>
+        </configuration>
+      </plugin>
+    </plugins>
+  </build>
+
+</project>