From 9ab5554439ca315f014ec5433fbaf61be697fa11 Mon Sep 17 00:00:00 2001 From: Gabriele Petronella Date: Sun, 8 Jan 2017 17:11:22 +0100 Subject: [PATCH] Use sbt-git for versioning --- build.sbt | 3 ++- project/plugins.sbt | 1 + 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/build.sbt b/build.sbt index ab8ebe5..b1a4536 100644 --- a/build.sbt +++ b/build.sbt @@ -1,8 +1,9 @@ +enablePlugins(GitVersioning) + lazy val root = (project in file(".")). settings( sbtPlugin := true, name := "sbt-buildo", - version := "0.1.5", organization := "io.buildo", description := "sbt plugin for sharing configuration across projects at buildo", addSbtPlugin("me.lessis" % "bintray-sbt" % "0.3.0"), diff --git a/project/plugins.sbt b/project/plugins.sbt index 8dd913f..1f9740d 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -1 +1,2 @@ +addSbtPlugin("com.typesafe.sbt" % "sbt-git" % "0.8.5") addSbtPlugin("me.lessis" % "bintray-sbt" % "0.3.0")