Skip to content

Commit

Permalink
Fix imports and maven module
Browse files Browse the repository at this point in the history
  • Loading branch information
hamnis committed Aug 30, 2023
1 parent 3c1c1d1 commit eb1ad67
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -63,8 +63,8 @@ lazy val server = project
libraryDependencies ++= List(
"io.netty" % "netty-codec-http2" % netty,
"org.eclipse.jetty" % "jetty-client" % jetty % Test,
"org.eclipse.jetty.http2" % "http2-client" % jetty % Test,
"org.eclipse.jetty.http2" % "http2-http-client-transport" % jetty % Test,
"org.eclipse.jetty.http2" % "jetty-http2-client" % jetty % Test,
"org.eclipse.jetty.http2" % "jetty-http2-client-transport" % jetty % Test,
"org.http4s" %% "http4s-server" % http4sVersion,
"org.http4s" %% "http4s-dsl" % http4sVersion % Test,
"ch.qos.logback" % "logback-classic" % "1.4.5" % Test,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ abstract class ServerTest extends IOSuite {
// on the classpath don't support prior-knowledge.

import org.eclipse.jetty.http2.client.HTTP2Client
import org.eclipse.jetty.http2.client.http.HttpClientTransportOverHTTP2
import org.eclipse.jetty.http2.client.transport.HttpClientTransportOverHTTP2
import org.eclipse.jetty.client.HttpClient

val server: Resource[IO, Server] = NettyServerBuilder[IO]
Expand Down

0 comments on commit eb1ad67

Please sign in to comment.