-
Notifications
You must be signed in to change notification settings - Fork 15
/
build.sbt
37 lines (33 loc) · 995 Bytes
/
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
val mUnit = "1.0.0"
val discipline = "1.7.0"
Global / onChangedBuildSource := ReloadOnSourceChanges
inThisBuild(
List(
tlBaseVersion := "2.0",
scalaVersion := "2.13.15",
crossScalaVersions := Seq("2.12.20", "2.13.15", "3.3.4"),
licenses := List(
"BSD-3-Clause" -> url("http://opensource.org/licenses/BSD-3-Clause")
),
startYear := Some(2020),
developers := List(
Developer(
"rpiaggio",
"Raúl Piaggio",
url("http://github.com/rpiaggio")
)
)
)
)
lazy val root = tlCrossRootProject.aggregate(core)
lazy val core = crossProject(JVMPlatform, JSPlatform, NativePlatform)
.in(file("core"))
.settings(
name := "discipline-munit",
libraryDependencies ++= Seq(
"org.scalameta" %%% "munit" % mUnit,
"org.scalameta" %%% "munit-scalacheck" % mUnit,
"org.typelevel" %%% "discipline-core" % discipline
)
)