-
Notifications
You must be signed in to change notification settings - Fork 3
/
build.sbt
34 lines (30 loc) · 1.11 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
ThisBuild / tlBaseVersion := "0.25"
ThisBuild / developers := List(
tlGitHubDev("rossabaker", "Ross A. Baker")
)
val Scala213 = "2.13.15"
ThisBuild / crossScalaVersions := Seq("2.12.20", Scala213, "3.3.4")
ThisBuild / scalaVersion := Scala213
ThisBuild / startYear := Some(2018)
lazy val root = tlCrossRootProject.aggregate(scalatags)
val http4sVersion = "0.23.29"
val scalatagsVersion = "0.12.0"
val munitVersion = "1.0.0-M7"
val munitCatsEffectVersion = "2.0.0-M3"
lazy val scalatags = crossProject(JVMPlatform, JSPlatform, NativePlatform)
.crossType(CrossType.Pure)
.in(file("scalatags"))
.settings(
name := "http4s-scalatags",
description := "Scalatags template support for http4s",
libraryDependencies ++= Seq(
"org.http4s" %%% "http4s-core" % http4sVersion,
"com.lihaoyi" %%% "scalatags" % scalatagsVersion,
"org.scalameta" %%% "munit-scalacheck" % munitVersion % Test,
"org.typelevel" %%% "munit-cats-effect" % munitCatsEffectVersion % Test,
"org.http4s" %%% "http4s-laws" % http4sVersion % Test,
),
)
.nativeSettings(
unusedCompileDependenciesTest := {}
)