Author: matthieu
Date: Thu Oct 29 14:11:35 2015
New Revision: 1711261

URL: http://svn.apache.org/viewvc?rev=1711261&view=rev
Log:
JAMES-1588 Backend project creation

Added:
    james/project/trunk/backends-common/
    james/project/trunk/backends-common/README.adoc
    james/project/trunk/backends-common/pom.xml
Modified:
    james/project/trunk/pom.xml

Added: james/project/trunk/backends-common/README.adoc
URL: 
http://svn.apache.org/viewvc/james/project/trunk/backends-common/README.adoc?rev=1711261&view=auto
==============================================================================
--- james/project/trunk/backends-common/README.adoc (added)
+++ james/project/trunk/backends-common/README.adoc Thu Oct 29 14:11:35 2015
@@ -0,0 +1,10 @@
+= backends-common
+
+This project intends to share implementation details for commonly used 
back-ends accross james
+projects.
+
+For instance, as we are implementing a cassandra storage backend for James, we 
need to :
+
+ - Use tools to help to work with Cassandra in james-mailbox project
+ - We need to access test helpers in james-mpt project
+ - We need the same tools than those introduce in james-mailbox in James 
server data.
\ No newline at end of file

Added: james/project/trunk/backends-common/pom.xml
URL: 
http://svn.apache.org/viewvc/james/project/trunk/backends-common/pom.xml?rev=1711261&view=auto
==============================================================================
--- james/project/trunk/backends-common/pom.xml (added)
+++ james/project/trunk/backends-common/pom.xml Thu Oct 29 14:11:35 2015
@@ -0,0 +1,56 @@
+<?xml version="1.0" encoding="ISO-8859-1"?>
+<!--
+    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>
+
+    <parent>
+        <groupId>org.apache.james</groupId>
+        <artifactId>james-project</artifactId>
+        <version>1.8.3-SNAPSHOT</version>
+    </parent>
+
+    <artifactId>james-backends-common</artifactId>
+    <packaging>pom</packaging>
+
+    <name>Apache JAMES backends common</name>
+    <description>Apache James Backends: common utils to access 
backends</description>
+    <inceptionYear>2015</inceptionYear>
+
+    <modules>
+        <module>cassandra</module>
+    </modules>
+
+    <dependencyManagement>
+        <dependencies>
+            <dependency>
+                <groupId>com.google.guava</groupId>
+                <artifactId>guava</artifactId>
+                <version>16.0</version>
+            </dependency>
+            <dependency>
+                <groupId>org.assertj</groupId>
+                <artifactId>assertj-core</artifactId>
+                <version>3.0.0</version>
+            </dependency>
+        </dependencies>
+
+    </dependencyManagement>
+
+</project>

Modified: james/project/trunk/pom.xml
URL: 
http://svn.apache.org/viewvc/james/project/trunk/pom.xml?rev=1711261&r1=1711260&r2=1711261&view=diff
==============================================================================
--- james/project/trunk/pom.xml (original)
+++ james/project/trunk/pom.xml Thu Oct 29 14:11:35 2015
@@ -535,6 +535,7 @@
     </properties>
 
     <modules>
+        <module>backends-common</module>
         <module>mailbox</module>
         <module>mailet</module>
         <module>mpt</module>



---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to