Skip to content

Commit

Permalink
Merge pull request #78 from http4s/jetty-11
Browse files Browse the repository at this point in the history
Jetty 11 and friends
  • Loading branch information
rossabaker authored Jan 7, 2023
2 parents bdf293d + 0368d07 commit 85b0e41
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions build.sbt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import org.typelevel.sbt.gha

ThisBuild / tlBaseVersion := "0.24" // your current series x.y
ThisBuild / tlBaseVersion := "0.25" // your current series x.y

ThisBuild / licenses := Seq(License.Apache2)
ThisBuild / developers := List(
Expand All @@ -27,9 +27,9 @@ lazy val root = project
.enablePlugins(NoPublishPlugin)
.aggregate(jettyServer, jettyClient)

val jettyVersion = "10.0.13"
val jettyVersion = "11.0.13"
val http4sVersion = "0.23.17"
val http4sServletVersion = "0.24.0-M2"
val http4sServletVersion = "0.25.0-M2"
val munitCatsEffectVersion = "1.0.7"
val slf4jVersion = "1.7.25"

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,9 @@ import cats.effect._
import cats.effect.kernel.Async
import cats.effect.std.Dispatcher
import cats.syntax.all._
import jakarta.servlet.DispatcherType
import jakarta.servlet.http.HttpFilter
import jakarta.servlet.http.HttpServlet
import org.eclipse.jetty.http2.server.HTTP2CServerConnectionFactory
import org.eclipse.jetty.server.HttpConfiguration
import org.eclipse.jetty.server.HttpConnectionFactory
Expand Down Expand Up @@ -51,9 +54,6 @@ import java.net.InetSocketAddress
import java.util
import javax.net.ssl.SSLContext
import javax.net.ssl.SSLParameters
import javax.servlet.DispatcherType
import javax.servlet.http.HttpFilter
import javax.servlet.http.HttpServlet
import scala.annotation.nowarn
import scala.collection.immutable
import scala.concurrent.duration._
Expand Down

0 comments on commit 85b0e41

Please sign in to comment.