Fix exposing provided by Gradle Kotlin dependencies.

Ensure that Gradle plugin dependencies do not include kotlin-stdlib,
kotlin-reflect and other dependencies that are provided by Gradle
runtime.

^KT-41142 Fixed
This commit is contained in:
Yahor Berdnikau
2021-04-27 20:10:37 +02:00
committed by teamcityserver
parent 1198b40c11
commit 13fd2a24ea
14 changed files with 126 additions and 92 deletions
+1 -1
View File
@@ -4,7 +4,7 @@ plugins {
}
dependencies {
compile(kotlinStdlib())
implementation(kotlinStdlib())
testImplementation(commonDep("junit:junit"))
}