File tree 1 file changed +2
-2
lines changed
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -36,13 +36,13 @@ lazy val compilation = addJmh(project).settings(
36
36
// We should be able to switch this project to a broad range of Scala versions for comparative
37
37
// benchmarking. As such, this project should only depend on the high level `MainClass` compiler API.
38
38
description := " Black box benchmark of the compiler" ,
39
- libraryDependencies += " org.scala-lang " % " scala-compiler" % scalaVersion.value,
39
+ libraryDependencies += scalaOrganization.value % " scala-compiler" % scalaVersion.value,
40
40
mainClass in (Jmh , run) := Some (" scala.bench.ScalacBenchmarkRunner" )
41
41
).settings(addJavaOptions).dependsOn(infrastructure)
42
42
43
43
lazy val micro = addJmh(project).settings(
44
44
description := " Finer grained benchmarks of compiler internals" ,
45
- libraryDependencies += " org.scala-lang " % " scala-compiler" % scalaVersion.value
45
+ libraryDependencies += scalaOrganization.value % " scala-compiler" % scalaVersion.value
46
46
).settings(addJavaOptions).dependsOn(infrastructure)
47
47
48
48
lazy val jvm = addJmh(project).settings(
You can’t perform that action at this time.
0 commit comments