This is an automated email from the ASF dual-hosted git repository. btellier pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/james-project.git
commit 39502dcdac50f6fd98422e1cc92b021b3b26517e Author: Benoit Tellier <[email protected]> AuthorDate: Thu Sep 12 15:55:23 2019 +0700 JAMES-2855 MPT tests for ManageSieve on top of file don't need guice --- .../james/mpt/managesieve/file/FileModule.java | 33 ---------------------- server/container/guice/cassandra-guice/pom.xml | 8 ++++++ 2 files changed, 8 insertions(+), 33 deletions(-) diff --git a/mpt/impl/managesieve/file/src/test/java/org/apache/james/mpt/managesieve/file/FileModule.java b/mpt/impl/managesieve/file/src/test/java/org/apache/james/mpt/managesieve/file/FileModule.java deleted file mode 100644 index dc31de1..0000000 --- a/mpt/impl/managesieve/file/src/test/java/org/apache/james/mpt/managesieve/file/FileModule.java +++ /dev/null @@ -1,33 +0,0 @@ -/**************************************************************** - * 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. * - ****************************************************************/ - -package org.apache.james.mpt.managesieve.file; - -import org.apache.james.mpt.host.ManageSieveHostSystem; -import org.apache.james.mpt.managesieve.file.host.FileHostSystem; - -import com.google.inject.AbstractModule; - -public class FileModule extends AbstractModule { - - @Override - protected void configure() { - bind(ManageSieveHostSystem.class).to(FileHostSystem.class); - } -} diff --git a/server/container/guice/cassandra-guice/pom.xml b/server/container/guice/cassandra-guice/pom.xml index 6279769..8879b46 100644 --- a/server/container/guice/cassandra-guice/pom.xml +++ b/server/container/guice/cassandra-guice/pom.xml @@ -152,6 +152,10 @@ </dependency> <dependency> <groupId>${james.groupId}</groupId> + <artifactId>james-server-guice-mailet</artifactId> + </dependency> + <dependency> + <groupId>${james.groupId}</groupId> <artifactId>james-server-guice-es-resporter</artifactId> </dependency> <dependency> @@ -240,6 +244,10 @@ </dependency> <dependency> <groupId>${james.groupId}</groupId> + <artifactId>james-server-mailets</artifactId> + </dependency> + <dependency> + <groupId>${james.groupId}</groupId> <artifactId>james-server-mailrepository-cassandra</artifactId> </dependency> <dependency> --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
