From 13120d23ce8bf1eed309450187ca0efd506377d6 Mon Sep 17 00:00:00 2001 From: Sergey Igushkin Date: Thu, 11 Apr 2019 16:27:21 +0300 Subject: [PATCH] Fix Gradle task validation failure due to missing property annotation --- .../jetbrains/kotlin/gradle/internal/CompilerArgumentAware.kt | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/libraries/tools/kotlin-gradle-plugin/src/main/kotlin/org/jetbrains/kotlin/gradle/internal/CompilerArgumentAware.kt b/libraries/tools/kotlin-gradle-plugin/src/main/kotlin/org/jetbrains/kotlin/gradle/internal/CompilerArgumentAware.kt index 8a20c15db96..41331e87c68 100644 --- a/libraries/tools/kotlin-gradle-plugin/src/main/kotlin/org/jetbrains/kotlin/gradle/internal/CompilerArgumentAware.kt +++ b/libraries/tools/kotlin-gradle-plugin/src/main/kotlin/org/jetbrains/kotlin/gradle/internal/CompilerArgumentAware.kt @@ -52,6 +52,10 @@ interface CompilerArgumentAwareWithInput : CompilerArgu override val defaultSerializedCompilerArguments: List get() = super.defaultSerializedCompilerArguments + @get:Internal + override val serializedCompilerArgumentsIgnoreClasspathIssues: List + get() = super.serializedCompilerArgumentsIgnoreClasspathIssues + @get:Input override val filteredArgumentsMap: Map get() = super.filteredArgumentsMap