We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3f9fea2 commit 816cedcCopy full SHA for 816cedc
qa/packaging/build.gradle
@@ -38,11 +38,6 @@ tasks.register('destructivePackagingTest') {
38
}
39
40
tasks.named('resolveAllDependencies') {
41
- // Don't try and resolve all distros but only the latest patch versions of each minor
42
- def latestBugfixVersions = org.elasticsearch.gradle.internal.info.BuildParams.getBwcVersions().getIndexCompatible()
43
- .groupBy { [it.major, it.minor] }
44
- .collectEntries { key, value -> [key, value.max()] }
45
- .values()
46
-
47
- configs = configurations.matching { configName -> latestBugfixVersions.any { v -> configName.name.endsWith(v.toString()) } }
+ // avoid resolving all elasticsearch distros
+ enabled = false
48
0 commit comments