Skip to content

Commit ee3d762

Browse files
authored
Update Gradle wrapper to 8.12 (#2306)
* Update Gradle wrapper to 8.12 * Fix Gradle deprecations in Gradle 8.12
1 parent bc96a65 commit ee3d762

File tree

6 files changed

+22
-22
lines changed

6 files changed

+22
-22
lines changed

buildSrc/build.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -60,8 +60,8 @@ repositories {
6060
// For some reason the root dirs all point to the buildSrc folder. The local Repo will be one above that.
6161
flatDir { dirs new File(project.rootDir, "../localRepo") }
6262
} else {
63-
maven { url "https://oss.sonatype.org/content/repositories/snapshots" }
64-
maven { url "https://artifacts-snapshot.elastic.co/elasticsearch/${esVersion}/maven" }
63+
maven { url = "https://oss.sonatype.org/content/repositories/snapshots" }
64+
maven { url = "https://artifacts-snapshot.elastic.co/elasticsearch/${esVersion}/maven" }
6565
}
6666
}
6767

buildSrc/src/main/groovy/org/elasticsearch/hadoop/gradle/BaseBuildPlugin.groovy

+8-8
Original file line numberDiff line numberDiff line change
@@ -163,20 +163,20 @@ class BaseBuildPlugin implements Plugin<Project> {
163163
*/
164164
private static void configureRepositories(Project project) {
165165
project.repositories.mavenCentral()
166-
project.repositories.maven { url "https://clojars.org/repo" }
166+
project.repositories.maven { url = "https://clojars.org/repo" }
167167

168168
// 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
171171

172172
// 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
175175

176176
// Add Ivy repos in order to pull Elasticsearch distributions that have bundled JDKs
177177
for (String repo : ['snapshots', 'artifacts']) {
178178
project.repositories.ivy {
179-
url "https://${repo}.elastic.co/downloads"
179+
url = "https://${repo}.elastic.co/downloads"
180180
patternLayout {
181181
artifact "elasticsearch/[module]-[revision](-[classifier]).[ext]"
182182
}
@@ -188,8 +188,8 @@ class BaseBuildPlugin implements Plugin<Project> {
188188
// Extract the revision number of the snapshot via regex:
189189
String revision = (project.ext.luceneVersion =~ /\w+-snapshot-([a-z0-9]+)/)[0][1]
190190
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}"
193193
}
194194
}
195195
}

buildSrc/src/main/groovy/org/elasticsearch/hadoop/gradle/BuildPlugin.groovy

+7-7
Original file line numberDiff line numberDiff line change
@@ -834,15 +834,15 @@ class BuildPlugin implements Plugin<Project> {
834834
integrationTest.maxHeapSize = "2g"
835835

836836
integrationTest.testLogging {
837-
displayGranularity 0
837+
displayGranularity = 0
838838
events "started", "failed" //, "standardOut", "standardError"
839-
exceptionFormat "full"
840-
showCauses true
841-
showExceptions true
842-
showStackTraces true
839+
exceptionFormat = "full"
840+
showCauses = true
841+
showExceptions = true
842+
showStackTraces = true
843843
stackTraceFilters "groovy"
844-
minGranularity 2
845-
maxGranularity 2
844+
minGranularity = 2
845+
maxGranularity = 2
846846
}
847847

848848
integrationTest.reports.html.required = false

gradle/wrapper/gradle-wrapper.properties

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionSha256Sum=2ab88d6de2c23e6adae7363ae6e29cbdd2a709e992929b48b6530fd0c7133bd6
4-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.10.2-all.zip
3+
distributionSha256Sum=7ebdac923867a3cec0098302416d1e3c6c0c729fc4e2e05c10637a8af33a76c5
4+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.12-all.zip
55
networkTimeout=10000
66
validateDistributionUrl=true
77
zipStoreBase=GRADLE_USER_HOME

qa/build.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,8 @@ subprojects {
3939
// For some reason the root dirs all point to the buildSrc folder. The local Repo will be one above that.
4040
flatDir { dirs new File(project.rootProject.rootDir, "localRepo") }
4141
} else {
42-
maven { url "https://oss.sonatype.org/content/repositories/snapshots" }
43-
maven { url "https://artifacts-snapshot.elastic.co/elasticsearch/${version}/maven" }
42+
maven { url = "https://oss.sonatype.org/content/repositories/snapshots" }
43+
maven { url = "https://artifacts-snapshot.elastic.co/elasticsearch/${version}/maven" }
4444
}
4545
}
4646
dependencies {

thirdparty/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import org.elasticsearch.hadoop.gradle.BuildPlugin
55
buildscript {
66
repositories {
77
maven {
8-
url 'https://jitpack.io'
8+
url = 'https://jitpack.io'
99
}
1010
mavenCentral()
1111
}

0 commit comments

Comments
 (0)