You are viewing a plain text version of this content. The canonical link for it is here.
Posted to server-dev@james.apache.org by bt...@apache.org on 2018/01/19 02:19:28 UTC

[04/13] james-project git commit: JAMES-2287 Introduce the james-server-blob-api module

JAMES-2287 Introduce the james-server-blob-api module


Project: http://git-wip-us.apache.org/repos/asf/james-project/repo
Commit: http://git-wip-us.apache.org/repos/asf/james-project/commit/894647e1
Tree: http://git-wip-us.apache.org/repos/asf/james-project/tree/894647e1
Diff: http://git-wip-us.apache.org/repos/asf/james-project/diff/894647e1

Branch: refs/heads/master
Commit: 894647e1248d2629d251166f55d2aac8772aa092
Parents: c668025
Author: Antoine Duprat <ad...@linagora.com>
Authored: Tue Jan 16 10:48:27 2018 +0100
Committer: benwa <bt...@linagora.com>
Committed: Fri Jan 19 09:06:42 2018 +0700

----------------------------------------------------------------------
 pom.xml                      |  5 +++++
 server/blob/blob-api/pom.xml | 38 ++++++++++++++++++++++++++++++++++++++
 server/blob/pom.xml          | 39 +++++++++++++++++++++++++++++++++++++++
 server/pom.xml               |  2 ++
 4 files changed, 84 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/james-project/blob/894647e1/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index d4988bd..420ffaa 100644
--- a/pom.xml
+++ b/pom.xml
@@ -970,6 +970,11 @@
             </dependency>
             <dependency>
                 <groupId>${project.groupId}</groupId>
+                <artifactId>blob-api</artifactId>
+                <version>${project.version}</version>
+            </dependency>
+            <dependency>
+                <groupId>${project.groupId}</groupId>
                 <artifactId>james-server-cassandra-guice</artifactId>
                 <version>${project.version}</version>
             </dependency>

http://git-wip-us.apache.org/repos/asf/james-project/blob/894647e1/server/blob/blob-api/pom.xml
----------------------------------------------------------------------
diff --git a/server/blob/blob-api/pom.xml b/server/blob/blob-api/pom.xml
new file mode 100644
index 0000000..b0cd9b7
--- /dev/null
+++ b/server/blob/blob-api/pom.xml
@@ -0,0 +1,38 @@
+<?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>
+
+    <parent>
+        <artifactId>james-server-blob</artifactId>
+        <groupId>org.apache.james</groupId>
+        <version>3.1.0-SNAPSHOT</version>
+        <relativePath>../pom.xml</relativePath>
+    </parent>
+
+    <artifactId>blob-api</artifactId>
+    <packaging>jar</packaging>
+
+    <name>Apache James :: Server :: Blob :: API</name>
+
+    <dependencies>
+    </dependencies>
+    
+</project>

http://git-wip-us.apache.org/repos/asf/james-project/blob/894647e1/server/blob/pom.xml
----------------------------------------------------------------------
diff --git a/server/blob/pom.xml b/server/blob/pom.xml
new file mode 100644
index 0000000..d86a2bd
--- /dev/null
+++ b/server/blob/pom.xml
@@ -0,0 +1,39 @@
+<?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>
+
+    <parent>
+        <groupId>org.apache.james</groupId>
+        <artifactId>james-server</artifactId>
+        <version>3.1.0-SNAPSHOT</version>
+        <relativePath>../pom.xml</relativePath>
+    </parent>
+
+    <artifactId>james-server-blob</artifactId>
+    <packaging>pom</packaging>
+    <name>Apache James :: Server :: Blob</name>
+
+    <modules>
+        <module>blob-api</module>
+    </modules>
+
+</project>

http://git-wip-us.apache.org/repos/asf/james-project/blob/894647e1/server/pom.xml
----------------------------------------------------------------------
diff --git a/server/pom.xml b/server/pom.xml
index f586a1a..5615df5 100644
--- a/server/pom.xml
+++ b/server/pom.xml
@@ -40,6 +40,8 @@
     <modules>
         <module>app</module>
 
+        <module>blob</module>
+
         <module>container/cli</module>
         <module>container/cli-integration</module>
         <module>container/core</module>


---------------------------------------------------------------------
To unsubscribe, e-mail: server-dev-unsubscribe@james.apache.org
For additional commands, e-mail: server-dev-help@james.apache.org