-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathbuild.sbt
More file actions
48 lines (39 loc) · 1.36 KB
/
build.sbt
File metadata and controls
48 lines (39 loc) · 1.36 KB
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
organization := "io.github.zamblauskas"
name := "scala-csv-parser"
libraryDependencies ++= Seq(
"net.sf.opencsv" % "opencsv" % "2.3",
"org.scala-lang" % "scala-reflect" % scalaVersion.value,
"org.scalatest" %% "scalatest" % "3.2.9" % Test
)
val scala211 = "2.11.12"
val scala212 = "2.12.13"
val scala213 = "2.13.6"
scalaVersion := scala213
crossScalaVersions := Seq(scala211, scala212, scala213)
scalacOptions ++= Seq(
"-feature",
"-deprecation",
"-unchecked",
"-language:implicitConversions",
"-language:higherKinds",
"-Xfatal-warnings",
"-Xlint",
"-Ywarn-dead-code",
"-Ywarn-numeric-widen",
"-Ywarn-value-discard"
)
// Too much false-positives in the macro code - better just disable it
wartremoverExcluded += baseDirectory.value / "src/main/scala/zamblauskas/csv/parser/ReadsMacro.scala"
enablePlugins(spray.boilerplate.BoilerplatePlugin)
licenses := ("MIT", url("https://opensource.org/licenses/MIT")) :: Nil
homepage := Some(url("https://github.com/zamblauskas/scala-csv-parser"))
developers := List(
Developer(
"contributors",
"Contributors",
"https://github.com/zamblauskas/scala-csv-parser/graphs/contributors",
url("https://github.com/zamblauskas/scala-csv-parser/graphs/contributors")
)
)
sonatypeCredentialHost := "s01.oss.sonatype.org"
sonatypeRepository := "https://s01.oss.sonatype.org/service/local"