Skip to content

Commit f8d2420

Browse files
committed
Update to sbt-jmh 0.4.3 and JMH 1.32
1 parent 0ca3df2 commit f8d2420

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

build.sbt

+1-1
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ addCommandAlias("cold", "compilation/jmh:run ColdScalacBenchmark -foe true")
109109
commands ++= build.Profiler.commands
110110

111111
// duplicated in project/build.sbt
112-
val jmhV = System.getProperty("jmh.version", "1.31")
112+
val jmhV = System.getProperty("jmh.version", "1.32")
113113

114114
def addJmh(project: Project): Project = {
115115
// IntelliJ SBT project import doesn't like sbt-jmh's default setup, which results the prod and test

project/build.sbt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
val jmhV = System.getProperty("jmh.version", "1.31") // duplicated in build.sbt
1+
val jmhV = System.getProperty("jmh.version", "1.32") // duplicated in build.sbt
22

33
libraryDependencies ++= List(
44
"org.openjdk.jmh" % "jmh-core" % jmhV,

project/plugins.sbt

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ logLevel := Level.Warn
44
resolvers += Opts.resolver.sonatypeSnapshots
55

66
// sbt-jmh plugin - pulls in JMH dependencies too
7-
addSbtPlugin("pl.project13.scala" % "sbt-jmh" % "0.4.2")
7+
addSbtPlugin("pl.project13.scala" % "sbt-jmh" % "0.4.3")
88

99
// sbt-dotty plugin - to support `scalaVersion := "0.x"`
1010
addSbtPlugin("ch.epfl.lamp" % "sbt-dotty" % "0.4.2")

0 commit comments

Comments
 (0)