From 502c3c29cc0521b3350b6937b44ab763c9f872d0 Mon Sep 17 00:00:00 2001 From: akerimsenol <117925183+akerimsenol@users.noreply.github.com> Date: Wed, 26 Apr 2023 14:06:10 +0000 Subject: [PATCH] Omit dependency classpath from compiler args This is in the context of the following issue: https://youtrack.jetbrains.com/issue/KTIJ-24724 --- .../jetbrains/kotlin/gradle/internal/CompilerArgumentAware.kt | 1 - 1 file changed, 1 deletion(-) diff --git a/libraries/tools/kotlin-gradle-plugin/src/common/kotlin/org/jetbrains/kotlin/gradle/internal/CompilerArgumentAware.kt b/libraries/tools/kotlin-gradle-plugin/src/common/kotlin/org/jetbrains/kotlin/gradle/internal/CompilerArgumentAware.kt index 4c00c4e6a30..be09253209f 100644 --- a/libraries/tools/kotlin-gradle-plugin/src/common/kotlin/org/jetbrains/kotlin/gradle/internal/CompilerArgumentAware.kt +++ b/libraries/tools/kotlin-gradle-plugin/src/common/kotlin/org/jetbrains/kotlin/gradle/internal/CompilerArgumentAware.kt @@ -81,5 +81,4 @@ interface CompilerArgumentAware : KotlinCompilerArgumen private val includedArgumentTypes = setOf( ArgumentType.Primitive, ArgumentType.PluginClasspath, - ArgumentType.DependencyClasspath, )