Skip to content

Commit 6a848c0

Browse files
committed
fix(light-model-client): expose modelql-untyped as a dependency
Converts the implementation dependency of light-model-client on modelql-untyped into an api dependency as the base class of a LightModelClient instance is part of that package. Otherwise, downstream projects might fail to build due to being unable to resolve the base class. Fixes: MODELIX-496
1 parent 1f449e5 commit 6a848c0

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

light-model-client/build.gradle.kts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,10 @@ kotlin {
2424
implementation(project(":model-api-gen-runtime"))
2525
implementation(project(":model-server-api"))
2626
implementation(project(":modelql-core"))
27-
implementation(project(":modelql-untyped"))
2827
implementation(project(":modelql-client"))
2928

29+
api(project(":modelql-untyped"))
30+
3031
implementation(libs.ktor.client.websockets)
3132
implementation(libs.kotlin.stdlib.common)
3233
implementation(libs.kotlin.logging)

0 commit comments

Comments
 (0)