Update some more S3 artifact locations to use https

This commit updates some additional S3 artifact locations to use https
instead of http.

Relates 0e9d9f8a04
This commit is contained in:
Jason Tedor 2019-05-04 08:28:30 -04:00
parent 0e9d9f8a04
commit 012a1de71c
No known key found for this signature in database
GPG key ID: FA89F05560F16BC5
3 changed files with 5 additions and 5 deletions

View file

@ -93,7 +93,7 @@ For Maven:
<repository>
<id>elastic-lucene-snapshots</id>
<name>Elastic Lucene Snapshots</name>
<url>http://s3.amazonaws.com/download.elasticsearch.org/lucenesnapshots/83f9835</url>
<url>https://s3.amazonaws.com/download.elasticsearch.org/lucenesnapshots/83f9835</url>
<releases><enabled>true</enabled></releases>
<snapshots><enabled>false</enabled></snapshots>
</repository>
@ -104,7 +104,7 @@ For Gradle:
["source","groovy",subs="attributes"]
--------------------------------------------------
maven {
url 'http://s3.amazonaws.com/download.elasticsearch.org/lucenesnapshots/83f9835'
url 'https://s3.amazonaws.com/download.elasticsearch.org/lucenesnapshots/83f9835'
}
--------------------------------------------------