-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sbt
38 lines (31 loc) · 953 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
36
37
38
name := "validen"
lazy val scalaV = "2.12.2"
lazy val scalaCheckVersion = "3.0.1"
scalaVersion in Global := scalaV
lazy val validen = (project in file(".")).
settings(
inThisBuild(List(
organization := "io.voklim",
scalaVersion := scalaV,
version := "0.1.0"
)),
libraryDependencies ++= Seq(
"org.typelevel" %% "cats" % "0.9.0",
"org.scala-lang.modules" %% "scala-parser-combinators" % "1.0.6",
"com.chuusai" %% "shapeless" % "2.3.2",
"org.scalatest" %% "scalatest" % scalaCheckVersion % "test"
)
).configs(IntegrationTest)
.settings(Defaults.itSettings: _*)
.settings(
scalaSource in IntegrationTest := baseDirectory.value / "src" / "it" / "scala"
)
lazy val IntegrationTest = config("it").extend(Test)
scalacOptions in Global ++= Seq(
"-Xfatal-warnings",
"-unchecked",
"-feature",
"-deprecation",
"-language:higherKinds",
"-language:implicitConversions"
)