forked from nparry/orderly4jvm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sbt
44 lines (28 loc) · 1.09 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
organization := "com.nparry"
name := "orderly"
version := "1.0.7-SNAPSHOT"
description := "An implementation of Orderly JSON (http://orderly-json.org/) for use on the JVM"
homepage := Some(url("https://github.com/nparry/orderly4jvm"))
licenses += "BSD" -> url("http://www.opensource.org/licenses/bsd-license.php" )
scmInfo := Some(ScmInfo(url("https://github.com/nparry/orderly4jvm.git"),
"[email protected]:nparry/orderly4jvm.git"))
pomExtra := (
<developers>
<developer>
<id>nparry</id>
<name>Nathan Parry</name>
<url>http://nparry.com</url>
</developer>
</developers>
)
libraryDependencies ++= Seq(
"net.liftweb" %% "lift-json" % "2.6-M4",
"org.specs2" %% "specs2" % "2.4" % "test"
)
crossScalaVersions := Seq("2.10.4", "2.11.2")
publishMavenStyle := true
pomIncludeRepository := { _ => false }
pgpSecretRing := file(sys.props("user.home") + "/.bintray/bintray.asc")
pgpPassphrase := Some(scala.util.Try(sys.env("BINTRAY_PASSPHRASE")).getOrElse("fail").toCharArray)
seq(bintraySettings:_*)
bintray.Keys.packageLabels in bintray.Keys.bintray := Seq("json", "orderly")