-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.sbt
68 lines (63 loc) · 1.91 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
60
61
62
63
64
65
66
67
68
import com.softwaremill.clippy.ClippySbtPlugin.autoImport.clippyColorsEnabled
cancelable in Global := true
lazy val kinoplan15_10_19 = project
.in(file("15-10-19-kinoplan"))
.settings(
addCompilerPlugin("org.spire-math" %% "kind-projector" % "0.9.6"),
addCompilerPlugin("com.olegpy" %% "better-monadic-for" % "0.3.1"),
scalaVersion := "2.12.10",
scalacOptions := Seq(
"-language:implicitConversions",
"-language:higherKinds",
"-language:existentials",
"-Ywarn-unused",
"-Ypartial-unification",
"-Ywarn-dead-code",
"-Xlint:-adapted-args,_",
"-deprecation",
"-unchecked",
"-feature",
"-encoding",
"utf8"
),
clippyColorsEnabled := true,
version := "0.1.0",
fork in run := true,
sources in(Compile, doc) := Seq.empty,
publishArtifact in(Compile, packageDoc) := false,
name := "15-10-19-kinoplan",
libraryDependencies ++= Seq(
"org.scala-lang" % "scala-library" % "2.12.10",
"org.typelevel" %% "cats-effect" % "2.0.0"
)
)
lazy val pdt4_03_20 = project
.in(file("4-03-20-pdt"))
.settings(
addCompilerPlugin("org.spire-math" %% "kind-projector" % "0.9.6"),
addCompilerPlugin("com.olegpy" %% "better-monadic-for" % "0.3.1"),
scalaVersion := "2.12.10",
scalacOptions := Seq(
"-language:implicitConversions",
"-language:higherKinds",
"-language:existentials",
"-Ywarn-unused",
"-Ypartial-unification",
"-Ywarn-dead-code",
"-Xlint:-adapted-args,_",
"-deprecation",
"-unchecked",
"-feature",
"-encoding",
"utf8"
),
clippyColorsEnabled := true,
version := "0.1.0",
fork in run := true,
sources in(Compile, doc) := Seq.empty,
publishArtifact in(Compile, packageDoc) := false,
name := "4-03-20-pdt",
libraryDependencies ++= Seq(
"org.scala-lang" % "scala-library" % "2.12.10"
)
)