aboutsummaryrefslogblamecommitdiff
path: root/publish.sbt
blob: 154209cb6ce49de922d04ee4b3d989cc9ab3c3cb (plain) (tree)

























                                                                     
organization in ThisBuild := "io.crashbox"
licenses in ThisBuild := Seq(
  ("Apache 2.0", url("https://www.apache.org/licenses/LICENSE-2.0")))
homepage in ThisBuild := Some(
  url("https://github.com/jodersky/scala-identicon"))
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/jodersky/scala-identicon"),
    "scm:git@github.com:jodersky/scala-identicon.git"
  )
)
developers in ThisBuild := List(
  Developer(
    id = "jodersky",
    name = "Jakob Odersky",
    email = "jakob@odersky.com",
    url = url("https://crashbox.io")
  )
)