-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathbuild.sbt
56 lines (48 loc) · 1.47 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
enablePlugins(spray.boilerplate.BoilerplatePlugin)
lazy val scala212 = "2.12.16"
lazy val scala213 = "2.13.10"
name := "scalatest-csv-table"
scalaVersion := scala213
crossScalaVersions := Seq(scala212, scala213)
version := "1.2.2"
organization := "io.github.akiomik"
homepage := Some(url(s"https://github.com/akiomik/${name.value}"))
scmInfo := Some(
ScmInfo(
url(s"https://github.com/akiomik/${name.value}"),
s"[email protected]:akiomik/${name.value}.git"
)
)
description := "A scalatest helper for table driven testing with csv"
licenses += ("Apache-2.0", url("https://www.apache.org/licenses/LICENSE-2.0.html"))
developers := List(
Developer(
id = "akiomik",
name = "Akiomi Kamakura",
email = "[email protected]",
url = url("https://github.com/akiomik")
)
)
lazy val kantanCsvVersion = "0.7.0"
libraryDependencies ++= Seq(
"org.scalatest" %% "scalatest" % "3.2.16",
"com.nrinaudo" %% "kantan.csv" % kantanCsvVersion,
"com.nrinaudo" %% "kantan.csv-generic" % kantanCsvVersion
)
scalacOptions ++= Seq(
"-deprecation",
"-feature",
"-unchecked",
"-Xlint",
"-Ywarn-dead-code",
"-Ywarn-numeric-widen",
"-Ywarn-unused",
"-Ywarn-value-discard"
)
versionScheme := Some("semver-spec")
mimaPreviousArtifacts := Set(organization.value %% name.value % "1.0.0")
sonatypeCredentialHost := "s01.oss.sonatype.org"
publishTo := sonatypePublishToBundle.value
publishMavenStyle := true
// needed for scalac-scoverage-reporter
evictionErrorLevel := Level.Info