You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hbase.apache.org by je...@apache.org on 2015/05/01 08:02:06 UTC

hbase git commit: HBASE-13598 Make hbase assembly attach to the project

Repository: hbase
Updated Branches:
  refs/heads/master 6399cd2c4 -> 1d26d2640


HBASE-13598 Make hbase assembly attach to the project


Project: http://git-wip-us.apache.org/repos/asf/hbase/repo
Commit: http://git-wip-us.apache.org/repos/asf/hbase/commit/1d26d264
Tree: http://git-wip-us.apache.org/repos/asf/hbase/tree/1d26d264
Diff: http://git-wip-us.apache.org/repos/asf/hbase/diff/1d26d264

Branch: refs/heads/master
Commit: 1d26d2640734b919d9bf266326e211be0478c711
Parents: 6399cd2
Author: Jerry He <je...@apache.org>
Authored: Thu Apr 30 23:01:11 2015 -0700
Committer: Jerry He <je...@apache.org>
Committed: Thu Apr 30 23:01:11 2015 -0700

----------------------------------------------------------------------
 hbase-assembly/pom.xml                     |  3 ---
 pom.xml                                    |  2 --
 src/main/asciidoc/_chapters/developer.adoc | 10 ++++++++++
 3 files changed, 10 insertions(+), 5 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/hbase/blob/1d26d264/hbase-assembly/pom.xml
----------------------------------------------------------------------
diff --git a/hbase-assembly/pom.xml b/hbase-assembly/pom.xml
index 4aa7759..87ff28a 100644
--- a/hbase-assembly/pom.xml
+++ b/hbase-assembly/pom.xml
@@ -42,9 +42,6 @@
           <finalName>hbase-${project.version}</finalName>
           <skipAssembly>false</skipAssembly>
           <appendAssemblyId>true</appendAssemblyId>
-          <!--We do not want assembly attached; run on command-line explicitly
-               if you want to do an assembly-->
-          <attach>false</attach>
           <tarLongFileMode>gnu</tarLongFileMode>
           <descriptors>
             <descriptor>${assembly.file}</descriptor>

http://git-wip-us.apache.org/repos/asf/hbase/blob/1d26d264/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index 2b4375e..333dc56 100644
--- a/pom.xml
+++ b/pom.xml
@@ -772,8 +772,6 @@
             <!--Defer to the hbase-assembly sub-module.  It
              does all assembly-->
             <skipAssembly>true</skipAssembly>
-            <!--Do not attach assembly to project.-->
-            <attach>false</attach>
           </configuration>
         </plugin>
         <plugin>

http://git-wip-us.apache.org/repos/asf/hbase/blob/1d26d264/src/main/asciidoc/_chapters/developer.adoc
----------------------------------------------------------------------
diff --git a/src/main/asciidoc/_chapters/developer.adoc b/src/main/asciidoc/_chapters/developer.adoc
index 26ba325..1fbf8a3 100644
--- a/src/main/asciidoc/_chapters/developer.adoc
+++ b/src/main/asciidoc/_chapters/developer.adoc
@@ -401,6 +401,16 @@ mvn -DskipTests clean install && mvn -DskipTests package assembly:single
 
 The distribution tarball is built in _hbase-assembly/target/hbase-<version>-bin.tar.gz_.
 
+You can install or deploy the tarball by having the assembly:single goal before install or deploy in the maven command:
+
+----
+mvn -DskipTests package assembly:single install
+----
+----
+mvn -DskipTests package assembly:single deploy
+----
+
+
 [[build.gotchas]]
 ==== Build Gotchas