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,15 +1,13 @@
description = "kotlin-gradle-statistics"
plugins {
kotlin("jvm")
id("gradle-plugin-common-configuration")
id("jps-compatible")
}
dependencies {
compileOnly(kotlinStdlib())
testCompile(project(":kotlin-test:kotlin-test-junit"))
testCompile("junit:junit:4.12")
testImplementation(project(":kotlin-test:kotlin-test-junit"))
testImplementation("junit:junit:4.12")
}
sourceSets {