-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sbt
37 lines (27 loc) · 820 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
34
35
36
37
name := "csv"
version := "0.1"
scalaVersion := "2.12.7"
libraryDependencies ++= Seq(
"org.scalactic" %% "scalactic" % "3.0.5",
"org.scalatest" %% "scalatest" % "3.0.5" % "test"
)
// POM settings for Sonatype
organization := "com.github.doohochang"
homepage := Some(url("https://github.com/doohochang/csv"))
scmInfo := Some(ScmInfo(
url("https://github.com/doohochang/csv"),
"[email protected]:doohochang/csv.git"
))
developers := List(Developer("doohochang",
"Dooho Chang",
url("https://github.com/doohochang")))
licenses += ("Apache-2.0", url("http://www.apache.org/licenses/LICENSE-2.0"))
publishMavenStyle := true
// Add Sonatype repository settings
publishTo := Some(
if (isSnapshot.value)
Opts.resolver.sonatypeSnapshots
else
Opts.resolver.sonatypeStaging
)