Skip to content

Commit

Permalink
Update scala-library to 2.13.12
Browse files Browse the repository at this point in the history
  • Loading branch information
scala-steward committed Sep 13, 2023
1 parent 2351f69 commit b447d60
Showing 1 changed file with 17 additions and 15 deletions.
32 changes: 17 additions & 15 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -2,19 +2,21 @@ val zioVersion = "2.0.0"
val akkaVersion = "2.6.19"
val akkaHttpVersion = "10.2.9"

inThisBuild(List(
organization := "io.scalac",
homepage := Some(url("https://github.com/ScalaConsultants/zio-akka-http-interop")),
licenses := List("MIT" -> url("https://opensource.org/licenses/MIT")),
developers := List(
Developer(
id = "jczuchnowski",
name = "Jakub Czuchnowski",
email = "[email protected]",
url = url("https://github.com/jczuchnowski")
inThisBuild(
List(
organization := "io.scalac",
homepage := Some(url("https://github.com/ScalaConsultants/zio-akka-http-interop")),
licenses := List("MIT" -> url("https://opensource.org/licenses/MIT")),
developers := List(
Developer(
id = "jczuchnowski",
name = "Jakub Czuchnowski",
email = "[email protected]",
url = url("https://github.com/jczuchnowski")
)
)
)
))
)

val compilerOptions = Seq(
"-deprecation",
Expand All @@ -33,9 +35,9 @@ val compilerOptions = Seq(

val root = (project in file("."))
.settings(
name := "zio-akka-http-interop",
scalaVersion := "2.13.8",
crossScalaVersions := Seq("2.12.16", "2.13.8"),
name := "zio-akka-http-interop",
scalaVersion := "2.13.12",
crossScalaVersions := Seq("2.12.16", "2.13.12"),
scalacOptions ++= {
if (priorTo2_13(scalaVersion.value)) compilerOptions
else
Expand All @@ -45,7 +47,7 @@ val root = (project in file("."))
case other => Seq(other)
}
},
testFrameworks := Seq(new TestFramework("zio.test.sbt.ZTestFramework")),
testFrameworks := Seq(new TestFramework("zio.test.sbt.ZTestFramework")),
libraryDependencies ++= Seq(
"com.typesafe.akka" %% "akka-actor" % akkaVersion % Provided,
"com.typesafe.akka" %% "akka-stream" % akkaVersion % Provided,
Expand Down

0 comments on commit b447d60

Please sign in to comment.