@@ -163,20 +163,20 @@ class BaseBuildPlugin implements Plugin<Project> {
163
163
*/
164
164
private static void configureRepositories (Project project ) {
165
165
project. repositories. mavenCentral()
166
- project. repositories. maven { url " https://clojars.org/repo" }
166
+ project. repositories. maven { url = " https://clojars.org/repo" }
167
167
168
168
// For Elasticsearch snapshots.
169
- project. repositories. maven { url " https://snapshots.elastic.co/maven/" } // default
170
- project. repositories. maven { url " https://oss.sonatype.org/content/repositories/snapshots" } // oss-only
169
+ project. repositories. maven { url = " https://snapshots.elastic.co/maven/" } // default
170
+ project. repositories. maven { url = " https://oss.sonatype.org/content/repositories/snapshots" } // oss-only
171
171
172
172
// Elastic artifacts
173
- project. repositories. maven { url " https://artifacts.elastic.co/maven/" } // default
174
- project. repositories. maven { url " https://oss.sonatype.org/content/groups/public/" } // oss-only
173
+ project. repositories. maven { url = " https://artifacts.elastic.co/maven/" } // default
174
+ project. repositories. maven { url = " https://oss.sonatype.org/content/groups/public/" } // oss-only
175
175
176
176
// Add Ivy repos in order to pull Elasticsearch distributions that have bundled JDKs
177
177
for (String repo : [' snapshots' , ' artifacts' ]) {
178
178
project. repositories. ivy {
179
- url " https://${ repo} .elastic.co/downloads"
179
+ url = " https://${ repo} .elastic.co/downloads"
180
180
patternLayout {
181
181
artifact " elasticsearch/[module]-[revision](-[classifier]).[ext]"
182
182
}
@@ -188,8 +188,8 @@ class BaseBuildPlugin implements Plugin<Project> {
188
188
// Extract the revision number of the snapshot via regex:
189
189
String revision = (project. ext. luceneVersion =~ / \w +-snapshot-([a-z0-9]+)/ )[0 ][1 ]
190
190
project. repositories. maven {
191
- name ' lucene-snapshots'
192
- url " https://s3.amazonaws.com/download.elasticsearch.org/lucenesnapshots/${ revision} "
191
+ name = ' lucene-snapshots'
192
+ url = " https://s3.amazonaws.com/download.elasticsearch.org/lucenesnapshots/${ revision} "
193
193
}
194
194
}
195
195
}
0 commit comments