From f8d24207a5e8f9d6ffbb86a9ffb0b113cf26a252 Mon Sep 17 00:00:00 2001 From: Jason Zaugg Date: Tue, 1 Jun 2021 20:26:34 +1000 Subject: [PATCH] Update to sbt-jmh 0.4.3 and JMH 1.32 --- build.sbt | 2 +- project/build.sbt | 2 +- project/plugins.sbt | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/build.sbt b/build.sbt index 45c3a85..90d7748 100644 --- a/build.sbt +++ b/build.sbt @@ -109,7 +109,7 @@ addCommandAlias("cold", "compilation/jmh:run ColdScalacBenchmark -foe true") commands ++= build.Profiler.commands // duplicated in project/build.sbt -val jmhV = System.getProperty("jmh.version", "1.31") +val jmhV = System.getProperty("jmh.version", "1.32") def addJmh(project: Project): Project = { // IntelliJ SBT project import doesn't like sbt-jmh's default setup, which results the prod and test diff --git a/project/build.sbt b/project/build.sbt index 7293c27..2e0bf3a 100644 --- a/project/build.sbt +++ b/project/build.sbt @@ -1,4 +1,4 @@ -val jmhV = System.getProperty("jmh.version", "1.31") // duplicated in build.sbt +val jmhV = System.getProperty("jmh.version", "1.32") // duplicated in build.sbt libraryDependencies ++= List( "org.openjdk.jmh" % "jmh-core" % jmhV, diff --git a/project/plugins.sbt b/project/plugins.sbt index 69442e7..1035cfd 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -4,7 +4,7 @@ logLevel := Level.Warn resolvers += Opts.resolver.sonatypeSnapshots // sbt-jmh plugin - pulls in JMH dependencies too -addSbtPlugin("pl.project13.scala" % "sbt-jmh" % "0.4.2") +addSbtPlugin("pl.project13.scala" % "sbt-jmh" % "0.4.3") // sbt-dotty plugin - to support `scalaVersion := "0.x"` addSbtPlugin("ch.epfl.lamp" % "sbt-dotty" % "0.4.2")