You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hbase.apache.org by ps...@apache.org on 2019/01/16 09:11:44 UTC

[hbase] branch branch-1.2 updated: HBASE-21711 Remove references to git.apache.org/hbase.git

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

psomogyi pushed a commit to branch branch-1.2
in repository https://gitbox.apache.org/repos/asf/hbase.git


The following commit(s) were added to refs/heads/branch-1.2 by this push:
     new 91e8666  HBASE-21711 Remove references to git.apache.org/hbase.git
91e8666 is described below

commit 91e86669c4bd6406e1954cc21439388eae6d2973
Author: Peter Somogyi <ps...@apache.org>
AuthorDate: Tue Jan 15 12:06:03 2019 +0100

    HBASE-21711 Remove references to git.apache.org/hbase.git
---
 dev-support/hbase_docker/Dockerfile        | 2 +-
 pom.xml                                    | 2 +-
 src/main/asciidoc/_chapters/developer.adoc | 3 +--
 src/main/asciidoc/_chapters/zookeeper.adoc | 2 +-
 4 files changed, 4 insertions(+), 5 deletions(-)

diff --git a/dev-support/hbase_docker/Dockerfile b/dev-support/hbase_docker/Dockerfile
index 9f55a44..71da8f6 100644
--- a/dev-support/hbase_docker/Dockerfile
+++ b/dev-support/hbase_docker/Dockerfile
@@ -38,7 +38,7 @@ ENV MAVEN_HOME /usr/local/apache-maven
 ENV PATH /usr/java/bin:/usr/local/apache-maven/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
 
 # Pull down HBase and build it into /root/hbase-bin.
-RUN git clone http://git.apache.org/hbase.git -b branch-1
+RUN git clone https://gitbox.apache.org/repos/asf/hbase.git -b branch-1
 RUN mvn clean install -DskipTests assembly:single -f ./hbase/pom.xml
 RUN mkdir -p hbase-bin
 RUN tar xzf /root/hbase/hbase-assembly/target/*tar.gz --strip-components 1 -C /root/hbase-bin
diff --git a/pom.xml b/pom.xml
index 9c07078..2e28f2a 100644
--- a/pom.xml
+++ b/pom.xml
@@ -90,7 +90,7 @@
     </pluginRepository>
   </pluginRepositories>
   <scm>
-    <connection>scm:git:git://git.apache.org/hbase.git</connection>
+    <connection>scm:git:git://gitbox.apache.org/repos/asf/hbase.git</connection>
     <developerConnection>scm:git:https://gitbox.apache.org/repos/asf/hbase.git</developerConnection>
     <url>https://gitbox.apache.org/repos/asf?p=hbase.git</url>
   </scm>
diff --git a/src/main/asciidoc/_chapters/developer.adoc b/src/main/asciidoc/_chapters/developer.adoc
index 2c9631d..b51cf65 100644
--- a/src/main/asciidoc/_chapters/developer.adoc
+++ b/src/main/asciidoc/_chapters/developer.adoc
@@ -89,8 +89,7 @@ GIT is our repository of record for all but the Apache HBase website.
 We used to be on SVN.
 We migrated.
 See link:https://issues.apache.org/jira/browse/INFRA-7768[Migrate Apache HBase SVN Repos to Git].
-See link:http://hbase.apache.org/source-repository.html[Source Code
-                Management] page for contributor and committer links or search for HBase on the link:http://git.apache.org/[Apache Git] page.
+See link:https://hbase.apache.org/source-repository.html[Source Code Management] page for contributor and committer links or search for HBase on the link:https://gitbox.apache.org/repos/asf/[Apache Git] page.
 
 == IDEs
 
diff --git a/src/main/asciidoc/_chapters/zookeeper.adoc b/src/main/asciidoc/_chapters/zookeeper.adoc
index ee76d80..6ecf5eb 100644
--- a/src/main/asciidoc/_chapters/zookeeper.adoc
+++ b/src/main/asciidoc/_chapters/zookeeper.adoc
@@ -409,7 +409,7 @@ Next checkout code and run a sanity check.
 
 ----
 
-git clone git://git.apache.org/hbase.git
+git clone https://gitbox.apache.org/repos/asf/hbase.git
 cd hbase
 mvn clean test -Dtest=TestZooKeeperACL
 ----