-
-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathbuild.sbt
More file actions
36 lines (30 loc) · 1.04 KB
/
build.sbt
File metadata and controls
36 lines (30 loc) · 1.04 KB
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
ThisBuild / tlBaseVersion := "2.1"
ThisBuild / developers += tlGitHubDev("mpilquist", "Michael Pilquist")
ThisBuild / startYear := Some(2021)
ThisBuild / crossScalaVersions := List("3.3.7", "2.12.21", "2.13.18")
ThisBuild / tlVersionIntroduced := Map("3" -> "1.0.2")
ThisBuild / libraryDependencySchemes +=
"org.scala-native" %% "test-interface_native0.5" % VersionScheme.Always
lazy val root = tlCrossRootProject.aggregate(core, munit)
lazy val core = crossProject(JSPlatform, JVMPlatform, NativePlatform)
.settings(
name := "scalacheck-effect",
tlFatalWarnings := false
)
.settings(
libraryDependencies ++= List(
"org.scalacheck" %%% "scalacheck" % "1.19.0",
"org.typelevel" %%% "cats-core" % "2.13.0"
)
)
lazy val munit = crossProject(JSPlatform, JVMPlatform, NativePlatform)
.settings(
name := "scalacheck-effect-munit"
)
.dependsOn(core)
.settings(
libraryDependencies ++= List(
"org.scalameta" %%% "munit-scalacheck" % "1.3.0",
"org.typelevel" %%% "cats-effect" % "3.7.0" % Test
)
)