Skip to content

Commit e0d3396

Browse files
authored
Update Gradle wrapper to 9.1.0 (#2455) (#2458)
* Update Gradle wrapper to 9.1.0 * Fix deprecation warnings (cherry picked from commit cde55dd)
1 parent 0c60945 commit e0d3396

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

buildSrc/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ dependencies {
7777
if (localRepo) {
7878
implementation name: "build-tools-${buildToolsVersion}"
7979
} else {
80-
implementation group: 'org.elasticsearch.gradle', name: 'build-tools', version: buildToolsVersion
80+
implementation "org.elasticsearch.gradle:build-tools:$buildToolsVersion"
8181
}
8282
}
8383

gradle/wrapper/gradle-wrapper.jar

1.65 KB
Binary file not shown.

gradle/wrapper/gradle-wrapper.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionSha256Sum=f759b8dd5204e2e3fa4ca3e73f452f087153cf81bac9561eeb854229cc2c5365
4-
distributionUrl=https\://services.gradle.org/distributions/gradle-9.0.0-all.zip
3+
distributionSha256Sum=b84e04fa845fecba48551f425957641074fcc00a88a84d2aae5808743b35fc85
4+
distributionUrl=https\://services.gradle.org/distributions/gradle-9.1.0-all.zip
55
networkTimeout=10000
66
validateDistributionUrl=true
77
zipStoreBase=GRADLE_USER_HOME

gradlew

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/bin/sh
22

33
#
4-
# Copyright © 2015-2021 the original authors.
4+
# Copyright © 2015 the original authors.
55
#
66
# Licensed under the Apache License, Version 2.0 (the "License");
77
# you may not use this file except in compliance with the License.

qa/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ subprojects {
4747
if (localRepo) {
4848
classpath name: "build-tools-${version}"
4949
} else {
50-
classpath group: 'org.elasticsearch.gradle', name: 'build-tools', version: project.ext.buildToolsVersion
50+
classpath "org.elasticsearch.gradle:build-tools:${project.ext.buildToolsVersion}"
5151
}
5252
}
5353
}

0 commit comments

Comments
 (0)