-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sbt
33 lines (29 loc) · 971 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
ThisBuild / version := "0.1.0-SNAPSHOT"
ThisBuild / organization := "systems.informal"
// TODO
// ThisBuild / homepage := Some(url("https://github.com/sbt/sbt-hello"))
// https://circe.github.io/circe/
val circeVersion = "0.14.1"
libraryDependencies ++= Seq(
"io.circe" %% "circe-core",
"io.circe" %% "circe-generic",
"io.circe" %% "circe-parser",
).map(_ % circeVersion)
// https://github.com/tototoshi/scala-csv
libraryDependencies += "com.github.tototoshi" %% "scala-csv" % "1.3.10"
libraryDependencies ++= Seq(
"commons-io" % "commons-io" % "2.11.0",
"org.scala-sbt" % "sbt" % "1.6.2",
// Needed foor bzip2 decompression
"org.apache.commons" % "commons-compress" % "1.21",
)
lazy val sbt_benchexec = (project in file("."))
.enablePlugins(SbtPlugin)
.settings(
name := "sbt-benchexec",
pluginCrossBuild / sbtVersion := {
scalaBinaryVersion.value match {
case "2.12" => "1.2.8" // set minimum sbt version
}
},
)