Use https to obtain Lucene snapshots (#39458)

This commit changes the protocol used to download Lucene snapshots.
This commit is contained in:
Jason Tedor 2019-02-27 11:39:49 -05:00
parent dedbe60e0a
commit 6d72d45e33
No known key found for this signature in database
GPG Key ID: FA89F05560F16BC5

View File

@ -591,7 +591,7 @@ class BuildPlugin implements Plugin<Project> {
String revision = (luceneVersion =~ /\w+-snapshot-([a-z0-9]+)/)[0][1]
repos.maven {
name 'lucene-snapshots'
url "http://s3.amazonaws.com/download.elasticsearch.org/lucenesnapshots/${revision}"
url "https://s3.amazonaws.com/download.elasticsearch.org/lucenesnapshots/${revision}"
}
}
}