aboutsummaryrefslogtreecommitdiff
path: root/publish.sbt
blob: 0f9a0d885fee144f674daad4d690b8218a63b1db (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
29
30
31
32
33
organization := "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/tracing"))
publishMavenStyle in ThisBuild := true
publishTo := Some(
  if (isSnapshot.value)
    Opts.resolver.sonatypeSnapshots
  else
    Opts.resolver.sonatypeStaging
)

scmInfo := Some(
  ScmInfo(
    url("https://github.com/drivergroup/tracing"),
    "scm:git@github.com:drivergroup/tracing.git"
  )
)

developers := List(
  Developer(
    id = "jakob@driver.xyz",
    name = "Jakob Odersky",
    email = "jakob@driver.xyz",
    url = url("https://driver.xyz")
  ),
  Developer(
    id = "john@driver.xyz",
    name = "John St john",
    email = "john@driver.xyz",
    url = url("https://driver.xyz")
  )
)