Skip to content

Commit

Permalink
fix: example won't compile (#218)
Browse files Browse the repository at this point in the history
settings need comma
  • Loading branch information
i10416 committed Feb 27, 2023
1 parent b44b96b commit f785d91
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -83,11 +83,11 @@ lazy val bench = project
.dependsOn(anotherModule % "test->test")
.enablePlugins(JmhPlugin)
.settings(
Jmh / sourceDirectory := (Test / sourceDirectory).value
Jmh / classDirectory := (Test / classDirectory).value
Jmh / dependencyClasspath := (Test / dependencyClasspath).value
Jmh / sourceDirectory := (Test / sourceDirectory).value,
Jmh / classDirectory := (Test / classDirectory).value,
Jmh / dependencyClasspath := (Test / dependencyClasspath).value,
// rewire tasks, so that 'bench/Jmh/run' automatically invokes 'bench/Jmh/compile' (otherwise a clean 'bench/Jmh/run' would fail)
Jmh / compile := (Jmh / compile).dependsOn(Test / compile).value
Jmh / compile := (Jmh / compile).dependsOn(Test / compile).value,
Jmh / run := (Jmh / run).dependsOn(Jmh / compile).evaluated
)
```
Expand Down

0 comments on commit f785d91

Please sign in to comment.