aboutsummaryrefslogtreecommitdiff
path: root/publish.sbt
blob: 55d3917ef1a1a186f58a95834c548408aa5ac833 (plain) (blame)
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
organization in ThisBuild := "xyz.driver"
licenses in ThisBuild := Seq(
  ("Apache 2.0", url("https://www.apache.org/licenses/LICENSE-2.0")))
homepage in ThisBuild := Some(
  url("https://github.com/drivergroup/spray-json-derivation"))
publishMavenStyle in ThisBuild := true
publishTo in ThisBuild := Some(
  if (isSnapshot.value)
    Opts.resolver.sonatypeSnapshots
  else
    Opts.resolver.sonatypeStaging
)

scmInfo in ThisBuild := Some(
  ScmInfo(
    url("https://github.com/drivergroup/spray-json-derivation"),
    "scm:git@github.com:drivergroup/spray-json-derivation.git"
  )
)

developers in ThisBuild := List(
  Developer(
    id = "jodersky",
    name = "Jakob Odersky",
    email = "jakob@driver.xyz",
    url = url("https://driver.xyz")
  )
)