From 0609edb4b86ecd5856e5394247410f1f00579904 Mon Sep 17 00:00:00 2001 From: Pavel Punegov Date: Tue, 28 Feb 2023 14:21:00 +0000 Subject: [PATCH] [K/N][test] Get rid of the Gradle warning in the old infra This outputDirectory property was marked incorrectly as OutputDirectory. It points to test build tasks output and should not be considered during up-to-date checks. Merge-request: KT-MR-9019 Merged-by: Pavel Punegov --- .../src/main/kotlin/org/jetbrains/kotlin/KotlinNativeTest.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kotlin-native/build-tools/src/main/kotlin/org/jetbrains/kotlin/KotlinNativeTest.kt b/kotlin-native/build-tools/src/main/kotlin/org/jetbrains/kotlin/KotlinNativeTest.kt index 5187c4ee473..76dd9f78fcc 100644 --- a/kotlin-native/build-tools/src/main/kotlin/org/jetbrains/kotlin/KotlinNativeTest.kt +++ b/kotlin-native/build-tools/src/main/kotlin/org/jetbrains/kotlin/KotlinNativeTest.kt @@ -41,7 +41,7 @@ abstract class KonanTest : DefaultTask(), KonanTestExecutable { /** * Test output directory. Used to store processed sources and binary artifacts. */ - @get:OutputDirectory + @get:Internal abstract val outputDirectory: String /**