@@ -31,6 +31,7 @@ object Versions {
3131 const val kotlinx_collections_immutable = " 0.3.5"
3232 const val kotlinx_coroutines = " 1.6.4"
3333 const val kotlinx_serialization = " 1.8.0"
34+ const val ktor = " 3.1.3"
3435 const val licenser = " 0.6.1"
3536 const val lmdb_java = " 0.9.0"
3637 const val mockk = " 1.13.3"
@@ -397,6 +398,48 @@ object Libs {
397398 name = " protoc-gen-grpc-kotlin" ,
398399 version = Versions .grpc_kotlin
399400 )
401+
402+ // https://github.com/ktorio/ktor
403+ val ktor_client_core = dep(
404+ group = " io.ktor" ,
405+ name = " ktor-client-core" ,
406+ version = Versions .ktor
407+ )
408+ val ktor_client_cio = dep(
409+ group = " io.ktor" ,
410+ name = " ktor-client-cio" ,
411+ version = Versions .ktor
412+ )
413+ val ktor_client_content_negotiation = dep(
414+ group = " io.ktor" ,
415+ name = " ktor-client-content-negotiation" ,
416+ version = Versions .ktor
417+ )
418+ val ktor_server_core = dep(
419+ group = " io.ktor" ,
420+ name = " ktor-server-core" ,
421+ version = Versions .ktor
422+ )
423+ val ktor_server_netty = dep(
424+ group = " io.ktor" ,
425+ name = " ktor-server-netty" ,
426+ version = Versions .ktor
427+ )
428+ val ktor_server_content_negotiation = dep(
429+ group = " io.ktor" ,
430+ name = " ktor-server-content-negotiation" ,
431+ version = Versions .ktor
432+ )
433+ val ktor_serialization_kotlinx_json = dep(
434+ group = " io.ktor" ,
435+ name = " ktor-serialization-kotlinx-json" ,
436+ version = Versions .ktor
437+ )
438+ val ktor_serialization_kotlinx_protobuf = dep(
439+ group = " io.ktor" ,
440+ name = " ktor-serialization-kotlinx-protobuf" ,
441+ version = Versions .ktor
442+ )
400443}
401444
402445object Plugins {
0 commit comments