forked from xebia-functional/refine_types_scala3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.sbt
59 lines (48 loc) · 1.34 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
ThisBuild / organization := "dagmendez"
ThisBuild / scalaVersion := "3.3.5"
ThisBuild / semanticdbEnabled := true
ThisBuild / semanticdbVersion := scalafixSemanticdb.revision
ThisBuild / scalacOptions ++= Seq("-Wunused:all")
lazy val `opaque-types-and-inline`: Project =
project
.in(file("."))
.aggregate(
`language-feature`,
workshop,
spanishIDs
)
lazy val `language-feature`: Project =
project
.in(file("01-language-feature"))
.settings(commonSettings)
.settings(name := "language-feature")
lazy val `workshop`: Project = {
project
.in(file("02-workshop"))
.settings(commonSettings)
.settings(
name := "workshop",
libraryDependencies ++= Seq(
)
)
}
lazy val spanishIDs: Project = {
project
.in(file("spanishIDs"))
.settings(commonSettings)
.settings(
name := "spanishIDs",
libraryDependencies ++= Seq(
"io.github.iltotore" %% "iron" % "2.6.0",
"io.github.kitlangton" %% "neotype" % "0.3.11"
)
)
}
lazy val commonSettings = commonScalacOptions ++ Seq(resolvers += "confluent" at "https://packages.confluent.io/maven/")
lazy val commonScalacOptions = Seq(
Compile / console / scalacOptions --= Seq(
"-Xfatal-warnings",
"-Wunused:_"
),
Test / console / scalacOptions := (Compile / console / scalacOptions).value
)