-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbuild.sbt
More file actions
21 lines (17 loc) · 810 Bytes
/
Copy pathbuild.sbt
File metadata and controls
21 lines (17 loc) · 810 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
lazy val spp = (project in file("."))
// .disablePlugins(plugins.JUnitXmlReportPlugin)
.settings(
name := "spp",
version := "1.6",
organization := "ch.epfl.lara",
scalaVersion := "2.12.10",
// scalaSource in Compile := baseDirectory.value / "src" / "main",
scalacOptions ++= Seq("-feature"),
//scalaSource in Test := baseDirectory.value / "src/test/scala/spp",
//parallelExecution in Test := false,
//libraryDependencies += "com.novocode" % "junit-interface" % "0.11" % "test",
//testOptions += Tests.Argument(TestFrameworks.JUnit, "-v")
libraryDependencies += "org.scalactic" %% "scalactic" % "3.1.1",
libraryDependencies += "org.scalatest" %% "scalatest" % "3.1.1" % "test",
libraryDependencies += "org.json4s" %% "json4s-native" % "3.7.0-M4"
)