From a8bdff26c5be70f2dba8d577d66c9827735e3e7e Mon Sep 17 00:00:00 2001 From: Leonard Ehrenfried Date: Fri, 2 Feb 2018 13:46:57 +0100 Subject: [PATCH] Use released version of sbt-compat (#763) --- build.sbt | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/build.sbt b/build.sbt index f104ee403..27e73fb3e 100644 --- a/build.sbt +++ b/build.sbt @@ -238,9 +238,10 @@ lazy val `sbt-shared` = project .settings( plugin, utest, -// addSbtPlugin("com.dwijnand" % "sbt-compat" % "1.2.0+2-f30b82f4") + // because we don't publish for 2.11 the following declaration + // is more wordy than usual libs ++= { - val dependency = "com.dwijnand" % "sbt-compat" % "1.2.0+2-f30b82f4" + val dependency = "com.dwijnand" % "sbt-compat" % "1.2.1" val sbtV = (sbtBinaryVersion in pluginCrossBuild).value val scalaV = (scalaBinaryVersion in update).value val m = Defaults.sbtPluginExtra(dependency, sbtV, scalaV)