forked from typelevel/discipline-munit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sbt
37 lines (33 loc) · 996 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-M6"
val discipline = "1.5.1"
Global / onChangedBuildSource := ReloadOnSourceChanges
inThisBuild(
List(
tlBaseVersion := "2.0",
scalaVersion := "2.13.8",
crossScalaVersions := Seq("2.12.16", "2.13.8", "3.1.3"),
licenses := List(
"BSD-3-Clause" -> url("http://opensource.org/licenses/BSD-3-Clause")
),
startYear := Some(2020),
developers := List(
Developer(
"rpiaggio",
"Raúl Piaggio",
"rpiaggio@gmail.com",
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
)
)