From d7fd38798b24638b095357d4a96a7d3158fa4174 Mon Sep 17 00:00:00 2001 From: Jakob Odersky Date: Thu, 3 May 2018 16:21:39 -0700 Subject: Set up continuous deployment --- publish.sbt | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 publish.sbt (limited to 'publish.sbt') diff --git a/publish.sbt b/publish.sbt new file mode 100644 index 0000000..645dea3 --- /dev/null +++ b/publish.sbt @@ -0,0 +1,32 @@ +version in ThisBuild := { + import sys.process._ + ("git describe --always --dirty=-SNAPSHOT --match v[0-9].*" !!).tail.trim +} +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/sbt-settings")) +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/sbt-settings"), + "scm:git@github.com:drivergroup/sbt-settings.git" + ) +) + +developers in ThisBuild := List( + Developer( + id = "jodersky", + name = "Jakob Odersky", + email = "jakob@driver.xyz", + url = url("https://driver.xyz") + ) +) -- cgit v1.2.3