Skip to content

Commit

Permalink
Update http4s-blaze-client, ... to 1.0.0-M40
Browse files Browse the repository at this point in the history
  • Loading branch information
scala-steward committed Aug 21, 2024
1 parent 59744d5 commit b284fd5
Showing 1 changed file with 15 additions and 14 deletions.
29 changes: 15 additions & 14 deletions build.sbt
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
val Http4sVersion = "1.0.0-M38"
val Http4sScalaXmlVersion = Http4sVersion + ".1"
val Specs2Version = "5.0.7"
val Http4sVersion = "1.0.0-M40"
val Http4sScalaXmlVersion = Http4sVersion + ".1"
val Specs2Version = "5.0.7"
val CatsEffectTestingSpecs2Version = "1.5.0"
val LogbackVersion = "1.5.7"
val JAnsiVersion = "2.4.1"
val LogbackVersion = "1.5.7"
val JAnsiVersion = "2.4.1"

lazy val root = (project in file("."))
.settings(
Expand All @@ -12,13 +12,13 @@ lazy val root = (project in file("."))
version := "0.0.4-SNAPSHOT",
scalaVersion := "3.3.3",
libraryDependencies ++= Seq(
"org.http4s" %% "http4s-blaze-server" % Http4sVersion,
"org.http4s" %% "http4s-blaze-client" % Http4sVersion,
"org.http4s" %% "http4s-dsl" % Http4sVersion,
"org.http4s" %% "http4s-scala-xml" % Http4sScalaXmlVersion,
"ch.qos.logback" % "logback-classic" % LogbackVersion,
"org.fusesource.jansi" % "jansi" % JAnsiVersion,
"org.typelevel" %% "cats-effect-testing-specs2" % CatsEffectTestingSpecs2Version % Test
"org.http4s" %% "http4s-blaze-server" % Http4sVersion,
"org.http4s" %% "http4s-blaze-client" % Http4sVersion,
"org.http4s" %% "http4s-dsl" % Http4sVersion,
"org.http4s" %% "http4s-scala-xml" % Http4sScalaXmlVersion,
"ch.qos.logback" % "logback-classic" % LogbackVersion,
"org.fusesource.jansi" % "jansi" % JAnsiVersion,
"org.typelevel" %% "cats-effect-testing-specs2" % CatsEffectTestingSpecs2Version % Test
),
scalacOptions ++= Seq("@.scalacOptions.txt", "-Xfatal-warnings")
)
Expand All @@ -28,12 +28,13 @@ assembly / mainClass := Some("edu.luc.etl.cs433.laufer.primenumbers.Main")
enablePlugins(JavaAppPackaging)

assembly / assemblyMergeStrategy := {
case "module-info.class" => MergeStrategy.discard
case "module-info.class" => MergeStrategy.discard
case manifest if manifest.contains("MANIFEST.MF") =>
// We don't need manifest files since sbt-assembly will create
// one with the given settings
MergeStrategy.discard
case referenceOverrides if referenceOverrides.contains("reference-overrides.conf") =>
case referenceOverrides
if referenceOverrides.contains("reference-overrides.conf") =>
// Keep the content for all reference-overrides.conf files
MergeStrategy.concat
case x =>
Expand Down

0 comments on commit b284fd5

Please sign in to comment.