Update some more S3 artifact locations to use https
This commit updates some additional S3 artifact locations to use https
instead of http.
Relates 241c4ef97a
This commit is contained in:
parent
b69e28177b
commit
8df13b474d
|
@ -117,7 +117,7 @@ public class BuildExamplePluginsIT extends GradleIntegrationTestCase {
|
||||||
String luceneSnapshotRevision = System.getProperty("test.lucene-snapshot-revision");
|
String luceneSnapshotRevision = System.getProperty("test.lucene-snapshot-revision");
|
||||||
if (luceneSnapshotRepo != null) {
|
if (luceneSnapshotRepo != null) {
|
||||||
luceneSnapshotRepo = " maven {\n" +
|
luceneSnapshotRepo = " maven {\n" +
|
||||||
" url \"http://s3.amazonaws.com/download.elasticsearch.org/lucenesnapshots/" + luceneSnapshotRevision + "\"\n" +
|
" url \"https://s3.amazonaws.com/download.elasticsearch.org/lucenesnapshots/" + luceneSnapshotRevision + "\"\n" +
|
||||||
" }\n";
|
" }\n";
|
||||||
}
|
}
|
||||||
writeBuildScript("\n" +
|
writeBuildScript("\n" +
|
||||||
|
|
|
@ -57,7 +57,7 @@ For Maven:
|
||||||
<repository>
|
<repository>
|
||||||
<id>elastic-lucene-snapshots</id>
|
<id>elastic-lucene-snapshots</id>
|
||||||
<name>Elastic Lucene Snapshots</name>
|
<name>Elastic Lucene Snapshots</name>
|
||||||
<url>http://s3.amazonaws.com/download.elasticsearch.org/lucenesnapshots/00142c9</url>
|
<url>https://s3.amazonaws.com/download.elasticsearch.org/lucenesnapshots/00142c9</url>
|
||||||
<releases><enabled>true</enabled></releases>
|
<releases><enabled>true</enabled></releases>
|
||||||
<snapshots><enabled>false</enabled></snapshots>
|
<snapshots><enabled>false</enabled></snapshots>
|
||||||
</repository>
|
</repository>
|
||||||
|
@ -68,7 +68,7 @@ For Gradle:
|
||||||
["source","groovy",subs="attributes"]
|
["source","groovy",subs="attributes"]
|
||||||
--------------------------------------------------
|
--------------------------------------------------
|
||||||
maven {
|
maven {
|
||||||
url 'http://s3.amazonaws.com/download.elasticsearch.org/lucenesnapshots/00142c9'
|
url 'https://s3.amazonaws.com/download.elasticsearch.org/lucenesnapshots/00142c9'
|
||||||
}
|
}
|
||||||
--------------------------------------------------
|
--------------------------------------------------
|
||||||
|
|
||||||
|
|
|
@ -93,7 +93,7 @@ For Maven:
|
||||||
<repository>
|
<repository>
|
||||||
<id>elastic-lucene-snapshots</id>
|
<id>elastic-lucene-snapshots</id>
|
||||||
<name>Elastic Lucene Snapshots</name>
|
<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>
|
<releases><enabled>true</enabled></releases>
|
||||||
<snapshots><enabled>false</enabled></snapshots>
|
<snapshots><enabled>false</enabled></snapshots>
|
||||||
</repository>
|
</repository>
|
||||||
|
@ -104,7 +104,7 @@ For Gradle:
|
||||||
["source","groovy",subs="attributes"]
|
["source","groovy",subs="attributes"]
|
||||||
--------------------------------------------------
|
--------------------------------------------------
|
||||||
maven {
|
maven {
|
||||||
url 'http://s3.amazonaws.com/download.elasticsearch.org/lucenesnapshots/83f9835'
|
url 'https://s3.amazonaws.com/download.elasticsearch.org/lucenesnapshots/83f9835'
|
||||||
}
|
}
|
||||||
--------------------------------------------------
|
--------------------------------------------------
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue