From b1444405dffd4d10e338ec89930c92fca841742a Mon Sep 17 00:00:00 2001 From: Seth Tisue Date: Wed, 10 Feb 2021 14:39:55 -0800 Subject: [PATCH] upgrade sbt plugin versions MiMa, sbt-buildinfo, sbt-dotty, sbt-jmh... all were out of date --- project/plugins.sbt | 6 +++--- project/project/plugins.sbt | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/project/plugins.sbt b/project/plugins.sbt index 3230fb225cfa..9294ca79ba70 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -17,7 +17,7 @@ buildInfoKeys := Seq[BuildInfoKey](buildClasspath) buildInfoPackage := "scalabuild" -addSbtPlugin("com.typesafe" % "sbt-mima-plugin" % "0.8.0") +addSbtPlugin("com.typesafe" % "sbt-mima-plugin" % "0.8.1") libraryDependencies ++= Seq( "org.eclipse.jgit" % "org.eclipse.jgit" % "4.6.0.201612231935-r", @@ -29,13 +29,13 @@ Global / concurrentRestrictions := Seq( Tags.limitAll(1) // workaround for https://github.com/sbt/sbt/issues/2970 ) -addSbtPlugin("pl.project13.scala" % "sbt-jmh" % "0.3.3") +addSbtPlugin("pl.project13.scala" % "sbt-jmh" % "0.3.4") addSbtPlugin("de.heikoseeberger" % "sbt-header" % "5.0.0") // See DottySupport.scala if (Option(System.getProperty("scala.build.compileWithDotty")).map(_.toBoolean).getOrElse(false)) - Seq(addSbtPlugin("ch.epfl.lamp" % "sbt-dotty" % "0.5.0")) + Seq(addSbtPlugin("ch.epfl.lamp" % "sbt-dotty" % "0.5.2")) else Seq() diff --git a/project/project/plugins.sbt b/project/project/plugins.sbt index 22366532fc04..b8bfe1262e80 100644 --- a/project/project/plugins.sbt +++ b/project/project/plugins.sbt @@ -1 +1 @@ -addSbtPlugin("com.eed3si9n" % "sbt-buildinfo" % "0.7.0") +addSbtPlugin("com.eed3si9n" % "sbt-buildinfo" % "0.10.0")