File tree Expand file tree Collapse file tree 4 files changed +7
-14
lines changed
kubernetes-client/src/com/goyeau/kubernetes/client Expand file tree Collapse file tree 4 files changed +7
-14
lines changed Original file line number Diff line number Diff line change @@ -30,7 +30,7 @@ trait KubernetesClientModule
3030 )
3131
3232 override def ivyDeps =
33- super .ivyDeps() ++ fs2 ++ http4s ++ circe ++ circeYaml ++ bouncycastle ++ collectionCompat ++ logging ++ java8compat
33+ super .ivyDeps() ++ http4s ++ circe ++ circeYaml ++ bouncycastle ++ collectionCompat ++ logging ++ java8compat
3434 override def scalacPluginIvyDeps = super .scalacPluginIvyDeps() ++
3535 (if (isScala3(scalaVersion())) Agg .empty else Agg (ivy " org.typelevel:::kind-projector:0.13.3 " ))
3636
Original file line number Diff line number Diff line change @@ -5,15 +5,16 @@ import cats.data.OptionT
55import cats .effect .*
66import com .goyeau .kubernetes .client .api .*
77import com .goyeau .kubernetes .client .crd .{CrdContext , CustomResource , CustomResourceList }
8+ import com .goyeau .kubernetes .client .operation .*
89import com .goyeau .kubernetes .client .util .SslContexts
910import com .goyeau .kubernetes .client .util .cache .{AuthorizationParse , ExecToken }
1011import io .circe .{Decoder , Encoder }
12+ import org .http4s .Request
1113import org .http4s .client .Client
1214import org .http4s .headers .Authorization
1315import org .http4s .jdkhttpclient .{JdkHttpClient , JdkWSClient }
14- import org .http4s .client .websocket .WSClient
16+ import org .http4s .client .websocket .{ WSClient , WSRequest }
1517import org .typelevel .log4cats .Logger
16-
1718import java .net .http .HttpClient
1819
1920class KubernetesClient [F [_]: Async : Logger ](
Original file line number Diff line number Diff line change 11package com .goyeau .kubernetes .client .api
22
3- import cats .effect .{ Async , Resource }
3+ import cats .effect .Async
44import cats .effect .syntax .all .*
55import cats .syntax .all .*
66import com .goyeau .kubernetes .client .KubeConfig
Original file line number Diff line number Diff line change @@ -10,16 +10,8 @@ lazy val circe = {
1010 )
1111}
1212
13- lazy val fs2 = {
14- val version = " 3.9.3"
15- Agg (
16- ivy " co.fs2::fs2-core: $version" ,
17- ivy " co.fs2::fs2-io: $version" ,
18- )
19- }
20-
21- lazy val http4s = {
22- val version = " 0.23.30"
13+ lazy val http4s = {
14+ val version = " 0.23.30"
2315 val jdkClientVersion = " 0.10.0"
2416 Agg (
2517 ivy " org.http4s::http4s-dsl: $version" ,
You can’t perform that action at this time.
0 commit comments