HBASE-21711 Remove references to git.apache.org/hbase.git

This commit is contained in:
Peter Somogyi 2019-01-15 12:06:03 +01:00
parent 936ff59b76
commit cf87877fcf
4 changed files with 4 additions and 5 deletions

View File

@ -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

View File

@ -93,7 +93,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>

View File

@ -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

View File

@ -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
----