Repository: hbase Updated Branches: refs/heads/branch-1.4 31bc54abd -> cd3628d52
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/d3cfb376 Tree: http://git-wip-us.apache.org/repos/asf/hbase/tree/d3cfb376 Diff: http://git-wip-us.apache.org/repos/asf/hbase/diff/d3cfb376 Branch: refs/heads/branch-1.4 Commit: d3cfb3762b3daf90c23aa2b230b2162d0f3cd0f6 Parents: 31bc54a Author: Andrew Purtell <[email protected]> Authored: Tue Jul 24 14:59:50 2018 -0700 Committer: Andrew Purtell <[email protected]> Committed: Tue Jul 24 14:59:50 2018 -0700 ---------------------------------------------------------------------- dev-support/make_rc.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/hbase/blob/d3cfb376/dev-support/make_rc.sh ---------------------------------------------------------------------- diff --git a/dev-support/make_rc.sh b/dev-support/make_rc.sh index 969c32b..1f01021 100755 --- a/dev-support/make_rc.sh +++ b/dev-support/make_rc.sh @@ -76,9 +76,9 @@ function build_src { # Build bin tgz function build_bin { MAVEN_OPTS="${mvnopts}" ${mvn} clean install -DskipTests -Papache-release -Prelease \ - -Dmaven.repo.local=${output_dir}/repository + -Dhttps.protocols=TLSv1.2 -Dmaven.repo.local=${output_dir}/repository MAVEN_OPTS="${mvnopts}" ${mvn} install -DskipTests site assembly:single -Papache-release -Prelease \ - -Dmaven.repo.local=${output_dir}/repository + -Dhttps.protocols=TLSv1.2 -Dmaven.repo.local=${output_dir}/repository mv ./hbase-assembly/target/hbase-*.tar.gz "${output_dir}" } @@ -102,7 +102,7 @@ build_bin # upload from repository.apache.org by 'drop'ping it from the staging # repository before restart. MAVEN_OPTS="${mvnopts}" ${mvn} deploy -DskipTests -Papache-release -Prelease \ - -Dmaven.repo.local=${output_dir}/repository + -Dhttps.protocols=TLSv1.2 -Dmaven.repo.local=${output_dir}/repository # Do sha512 and md5 cd ${output_dir}
