Switch implementation dependencies to runtimeOnly
This commit is contained in:
parent
c14e34cd81
commit
a3ea583e41
2 changed files with 3 additions and 4 deletions
|
@ -40,10 +40,10 @@ dependencies {
|
||||||
|
|
||||||
// -> Project <-
|
// -> Project <-
|
||||||
implementation(project(":base"))
|
implementation(project(":base"))
|
||||||
implementation(project(":ansi"))
|
runtimeOnly(project(":ansi"))
|
||||||
implementation(project(":slf4j-compat"))
|
runtimeOnly(project(":slf4j-compat"))
|
||||||
implementation(project(":windowing"))
|
implementation(project(":windowing"))
|
||||||
implementation(project(":windowing:glfw"))
|
runtimeOnly(project(":windowing:glfw"))
|
||||||
}
|
}
|
||||||
|
|
||||||
// Fix delombok task
|
// Fix delombok task
|
||||||
|
|
|
@ -8,6 +8,5 @@ open module sosengine.testapp {
|
||||||
// Dependencies
|
// Dependencies
|
||||||
// -> Engine
|
// -> Engine
|
||||||
requires sosengine.windowing;
|
requires sosengine.windowing;
|
||||||
requires sosengine.slf4j_compat;
|
|
||||||
// -> Libraries
|
// -> Libraries
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue