Skip to content

Commit 0a2afee

Browse files
committed
bug: Add runtime dependency on Kotlin embeddable compiler
This change adds a runtime dependency on the Kotlin embeddable compiler in the Gradle plugin. Without this plugin, the compiler plugin will fail to run.
1 parent ebd4a80 commit 0a2afee

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

plugin-gradle/build.gradle.kts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,8 @@ dependencies {
3636
compile(kotlin("stdlib"))
3737
compile(kotlin("gradle-plugin-api"))
3838
compileOnly(project(":plugin-compiler", configuration = "embeddable"))
39+
40+
runtimeOnly(kotlin("compiler-embeddable"))
3941
}
4042

4143
/* Compilation */

0 commit comments

Comments
 (0)