Skip to content

Commit 3adb70f

Browse files
committed
build(player): simplify player dependencies
1 parent a129d7b commit 3adb70f

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

player/build.gradle.kts

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,11 @@ application {
2222
}
2323

2424
dependencies {
25-
implementation(project(":plugin$year"))
26-
implementation(kotlin("script-runtime"))
27-
implementation("ch.qos.logback", "logback-classic", "1.5.18") // Update to 1.4 with JDK upgrade
25+
api(project(":sdk"))
26+
implementation("ch.qos.logback", "logback-classic", "1.5.18")
27+
28+
runtimeOnly(project(":plugin$year"))
29+
//runtimeOnly(kotlin("script-runtime"))
2830
}
2931

3032
tasks {

0 commit comments

Comments
 (0)