Skip to content

Commit

Permalink
[Kernel][Build] Add jmh dependency in kernel-defaults module
Browse files Browse the repository at this point in the history
  • Loading branch information
vkorukanti authored Mar 12, 2024
1 parent 9b02ec7 commit 6c4d860
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -283,6 +283,11 @@ lazy val kernelDefaults = (project in file("kernel/kernel-defaults"))
"commons-io" % "commons-io" % "2.8.0" % "test",
"com.novocode" % "junit-interface" % "0.11" % "test",
"org.slf4j" % "slf4j-log4j12" % "1.7.36" % "test",
// JMH dependencies allow writing micro-benchmarks for testing performance of components.
// JMH has framework to define benchmarks and takes care of many common functionalities
// such as warm runs, cold runs, defining benchmark parameter variables etc.
"org.openjdk.jmh" % "jmh-core" % "1.37" % "test",
"org.openjdk.jmh" % "jmh-generator-annprocess" % "1.37" % "test",

"org.apache.spark" %% "spark-hive" % sparkVersion % "test" classifier "tests",
"org.apache.spark" %% "spark-sql" % sparkVersion % "test" classifier "tests",
Expand Down

0 comments on commit 6c4d860

Please sign in to comment.