Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -844,8 +844,8 @@ lazy val kernelApi = (project in file("kernel/kernel-api"))
"org.scalatest" %% "scalatest" % scalaTestVersion % "test",
"junit" % "junit" % "4.13.2" % "test",
"com.novocode" % "junit-interface" % "0.11" % "test",
"org.apache.logging.log4j" % "log4j-slf4j-impl" % "2.20.0" % "test",
"org.apache.logging.log4j" % "log4j-core" % "2.20.0" % "test",
"org.apache.logging.log4j" % "log4j-slf4j-impl" % "2.25.3" % "test",
"org.apache.logging.log4j" % "log4j-core" % "2.25.3" % "test",
"org.assertj" % "assertj-core" % "3.26.3" % "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
Expand Down Expand Up @@ -952,8 +952,8 @@ lazy val kernelDefaults = (project in file("kernel/kernel-defaults"))
"junit" % "junit" % "4.13.2" % "test",
"commons-io" % "commons-io" % "2.8.0" % "test",
"com.novocode" % "junit-interface" % "0.11" % "test",
"org.apache.logging.log4j" % "log4j-slf4j-impl" % "2.20.0" % "test",
"org.apache.logging.log4j" % "log4j-core" % "2.20.0" % "test",
"org.apache.logging.log4j" % "log4j-slf4j-impl" % "2.25.3" % "test",
"org.apache.logging.log4j" % "log4j-core" % "2.25.3" % "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.
Expand Down Expand Up @@ -1017,8 +1017,8 @@ lazy val kernelUnityCatalog = (project in file("kernel/unitycatalog"))
libraryDependencies ++= Seq(
"org.apache.hadoop" % "hadoop-common" % hadoopVersion % "provided",
"org.scalatest" %% "scalatest" % scalaTestVersion % "test",
"org.apache.logging.log4j" % "log4j-slf4j-impl" % "2.20.0" % "test",
"org.apache.logging.log4j" % "log4j-core" % "2.20.0" % "test",
"org.apache.logging.log4j" % "log4j-slf4j-impl" % "2.25.3" % "test",
"org.apache.logging.log4j" % "log4j-core" % "2.25.3" % "test",
),
unidocSourceFilePatterns += SourceFilePattern("src/main/java/io/delta/unity/"),
).configureUnidoc()
Expand Down
Loading