aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJakob Odersky <jakob@driver.xyz>2017-10-05 13:30:51 -0700
committerJakob Odersky <jakob@driver.xyz>2017-10-05 13:30:51 -0700
commit79502e93b4a93a1edf00ad34d7be6b9b19f9105d (patch)
tree6c95751ea9ff813887e44eea6cfbf098acca65ff
parent0bbbef2eae7337173987144ee2b2fefb0da53606 (diff)
downloadtracing-79502e93b4a93a1edf00ad34d7be6b9b19f9105d.tar.gz
tracing-79502e93b4a93a1edf00ad34d7be6b9b19f9105d.tar.bz2
tracing-79502e93b4a93a1edf00ad34d7be6b9b19f9105d.zip
Set up automatic versioning
-rw-r--r--build.sbt6
-rw-r--r--publish.sbt10
2 files changed, 12 insertions, 4 deletions
diff --git a/build.sbt b/build.sbt
index 5b9ea39..08efff3 100644
--- a/build.sbt
+++ b/build.sbt
@@ -1,3 +1,9 @@
+name := "tracing"
+version in ThisBuild := {
+ import sys.process._
+ ("git describe --always --dirty=-SNAPSHOT --match v[0-9].*" !!).tail.trim
+}
+
scalaVersion := "2.12.3"
libraryDependencies ++= Seq(
diff --git a/publish.sbt b/publish.sbt
index 31c76f1..ac75e3d 100644
--- a/publish.sbt
+++ b/publish.sbt
@@ -3,10 +3,12 @@ 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 in ThisBuild := {
- val nexus = "https://oss.sonatype.org/"
- Some("releases" at nexus + "service/local/staging/deploy/maven2")
-}
+publishTo := Some(
+ if (isSnapshot.value)
+ Opts.resolver.sonatypeSnapshots
+ else
+ Opts.resolver.sonatypeStaging
+)
scmInfo := Some(
ScmInfo(