JAMES-2292 Introduce WebAdmin Mailqueue 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/bef10eef Tree: http://git-wip-us.apache.org/repos/asf/james-project/tree/bef10eef Diff: http://git-wip-us.apache.org/repos/asf/james-project/diff/bef10eef Branch: refs/heads/master Commit: bef10eefbdc1ea76af97934dda4545472e36e2b0 Parents: e30179f Author: Antoine Duprat <[email protected]> Authored: Mon Jan 22 10:28:25 2018 +0100 Committer: benwa <[email protected]> Committed: Thu Jan 25 11:44:44 2018 +0700 ---------------------------------------------------------------------- server/protocols/webadmin/pom.xml | 1 + .../webadmin/webadmin-mailqueue/pom.xml | 69 ++++++++++++++++++++ 2 files changed, 70 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/james-project/blob/bef10eef/server/protocols/webadmin/pom.xml ---------------------------------------------------------------------- diff --git a/server/protocols/webadmin/pom.xml b/server/protocols/webadmin/pom.xml index eefbf4a..ced8364 100644 --- a/server/protocols/webadmin/pom.xml +++ b/server/protocols/webadmin/pom.xml @@ -37,6 +37,7 @@ <module>webadmin-core</module> <module>webadmin-data</module> <module>webadmin-mailbox</module> + <module>webadmin-mailqueue</module> <module>webadmin-mailrepository</module> <module>webadmin-swagger</module> </modules> http://git-wip-us.apache.org/repos/asf/james-project/blob/bef10eef/server/protocols/webadmin/webadmin-mailqueue/pom.xml ---------------------------------------------------------------------- diff --git a/server/protocols/webadmin/webadmin-mailqueue/pom.xml b/server/protocols/webadmin/webadmin-mailqueue/pom.xml new file mode 100644 index 0000000..3507c7f --- /dev/null +++ b/server/protocols/webadmin/webadmin-mailqueue/pom.xml @@ -0,0 +1,69 @@ +<?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-webadmin-mailqueue</artifactId> + <packaging>jar</packaging> + + <name>Apache James :: Server :: Web Admin :: MailQueue</name> + + <dependencies> + </dependencies> + + <build> + <plugins> + <plugin> + <groupId>com.github.kongchen</groupId> + <artifactId>swagger-maven-plugin</artifactId> + <configuration> + <apiSources> + <apiSource> + <springmvc>false</springmvc> + <locations>org.apache.james.webadmin</locations> + <info> + <title>Swagger Maven Plugin</title> + <version>v1</version> + </info> + <swaggerDirectory>${project.build.directory}</swaggerDirectory> + <swaggerFileName>webadmin-mailbox</swaggerFileName> + </apiSource> + </apiSources> + </configuration> + <executions> + <execution> + <phase>compile</phase> + <goals> + <goal>generate</goal> + </goals> + </execution> + </executions> + </plugin> + </plugins> + </build> + +</project> --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
