diff --git a/dev-support/hbase_docker/Dockerfile b/dev-support/hbase_docker/Dockerfile index 9f55a441538..71da8f642da 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 8a8fc00584f..372a4600a65 100644 --- a/pom.xml +++ b/pom.xml @@ -93,7 +93,7 @@ - scm:git:git://git.apache.org/hbase.git + scm:git:git://gitbox.apache.org/repos/asf/hbase.git scm:git:https://gitbox.apache.org/repos/asf/hbase.git https://gitbox.apache.org/repos/asf?p=hbase.git diff --git a/src/main/asciidoc/_chapters/developer.adoc b/src/main/asciidoc/_chapters/developer.adoc index 35dc4810926..9f4b15dcd7b 100644 --- a/src/main/asciidoc/_chapters/developer.adoc +++ b/src/main/asciidoc/_chapters/developer.adoc @@ -173,8 +173,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:https://hbase.apache.org/source-repository.html[Source Code - Management] page for contributor and committer links or search for HBase on the link:https://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 f6134b73622..f27a3c57ad2 100644 --- a/src/main/asciidoc/_chapters/zookeeper.adoc +++ b/src/main/asciidoc/_chapters/zookeeper.adoc @@ -408,7 +408,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 ----