Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update http4s-blaze-client, ... to 1.0.0-M41 #62

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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-M41"
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