JAMES-2341 Introduce SpamAssassin mailbox project
Project: http://git-wip-us.apache.org/repos/asf/james-project/repo Commit: http://git-wip-us.apache.org/repos/asf/james-project/commit/00e3224c Tree: http://git-wip-us.apache.org/repos/asf/james-project/tree/00e3224c Diff: http://git-wip-us.apache.org/repos/asf/james-project/diff/00e3224c Branch: refs/heads/master Commit: 00e3224ceab663fabea6953f7f47de326e989f27 Parents: fc5c1ea Author: Antoine Duprat <[email protected]> Authored: Wed Feb 21 15:03:44 2018 +0100 Committer: Antoine Duprat <[email protected]> Committed: Wed Feb 28 13:29:31 2018 +0100 ---------------------------------------------------------------------- mailbox/plugin/spamassassin/pom.xml | 41 ++++++++++++++++++++++++++++++++ mailbox/pom.xml | 2 ++ pom.xml | 5 ++++ 3 files changed, 48 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/james-project/blob/00e3224c/mailbox/plugin/spamassassin/pom.xml ---------------------------------------------------------------------- diff --git a/mailbox/plugin/spamassassin/pom.xml b/mailbox/plugin/spamassassin/pom.xml new file mode 100644 index 0000000..87254bc --- /dev/null +++ b/mailbox/plugin/spamassassin/pom.xml @@ -0,0 +1,41 @@ +<?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>apache-james-mailbox</artifactId> + <version>3.1.0-SNAPSHOT</version> + <relativePath>../../pom.xml</relativePath> + </parent> + + <artifactId>apache-james-mailbox-spamassassin</artifactId> + <name>Apache James :: Mailbox :: Plugin :: SpamAssassin</name> + <description>Apache James Mailbox SpamAssassin integration</description> + + <dependencies> + <dependency> + <groupId>${project.groupId}</groupId> + <artifactId>apache-james-mailbox-api</artifactId> + </dependency> + </dependencies> + +</project> http://git-wip-us.apache.org/repos/asf/james-project/blob/00e3224c/mailbox/pom.xml ---------------------------------------------------------------------- diff --git a/mailbox/pom.xml b/mailbox/pom.xml index 942081b..a8204d2 100644 --- a/mailbox/pom.xml +++ b/mailbox/pom.xml @@ -52,6 +52,8 @@ <module>tika</module> <module>tool</module> <module>zoo-seq-provider</module> + + <module>plugin/spamassassin</module> </modules> <issueManagement> http://git-wip-us.apache.org/repos/asf/james-project/blob/00e3224c/pom.xml ---------------------------------------------------------------------- diff --git a/pom.xml b/pom.xml index 4882d08..e220680 100644 --- a/pom.xml +++ b/pom.xml @@ -818,6 +818,11 @@ </dependency> <dependency> <groupId>${project.groupId}</groupId> + <artifactId>apache-james-mailbox-spamassassin</artifactId> + <version>${project.version}</version> + </dependency> + <dependency> + <groupId>${project.groupId}</groupId> <artifactId>apache-james-mailbox-spring</artifactId> <version>${project.version}</version> </dependency> --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
