Skip to content

Commit fd2a9b2

Browse files
committed
Fix deprecation warnings
1 parent 954bd57 commit fd2a9b2

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
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

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)