aboutsummaryrefslogtreecommitdiff
path: root/build.sbt
diff options
context:
space:
mode:
Diffstat (limited to 'build.sbt')
-rw-r--r--build.sbt7
1 files changed, 5 insertions, 2 deletions
diff --git a/build.sbt b/build.sbt
index 7d29f36..7c78b0b 100644
--- a/build.sbt
+++ b/build.sbt
@@ -79,9 +79,12 @@ lazy val benchmarks = project
.dependsOn(examplesJVM)
lazy val buildSettings = Seq(
- organization := "com.propensive",
+ organization in ThisBuild := "io.crashbox",
name := "magnolia",
- version := "0.8.0",
+ version in ThisBuild := {
+ import sys.process._
+ ("git describe --always --dirty=-SNAPSHOT --match v[0-9].*" !!).tail.trim
+ },
scalacOptions ++= Seq(
"-deprecation",
"-feature",