-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sbt
42 lines (29 loc) · 1.12 KB
/
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
39
40
41
42
name := "sclera-plugin-csv"
description := "Add-on package that enables Sclera to work with CSV format data"
homepage := Some(url(s"https://github.com/scleradb/${name.value}"))
scmInfo := Some(
ScmInfo(
url(s"https://github.com/scleradb/${name.value}"),
s"scm:git@github.com:scleradb/${name.value}.git"
)
)
version := "4.0"
startYear := Some(2012)
scalaVersion := "2.13.1"
licenses := Seq("Apache License version 2.0" -> url("https://www.apache.org/licenses/LICENSE-2.0.txt"))
resolvers += "Sonatype OSS Snapshots" at "https://oss.sonatype.org/content/repositories/snapshots"
libraryDependencies ++= Seq(
"org.apache.commons" % "commons-csv" % "1.7",
"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