-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.sbt
35 lines (33 loc) · 871 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
lazy val sharedSettings = Seq(
version := "0.0.1-SNAPSHOT",
organization := "com.github.sophiecollard",
organizationName := "Sophie Collard",
scalaVersion := "3.3.1",
scalacOptions ++= Seq(
"-deprecation",
// "-Xfatal-warnings",
// "-Ywarn-dead-code",
// "-Ywarn-numeric-widen",
// "-Ywarn-value-discard",
// "-Ywarn-unused"
)
)
lazy val core = (project in file("core"))
.settings(
sharedSettings,
name := "core",
libraryDependencies ++= List(
"org.typelevel" %% "cats-core" % "2.10.0",
"org.scalatest" %% "scalatest" % "3.2.17" % "test"
)
)
lazy val json = (project in file("json"))
.dependsOn(core)
.settings(
sharedSettings,
name := "json",
libraryDependencies ++= List(
"org.typelevel" %% "cats-core" % "2.10.0",
"org.scalatest" %% "scalatest" % "3.2.17" % "test"
)
)