-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sbt
44 lines (37 loc) · 1.15 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
name := "scala-utils"
version := "1.1.0"
scalaVersion := "2.12.6"
organization := "br.com.gzvr"
crossScalaVersions := Seq("2.11.8", "2.12.6")
licenses += ("MIT", url("http://opensource.org/licenses/MIT"))
homepage := Some(url("https://github.com/grupozap/scala-utils"))
scmInfo := Some(ScmInfo(
url("https://github.com/grupozap/scala-utils"),
"[email protected]:grupozap/scala-utils.git")
)
developers ++= List(
Developer(
"thiagoandrade6",
"Thiago Pereira",
url("https://github.com/thiagoandrade6")
),
Developer(
"resilva87",
"Renato Silva",
url("https://github.com/resilva87")
)
)
pomIncludeRepository := (_ => false)
publishConfiguration := publishConfiguration.value.withOverwrite(true)
publishTo := Some("Artifactory Realm" at "https://squadzapquality.jfrog.io/artifactory/olxbr-sbt-release")
credentials += Credentials(new File("credentials.properties"))
libraryDependencies ++= {
Seq(
"com.typesafe" % "config" % "1.3.2",
"joda-time" % "joda-time" % "2.10",
"org.json4s" %% "json4s-native" % "3.6.0",
"org.scalatest" %% "scalatest" % "3.0.5" % Test
)
}