Skip to content

Commit f645d29

Browse files
committed
Make Kotlin compiler dependencies compileOnly to avoid messing up the classpath of user projects.
1 parent 6103b50 commit f645d29

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

ir-printer-gradle-plugin/build.gradle.kts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ plugins {
55
}
66

77
dependencies {
8-
implementation(kotlin("gradle-plugin-api"))
9-
implementation(kotlin("stdlib"))
10-
implementation(kotlin("gradle-plugin"))
8+
compileOnly(kotlin("gradle-plugin-api"))
9+
compileOnly(kotlin("stdlib"))
10+
compileOnly(kotlin("gradle-plugin"))
1111
}
1212

1313
buildConfig {

0 commit comments

Comments
 (0)