-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
2351f69
commit b447d60
Showing
1 changed file
with
17 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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", | ||
|
@@ -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 | ||
|
@@ -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, | ||
|