[Build] Remove usages of Provider.forUseAtConfigurationTime()

It's not required anymore and was deprecated since Gradle 7.4
#KTI-1221 In Progress
This commit is contained in:
Alexander.Likhachev
2023-05-17 15:38:24 +02:00
committed by Space Team
parent 58490ea184
commit 407a2d4203
3 changed files with 6 additions and 7 deletions
+1 -2
View File
@@ -331,8 +331,7 @@ fun Test.setUpBoxTests() {
systemProperty("kotlin.js.test.root.out.dir", "$nodeDir/")
systemProperty(
"overwrite.output", project.providers.gradleProperty("overwrite.output")
.forUseAtConfigurationTime().orNull ?: "false"
"overwrite.output", project.providers.gradleProperty("overwrite.output").orNull ?: "false"
)
forwardProperties()