JAMES-2205 Create webadmin main 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/fa0bcd59 Tree: http://git-wip-us.apache.org/repos/asf/james-project/tree/fa0bcd59 Diff: http://git-wip-us.apache.org/repos/asf/james-project/diff/fa0bcd59 Branch: refs/heads/master Commit: fa0bcd5925df5e15b28c9cde61154402c93c6525 Parents: a312fde Author: Antoine Duprat <adup...@linagora.com> Authored: Fri Oct 27 15:51:18 2017 +0200 Committer: benwa <btell...@linagora.com> Committed: Wed Nov 1 17:56:33 2017 +0700 ---------------------------------------------------------------------- pom.xml | 5 ++++ server/pom.xml | 6 +---- server/protocols/webadmin/pom.xml | 43 ++++++++++++++++++++++++++++++++++ 3 files changed, 49 insertions(+), 5 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/james-project/blob/fa0bcd59/pom.xml ---------------------------------------------------------------------- diff --git a/pom.xml b/pom.xml index 4cb8e63..d1cdfb1 100644 --- a/pom.xml +++ b/pom.xml @@ -1338,6 +1338,11 @@ </dependency> <dependency> <groupId>${project.groupId}</groupId> + <artifactId>james-server-webadmin</artifactId> + <version>${project.version}</version> + </dependency> + <dependency> + <groupId>${project.groupId}</groupId> <artifactId>james-server-webadmin-cassandra</artifactId> <version>${project.version}</version> </dependency> http://git-wip-us.apache.org/repos/asf/james-project/blob/fa0bcd59/server/pom.xml ---------------------------------------------------------------------- diff --git a/server/pom.xml b/server/pom.xml index 33bccdf..65d4e80 100644 --- a/server/pom.xml +++ b/server/pom.xml @@ -91,11 +91,7 @@ <module>protocols/protocols-pop3</module> <module>protocols/protocols-smtp</module> <module>protocols/webadmin-integration-test</module> - <module>protocols/webadmin/webadmin-cassandra</module> - <module>protocols/webadmin/webadmin-core</module> - <module>protocols/webadmin/webadmin-data</module> - <module>protocols/webadmin/webadmin-mailbox</module> - <module>protocols/webadmin/webadmin-swagger</module> + <module>protocols/webadmin</module> <module>queue/queue-activemq</module> <module>queue/queue-api</module> http://git-wip-us.apache.org/repos/asf/james-project/blob/fa0bcd59/server/protocols/webadmin/pom.xml ---------------------------------------------------------------------- diff --git a/server/protocols/webadmin/pom.xml b/server/protocols/webadmin/pom.xml new file mode 100644 index 0000000..7af36c5 --- /dev/null +++ b/server/protocols/webadmin/pom.xml @@ -0,0 +1,43 @@ +<?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-project</artifactId> + <version>3.1.0-SNAPSHOT</version> + <relativePath>../../../pom.xml</relativePath> + </parent> + + <artifactId>james-server-webadmin</artifactId> + <packaging>pom</packaging> + + <name>Apache James :: Server :: Web Admin</name> + + <modules> + <module>webadmin-cassandra</module> + <module>webadmin-core</module> + <module>webadmin-data</module> + <module>webadmin-mailbox</module> + <module>webadmin-swagger</module> + </modules> + +</project> --------------------------------------------------------------------- To unsubscribe, e-mail: server-dev-unsubscr...@james.apache.org For additional commands, e-mail: server-dev-h...@james.apache.org