-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.sbt
More file actions
29 lines (20 loc) · 813 Bytes
/
build.sbt
File metadata and controls
29 lines (20 loc) · 813 Bytes
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
name := "sclera-plugin-csv-lite"
description := "Example add-on package, enables Sclera to work with CSV data"
version := "1.0-SNAPSHOT"
scalaVersion := "2.13.1"
licenses := Seq("Apache License version 2.0" -> url("https://www.apache.org/licenses/LICENSE-2.0.txt"))
libraryDependencies ++= Seq(
"org.apache.commons" % "commons-csv" % "1.8",
"com.scleradb" %% "sclera-tools" % "4.0" % "provided",
"com.scleradb" %% "sclera-core" % "4.0" % "provided",
"com.scleradb" %% "sclera-config" % "4.0" % "test",
"org.scalatest" %% "scalatest" % "3.1.1" % "test"
)
scalacOptions ++= Seq(
"-Werror", "-feature", "-deprecation", "-unchecked"
)
exportJars := true
javaOptions in Test ++= Seq(
s"-DSCLERA_ROOT=${java.nio.file.Files.createTempDirectory("scleratest")}"
)
fork in Test := true