mirror of
https://github.com/honeymoose/OpenSearch.git
synced 2025-02-10 06:55:32 +00:00
Fix all deprecations in resolveAllDependencies (#59751)
This fixes #59743
This commit is contained in:
parent
4827fec1cf
commit
11b6bba984
@ -442,10 +442,8 @@ allprojects {
|
||||
dependsOn tasks.withType(ComposePull)
|
||||
}
|
||||
doLast {
|
||||
configurations.findAll {
|
||||
it.isCanBeResolved() &&
|
||||
it.name.equals("testCompile") == false &&
|
||||
it.name.equals("compile") == false
|
||||
configurations.findAll { it.isCanBeResolved() &&
|
||||
((it instanceof org.gradle.internal.deprecation.DeprecatableConfiguration) && it.canSafelyBeResolved())
|
||||
}.each { it.resolve() }
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user