Remove calls to deprecated Project.getBuildDir() in Gradle files

Closes gh-42739
This commit is contained in:
Moritz Halbritter
2024-10-17 17:41:00 +02:00
parent a48dfbd5c7
commit ce106eb43c
16 changed files with 64 additions and 63 deletions

View File

@@ -84,7 +84,7 @@ dependencies {
}
task syncIntTestDependencies(type: Sync) {
destinationDir = file("${buildDir}/dependencies")
destinationDir = file(layout.buildDirectory.dir("dependencies"))
from {
configurations.intTestDependencies
}