Skip to content

Commit

Permalink
140: make benchmarks project a pure JVM project (it uses JMH)
Browse files Browse the repository at this point in the history
  • Loading branch information
hejfelix committed Apr 3, 2023
1 parent fb6075d commit 6685da4
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -146,10 +146,9 @@ lazy val examplesJs = crossProject(JSPlatform)
.jsConfigure(_.settings(scalaJSUseMainModuleInitializer := true))
.dependsOn(core)

lazy val benchmarks = crossProject(JSPlatform, JVMPlatform, NativePlatform)
.crossType(CrossType.Pure)
lazy val benchmarks = project
.in(file("./modules/benchmarks"))
.dependsOn(core)
.dependsOn(core.jvm)
.enablePlugins(JmhPlugin)
.settings(commonSettings)
.settings(publish / skip := true)

0 comments on commit 6685da4

Please sign in to comment.