Skip to content

Commit 43e9098

Browse files
committed
Add ktor dependency
1 parent fc154bb commit 43e9098

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

build.gradle.kts

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ plugins {
1212

1313
allprojects {
1414
group = "dev.schlaubi.lyrics"
15-
version = "2.4.4"
15+
version = "2.4.5"
1616

1717
repositories {
1818
mavenCentral()

lavalink/build.gradle.kts

+4-2
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,11 @@ dependencies {
1313
implementation(projects.client) {
1414
exclude(group = "io.ktor", module = "ktor-client-okhttp")
1515
}
16-
implementation(libs.ktor.client.content.negotiation)
17-
implementation(libs.ktor.client.java)
1816
implementation(projects.protocol)
17+
implementation(libs.ktor.client.core)
18+
implementation(libs.ktor.client.resources)
19+
implementation(libs.ktor.client.content.negotiation)
20+
implementation(libs.ktor.serialization.kotlinx.json)
1921
implementation(projects.lavaplayer) {
2022
isTransitive = false
2123
}

0 commit comments

Comments
 (0)