-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.sbt
41 lines (37 loc) · 1.07 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
lazy val scala213 = "2.13.6"
lazy val scala212 = "2.12.16"
lazy val scala211 = "2.11.12"
// lazy val supportedScalaVersions = List(scala213)
ThisBuild / organization := "cse.bdlab"
ThisBuild / version := "1.5.0"
ThisBuild / scalaVersion := scala213
lazy val root = (project in file("."))
.settings(
// crossScalaVersions := supportedScalaVersions,
name := "mcts",
libraryDependencies := deps
// scalacOptions := compilerOps
)
lazy val deps = Seq(
// ~~~ ScalaTest
// "org.scalactic" %% "scalactic" % "3.0.4",
"org.scalatest" %% "scalatest" % "3.0.9" % "test",
"org.scalacheck" %% "scalacheck" % "1.14.0" % "test",
// ~~~ Scallop, used for command line parsing in example App
"org.rogach" %% "scallop" % "3.5.1",
// ~~~ Cats FP Library
"org.typelevel" %% "cats-core" % "2.3.0"
)
lazy val compilerOps = Seq(
"-unchecked",
"-feature",
"-Ypartial-unification",
"-language:reflectiveCalls",
"-language:existentials",
"-language:higherKinds",
"-language:implicitConversions",
"-language:postfixOps",
"-deprecation",
"-encoding",
"utf8"
)