diff --git a/buildSrc/build.gradle b/buildSrc/build.gradle index a6cc1ac09..2d671d230 100644 --- a/buildSrc/build.gradle +++ b/buildSrc/build.gradle @@ -77,7 +77,7 @@ dependencies { if (localRepo) { implementation name: "build-tools-${buildToolsVersion}" } else { - implementation group: 'org.elasticsearch.gradle', name: 'build-tools', version: buildToolsVersion + implementation "org.elasticsearch.gradle:build-tools:$buildToolsVersion" } } diff --git a/gradle/wrapper/gradle-wrapper.jar b/gradle/wrapper/gradle-wrapper.jar index 1b33c55ba..8bdaf60c7 100644 Binary files a/gradle/wrapper/gradle-wrapper.jar and b/gradle/wrapper/gradle-wrapper.jar differ diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties index 01450089d..6bf62392c 100644 --- a/gradle/wrapper/gradle-wrapper.properties +++ b/gradle/wrapper/gradle-wrapper.properties @@ -1,7 +1,7 @@ distributionBase=GRADLE_USER_HOME distributionPath=wrapper/dists -distributionSha256Sum=f759b8dd5204e2e3fa4ca3e73f452f087153cf81bac9561eeb854229cc2c5365 -distributionUrl=https\://services.gradle.org/distributions/gradle-9.0.0-all.zip +distributionSha256Sum=b84e04fa845fecba48551f425957641074fcc00a88a84d2aae5808743b35fc85 +distributionUrl=https\://services.gradle.org/distributions/gradle-9.1.0-all.zip networkTimeout=10000 validateDistributionUrl=true zipStoreBase=GRADLE_USER_HOME diff --git a/gradlew b/gradlew index 23d15a936..ef07e0162 100755 --- a/gradlew +++ b/gradlew @@ -1,7 +1,7 @@ #!/bin/sh # -# Copyright © 2015-2021 the original authors. +# Copyright © 2015 the original authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/qa/build.gradle b/qa/build.gradle index fa4e4283d..ca03cca82 100644 --- a/qa/build.gradle +++ b/qa/build.gradle @@ -47,7 +47,7 @@ subprojects { if (localRepo) { classpath name: "build-tools-${version}" } else { - classpath group: 'org.elasticsearch.gradle', name: 'build-tools', version: project.ext.buildToolsVersion + classpath "org.elasticsearch.gradle:build-tools:${project.ext.buildToolsVersion}" } } }