-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.sbt
40 lines (32 loc) · 1.16 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
import Dependencies._
import sbt.Keys.libraryDependencies
lazy val root = (project in file(".")).
settings(
inThisBuild(List(
organization := "com.github.lkalwa",
scalaVersion := "2.12.7",
crossScalaVersions := Seq("2.11.12", "2.12.10"),
version := "1.0.6.3"
)),
name := "scala-streamable-jsonapi",
libraryDependencies += scalaTest,
libraryDependencies += scalaTic,
libraryDependencies += jackson,
libraryDependencies += scalaParser
)
homepage := Some(url("https://github.com/lkalwa/scala-streamable-jsonapi"))
scmInfo := Some(ScmInfo(url("https://github.com/lkalwa/scala-streamable-jsonapi"),
"git@github.com:lkalwa/scala-streamable-jsonapi.git"))
developers := List(
Developer("lkalwa", "Leszek Kalwa", "leszek.kalwa@gmail.com", url("https://github.com/lkalwa")),
Developer("klobuczek", "Heinrich Klobuczek", "heinrich@mail.com", url("https://github.com/klobuczek"))
)
licenses += ("MIT", url("https://opensource.org/licenses/MIT"))
publishMavenStyle := true
publishTo := Some(
if (isSnapshot.value)
Opts.resolver.sonatypeSnapshots
else
Opts.resolver.sonatypeStaging
)
//coverageEnabled := true