diff --git a/engine-httpclient/build.gradle.kts b/engine-httpclient/build.gradle.kts index 97cd680..ff33c9c 100644 --- a/engine-httpclient/build.gradle.kts +++ b/engine-httpclient/build.gradle.kts @@ -23,11 +23,14 @@ config { publishing { enabled = true } } -val fuelVersion = "2.2.1" +val fuelVersion = "2.3.0" val kraphVersion = "0.6.0" dependencies { implementation(kotlin("stdlib-jdk8")) implementation(project(":core")) implementation("com.github.kittinunf.fuel:fuel:$fuelVersion") + implementation("com.github.kittinunf.fuel:fuel-json:$fuelVersion") + implementation("com.github.kittinunf.fuel:fuel-jackson:$fuelVersion") + implementation("com.github.kittinunf.fuel:fuel-gson:$fuelVersion") implementation("me.lazmaid.kraph:kraph:$kraphVersion") }