Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix deps implementation #929

Merged
merged 2 commits into from
Nov 10, 2023
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Rollback to state before Kotlin update
  • Loading branch information
VDovidaytis-HORIS committed Nov 10, 2023
commit 3f20f0d8fb2f87fc762002fede5f610426a94904
2 changes: 1 addition & 1 deletion commons/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ kotlin {

named("jsMain") {
dependencies {
implementation("io.github.microutils:kotlin-logging-js:$kotlinLoggingVersion")
compileOnly("io.github.microutils:kotlin-logging-js:$kotlinLoggingVersion")
}
}

Expand Down
2 changes: 1 addition & 1 deletion gis/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ kotlin {

named("jsMain") {
dependencies {
implementation("io.ktor:ktor-client-js:$ktorVersion")
compileOnly("io.ktor:ktor-client-js:$ktorVersion")
compileOnly("io.github.microutils:kotlin-logging-js:$kotlinLoggingVersion")
}
}
Expand Down
3 changes: 2 additions & 1 deletion livemap/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,8 @@ kotlin {
compileOnly(project(":datamodel"))
compileOnly(project(":canvas"))
compileOnly(project(":gis"))

compileOnly("io.ktor:ktor-client-websockets:$ktorVersion")
}
}

Expand Down Expand Up @@ -57,7 +59,6 @@ kotlin {
named("jsMain") {
dependencies {
compileOnly("io.ktor:ktor-client-js:$ktorVersion")
implementation("io.ktor:ktor-client-websockets:$ktorVersion")
compileOnly("io.github.microutils:kotlin-logging-js:$kotlinLoggingVersion")
}
}
Expand Down