JAMES-2334 Introduce RabbitMQ implementation
Project: http://git-wip-us.apache.org/repos/asf/james-project/repo Commit: http://git-wip-us.apache.org/repos/asf/james-project/commit/5041a0e6 Tree: http://git-wip-us.apache.org/repos/asf/james-project/tree/5041a0e6 Diff: http://git-wip-us.apache.org/repos/asf/james-project/diff/5041a0e6 Branch: refs/heads/master Commit: 5041a0e65a19eefa8767ad53d94ac6ffa7c1fcd0 Parents: 61e94c6 Author: Antoine Duprat <[email protected]> Authored: Tue Feb 6 14:31:23 2018 +0100 Committer: Matthieu Baechler <[email protected]> Committed: Thu May 31 09:47:02 2018 +0200 ---------------------------------------------------------------------- pom.xml | 5 +++++ server/pom.xml | 3 ++- server/queue/queue-rabbitmq/pom.xml | 37 ++++++++++++++++++++++++++++++++ 3 files changed, 44 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/james-project/blob/5041a0e6/pom.xml ---------------------------------------------------------------------- diff --git a/pom.xml b/pom.xml index 0be0c28..91dfb14 100644 --- a/pom.xml +++ b/pom.xml @@ -1444,6 +1444,11 @@ </dependency> <dependency> <groupId>${project.groupId}</groupId> + <artifactId>james-server-queue-rabbitmq</artifactId> + <version>${project.version}</version> + </dependency> + <dependency> + <groupId>${project.groupId}</groupId> <artifactId>james-server-queue-api</artifactId> <version>${project.version}</version> </dependency> http://git-wip-us.apache.org/repos/asf/james-project/blob/5041a0e6/server/pom.xml ---------------------------------------------------------------------- diff --git a/server/pom.xml b/server/pom.xml index 56545e3..f920a73 100644 --- a/server/pom.xml +++ b/server/pom.xml @@ -98,12 +98,13 @@ <module>protocols/protocols-smtp</module> <module>protocols/webadmin-integration-test</module> <module>protocols/webadmin</module> - <module>queue/queue-activemq</module> + <module>queue/queue-activemq</module> <module>queue/queue-api</module> <module>queue/queue-file</module> <module>queue/queue-jms</module> <module>queue/queue-memory</module> + <module>queue/queue-rabbitmq</module> <module>task</module> <module>testing</module> http://git-wip-us.apache.org/repos/asf/james-project/blob/5041a0e6/server/queue/queue-rabbitmq/pom.xml ---------------------------------------------------------------------- diff --git a/server/queue/queue-rabbitmq/pom.xml b/server/queue/queue-rabbitmq/pom.xml new file mode 100644 index 0000000..950089f --- /dev/null +++ b/server/queue/queue-rabbitmq/pom.xml @@ -0,0 +1,37 @@ +<?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-queue-rabbitmq</artifactId> + <packaging>bundle</packaging> + + <name>Apache James :: Server :: Mail Queue :: RabbitMQ</name> + + <dependencies> + </dependencies> +</project> --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
