You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hbase.apache.org by ap...@apache.org on 2018/07/24 22:40:07 UTC

[2/3] hbase git commit: HBASE-20931 [branch-1] Add -Dhttps.protocols=TLSv1.2 to Maven command line in make_rc.sh

HBASE-20931 [branch-1] Add -Dhttps.protocols=TLSv1.2 to Maven command line in make_rc.sh


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

Branch: refs/heads/branch-1.3
Commit: fb6b9221b13919339748b9d02e0ed73e3264c12b
Parents: 3d6c51e
Author: Andrew Purtell <ap...@apache.org>
Authored: Tue Jul 24 14:59:50 2018 -0700
Committer: Andrew Purtell <ap...@apache.org>
Committed: Tue Jul 24 15:05:10 2018 -0700

----------------------------------------------------------------------
 dev-support/make_rc.sh | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/hbase/blob/fb6b9221/dev-support/make_rc.sh
----------------------------------------------------------------------
diff --git a/dev-support/make_rc.sh b/dev-support/make_rc.sh
index 5705dcc..db09801 100755
--- a/dev-support/make_rc.sh
+++ b/dev-support/make_rc.sh
@@ -53,12 +53,12 @@ function tgz_mover {
 
 function deploy {
   MAVEN_OPTS="${mvnopts}" ${mvn} clean install -DskipTests -Prelease \
-    -Dmaven.repo.local=${archivedir}/repository
+    -Dhttps.protocols=TLSv1.2 -Dmaven.repo.local=${archivedir}/repository
   MAVEN_OPTS="${mvnopts}" ${mvn} install -DskipTests post-site assembly:single -Prelease \
-    -Dmaven.repo.local=${archivedir}/repository
+    -Dhttps.protocols=TLSv1.2 -Dmaven.repo.local=${archivedir}/repository
   tgz_mover
   MAVEN_OPTS="${mvnopts}" ${mvn} deploy -DskipTests -Papache-release -Prelease \
-    -Dmaven.repo.local=${archivedir}/repository
+    -Dhttps.protocols=TLSv1.2 -Dmaven.repo.local=${archivedir}/repository
 }
 
 # Build src tarball
@@ -66,7 +66,7 @@ function deploy {
 MAVEN_OPTS="${mvnopts}" ${mvn} clean
 MAVEN_OPTS="${mvnopts}" ${mvn} install -DskipTests assembly:single \
   -Dassembly.file="$(pwd)/hbase-assembly/src/main/assembly/src.xml" \
-  -Prelease -Dmaven.repo.local=${archivedir}/repository
+  -Prelease -Dhttps.protocols=TLSv1.2 -Dmaven.repo.local=${archivedir}/repository
 
 tgz_mover