You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hbase.apache.org by st...@apache.org on 2019/09/12 17:23:38 UTC

[hbase-operator-tools] branch HBASE-23002 updated: Change the groupid from org.apache.hbase to org.apache.hbase.operator.tools so doesn't clash with other hbase artifacts. Also add README, NOTICES, etc. to binary

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

stack pushed a commit to branch HBASE-23002
in repository https://gitbox.apache.org/repos/asf/hbase-operator-tools.git


The following commit(s) were added to refs/heads/HBASE-23002 by this push:
     new 4c0acf0  Change the groupid from org.apache.hbase to org.apache.hbase.operator.tools so doesn't clash with other hbase artifacts. Also add README, NOTICES, etc. to binary
4c0acf0 is described below

commit 4c0acf0fecfb5eafcd726e63f478b9ab7599e6c1
Author: stack <st...@apache.org>
AuthorDate: Thu Sep 12 10:23:19 2019 -0700

    Change the groupid from org.apache.hbase to org.apache.hbase.operator.tools so doesn't clash with other hbase artifacts. Also add README, NOTICES, etc. to binary
---
 hbase-hbck2/pom.xml                                     |  2 +-
 hbase-operator-tools-assembly/pom.xml                   |  4 ++--
 hbase-operator-tools-assembly/src/main/assembly/bin.xml | 14 +++++++++++++-
 pom.xml                                                 |  2 +-
 4 files changed, 17 insertions(+), 5 deletions(-)

diff --git a/hbase-hbck2/pom.xml b/hbase-hbck2/pom.xml
index 4e50b0e..b6b909e 100644
--- a/hbase-hbck2/pom.xml
+++ b/hbase-hbck2/pom.xml
@@ -22,7 +22,7 @@
   -->
   <modelVersion>4.0.0</modelVersion>
   <parent>
-    <groupId>org.apache.hbase</groupId>
+    <groupId>org.apache.hbase.operator.tools</groupId>
     <artifactId>hbase-operator-tools</artifactId>
     <version>1.0.0-SNAPSHOT</version>
     <relativePath>..</relativePath>
diff --git a/hbase-operator-tools-assembly/pom.xml b/hbase-operator-tools-assembly/pom.xml
index 4715d91..d282929 100644
--- a/hbase-operator-tools-assembly/pom.xml
+++ b/hbase-operator-tools-assembly/pom.xml
@@ -21,7 +21,7 @@
     -->
   <modelVersion>4.0.0</modelVersion>
   <parent>
-    <groupId>org.apache.hbase</groupId>
+    <groupId>org.apache.hbase.operator.tools</groupId>
     <artifactId>hbase-operator-tools</artifactId>
     <version>1.0.0-SNAPSHOT</version>
     <relativePath>..</relativePath>
@@ -56,7 +56,7 @@
   </build>
   <dependencies>
     <dependency>
-      <groupId>org.apache.hbase</groupId>
+      <groupId>org.apache.hbase.operator.tools</groupId>
       <artifactId>hbase-hbck2</artifactId>
       <version>${project.version}</version>
     </dependency>
diff --git a/hbase-operator-tools-assembly/src/main/assembly/bin.xml b/hbase-operator-tools-assembly/src/main/assembly/bin.xml
index 29266a6..2c580bf 100644
--- a/hbase-operator-tools-assembly/src/main/assembly/bin.xml
+++ b/hbase-operator-tools-assembly/src/main/assembly/bin.xml
@@ -33,7 +33,7 @@
       <useAllReactorProjects>true</useAllReactorProjects>
       <!-- Now, select which projects to include in this module-set. -->
       <includes>
-        <include>org.apache.hbase:hbase-hbck2</include>
+        <include>org.apache.hbase.operator.tools:hbase-hbck2</include>
       </includes>
       <binaries>
         <outputDirectory>hbase-hbck2/</outputDirectory>
@@ -57,6 +57,18 @@
       <lineEnding>unix</lineEnding>
     </file>
     <file>
+      <source>${project.parent.basedir}/NOTICE.txt</source>
+      <outputDirectory>.</outputDirectory>
+      <destName>NOTICE.txt</destName>
+      <lineEnding>unix</lineEnding>
+    </file>
+    <file>
+      <source>${project.parent.basedir}/README.md</source>
+      <outputDirectory>.</outputDirectory>
+      <destName>README.md</destName>
+      <lineEnding>unix</lineEnding>
+    </file>
+    <file>
       <source>${project.parent.basedir}/RELEASENOTES.md</source>
       <outputDirectory>.</outputDirectory>
       <destName>RELEASENOTES.md</destName>
diff --git a/pom.xml b/pom.xml
index 504e2d0..9c0d60b 100644
--- a/pom.xml
+++ b/pom.xml
@@ -36,7 +36,7 @@
     <relativePath/>
     <!-- no parent resolution -->
   </parent>
-  <groupId>org.apache.hbase</groupId>
+  <groupId>org.apache.hbase.operator.tools</groupId>
   <artifactId>hbase-operator-tools</artifactId>
   <version>1.0.0-SNAPSHOT</version>
   <name>Apache HBase Operator Tools</name>