-
Notifications
You must be signed in to change notification settings - Fork 2
/
build.sbt
43 lines (37 loc) · 1.59 KB
/
build.sbt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
ThisBuild / tlBaseVersion := "0.23"
// 0.23.0-11 were tags from this project before it was split out from the main http4s repository
ThisBuild / tlMimaPreviousVersions ++= (0 to 11).map(y => s"0.23.$y").toSet
ThisBuild / developers := List(
tlGitHubDev("rossabaker", "Ross A. Baker"),
tlGitHubDev("henricook", "Henri Cook"),
tlGitHubDev("matmannion", "Mat Mannion"),
)
headerLicense := Some(HeaderLicense.ALv2("[yyyy]", "[Name Of Copyright Owner]"))
// play-json stopped supporting Java8 in 2.10.1
ThisBuild / githubWorkflowJavaVersions := List("11", "17", "21").map(JavaSpec.temurin)
ThisBuild / tlJdkRelease := Some(11)
val Scala212 = "2.12.20"
val Scala213 = "2.13.15"
val Scala3 = "3.3.4"
ThisBuild / scalaVersion := Scala213
ThisBuild / crossScalaVersions := Seq(Scala212, Scala213, Scala3)
ThisBuild / tlVersionIntroduced := Map("3" -> "0.23.12")
lazy val root = project.in(file(".")).aggregate(playJson).enablePlugins(NoPublishPlugin)
val http4sVersion = "0.23.28"
val playJsonVersion = "3.0.4"
val munitVersion = "1.0.0"
val munitCatsEffectVersion = "2.0.0"
lazy val playJson = project
.in(file("play-json"))
.settings(
name := "http4s-play-json",
description := "Provides Play json codecs for http4s",
startYear := Some(2018),
libraryDependencies ++= Seq(
"org.http4s" %%% "http4s-jawn" % http4sVersion,
"org.playframework" %%% "play-json" % playJsonVersion,
"org.scalameta" %%% "munit-scalacheck" % munitVersion % Test,
"org.typelevel" %%% "munit-cats-effect" % munitCatsEffectVersion % Test,
"org.http4s" %%% "http4s-laws" % http4sVersion % Test,
),
)