Skip to content

Commit

Permalink
Cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
luksow committed Oct 17, 2024
1 parent 28d181f commit 8d730a3
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 9 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@ jobs:
with:
fetch-depth: 0
- uses: olafurpg/setup-scala@v14
with:
java-version: [email protected]
- run: sbt ci-release
env:
PGP_PASSPHRASE: ${{ secrets.PGP_PASSPHRASE }}
Expand Down
12 changes: 7 additions & 5 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -101,8 +101,8 @@ val slick = "com.typesafe.slick" %% "slick" % "3.5.2"
val optionalSlick = optional(slick)
val playJson = Def.setting("org.playframework" %%% "play-json" % "3.0.4")
val slickPg = "com.github.tminglei" %% "slick-pg" % "0.22.2"
val doobie = "org.tpolecat" %% "doobie-core" % "1.0.0-RC6"
val doobiePg = "org.tpolecat" %% "doobie-postgres" % "1.0.0-RC6"
val doobie = "org.tpolecat" %% "doobie-core" % "1.0.0-RC5"
val doobiePg = "org.tpolecat" %% "doobie-postgres" % "1.0.0-RC5"
val sprayJson = "io.spray" %% "spray-json" % "1.3.6"
val circeV = "0.14.10"
val circe = Def.setting("io.circe" %%% "circe-core" % circeV)
Expand Down Expand Up @@ -142,7 +142,7 @@ def akkaHttpInExamples = {
)
}

val pekkoVersion = "1.1.1"
val pekkoVersion = "1.1.2"
val pekkoHttpVersion = "1.1.0"
val pekkoHttpJsonV = "2.0.0"
val pekkoStream = "org.apache.pekko" %% "pekko-stream" % pekkoVersion
Expand All @@ -158,7 +158,7 @@ def pekkoHttpInExamples = {
val http4sVersion = "0.23.28"
val http4s = Def.setting("org.http4s" %%% "http4s-dsl" % http4sVersion)

val http4sStirVersion = "0.3"
val http4sStirVersion = "0.4.0"
val http4sStir = Def.setting("pl.iterators" %%% "http4s-stir" % http4sStirVersion)
val http4sStirTestkit = Def.setting("pl.iterators" %%% "http4s-stir-testkit" % http4sStirVersion)

Expand Down Expand Up @@ -252,7 +252,6 @@ lazy val http4sSettings = commonSettings ++ Seq(
lazy val http4sStirSettings = commonSettings ++ Seq(
libraryDependencies += http4s.value,
libraryDependencies += http4sStir.value,
libraryDependencies += http4sStirTestkit.value % "test",
libraryDependencies += enumeratumInTest.value,
scalacOptions ++= paradiseFlag(scalaVersion.value)
)
Expand Down Expand Up @@ -432,6 +431,9 @@ lazy val http4sStirSupport = crossProject(JSPlatform, JVMPlatform)
taggedMeta % "test -> test"
)
.settings(http4sStirSettings *)
.jvmSettings(
libraryDependencies += http4sStirTestkit.value % "test"
)
.settings(publishSettings *)
.settings(
name := "http4s-stir",
Expand Down
8 changes: 4 additions & 4 deletions project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
logLevel := Level.Warn

addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.5.2")
addSbtPlugin("pl.project13.scala" % "sbt-jmh" % "0.4.7")
addSbtPlugin("com.github.sbt" % "sbt-ci-release" % "1.6.1")
addSbtPlugin("org.jmotor.sbt" % "sbt-dependency-updates" % "1.2.9")
addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.5.2")
addSbtPlugin("pl.project13.scala" % "sbt-jmh" % "0.4.7")
addSbtPlugin("com.github.sbt" % "sbt-ci-release" % "1.6.1")
addSbtPlugin("org.jmotor.sbt" % "sbt-dependency-updates" % "1.2.9")

addSbtPlugin("org.portable-scala" % "sbt-scalajs-crossproject" % "1.3.2")
addSbtPlugin("org.portable-scala" % "sbt-scala-native-crossproject" % "1.3.2")
Expand Down

0 comments on commit 8d730a3

Please sign in to comment.