forked from lift-project/arithexpr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.sbt
27 lines (23 loc) · 992 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
lazy val arithExpr = (project in file("."))
.settings(
name := "ArithExpr",
version := "1.0",
scalaVersion := "2.13.3",
organization := "org.rise-lang",
scalacOptions ++= Seq("-unchecked", "-deprecation", "-feature"),
scalacOptions in (Compile, doc) := Seq("-implicits", "-diagrams"),
// dependencies specified in project/Dependencies.scala
libraryDependencies ++= Seq(
// scala
"org.scala-lang" % "scala-reflect" % scalaVersion.value,
"org.scala-lang" % "scala-compiler" % scalaVersion.value,
"org.scala-lang" % "scala-library" % scalaVersion.value,
// testing
"junit" % "junit" % "4.11",
"com.novocode" % "junit-interface" % "0.11" % "test",
"org.scalacheck" %% "scalacheck" % "1.14.1" % "test"
),
testOptions += Tests.Argument(TestFrameworks.JUnit, "-q", "-v"),
testOptions += Tests.Argument(TestFrameworks.ScalaCheck, "-verbosity", "5"),
fork := true
)