You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@accumulo.apache.org by ct...@apache.org on 2020/08/07 19:36:02 UTC

[accumulo] 02/02: Add relocation pom for old accumulo-master module

This is an automated email from the ASF dual-hosted git repository.

ctubbsii pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/accumulo.git

commit c43471a725bc2259aa80d041d233997c8844c37a
Author: Christopher Tubbs <ct...@apache.org>
AuthorDate: Fri Aug 7 14:18:16 2020 -0400

    Add relocation pom for old accumulo-master module
    
    Re #1641 - create a relocation pom to trigger warnings in any Maven
    projects that depend on accumulo-master jar with information about its
    new maven coordinates.
    
    See https://maven.apache.org/guides/mini/guide-relocation.html
---
 pom.xml                  |  1 +
 server/master/.gitignore | 28 ++++++++++++++++++++++++++++
 server/master/pom.xml    | 40 ++++++++++++++++++++++++++++++++++++++++
 3 files changed, 69 insertions(+)

diff --git a/pom.xml b/pom.xml
index 43770a1..93f13d1 100644
--- a/pom.xml
+++ b/pom.xml
@@ -89,6 +89,7 @@
     <module>server/base</module>
     <module>server/gc</module>
     <module>server/manager</module>
+    <module>server/master</module>
     <module>server/monitor</module>
     <module>server/native</module>
     <module>server/tracer</module>
diff --git a/server/master/.gitignore b/server/master/.gitignore
new file mode 100644
index 0000000..e77a822
--- /dev/null
+++ b/server/master/.gitignore
@@ -0,0 +1,28 @@
+# 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.
+
+# Maven ignores
+/target/
+
+# IDE ignores
+/.settings/
+/.project
+/.classpath
+/.pydevproject
+/.idea
+/*.iml
+/nbproject/
+/nbactions.xml
+/nb-configuration.xml
diff --git a/server/master/pom.xml b/server/master/pom.xml
new file mode 100644
index 0000000..e860579
--- /dev/null
+++ b/server/master/pom.xml
@@ -0,0 +1,40 @@
+<?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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
+  <modelVersion>4.0.0</modelVersion>
+  <parent>
+    <groupId>org.apache.accumulo</groupId>
+    <artifactId>accumulo-project</artifactId>
+    <version>2.1.0-SNAPSHOT</version>
+    <relativePath>../../pom.xml</relativePath>
+  </parent>
+  <!-- should be removed in 3.0 -->
+  <artifactId>accumulo-master</artifactId>
+  <packaging>pom</packaging>
+  <name>Apache Accumulo Master Server (Deprecated)</name>
+  <description>The master server has been replaced by manager.</description>
+  <distributionManagement>
+    <relocation>
+      <artifactId>accumulo-manager</artifactId>
+    </relocation>
+  </distributionManagement>
+</project>