Skip to content

Commit

Permalink
Fix version check for core src.
Browse files Browse the repository at this point in the history
  • Loading branch information
holdenk committed Sep 30, 2024
1 parent 6099c4e commit 0e990fb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ val coreSources = unmanagedSourceDirectories in Compile := {
}

val coreTestSources = unmanagedSourceDirectories in Test := {
if (sparkVersion.value >= "3.0.0" && scalaVersion.value >= "2.12.0") Seq(
if (sparkVersion.value >= "4.0.0" && scalaVersion.value >= "2.12.0") Seq(
(sourceDirectory in Test)(_ / "4.0/scala"),
(sourceDirectory in Test)(_ / "3.0/scala"),
(sourceDirectory in Test)(_ / "3.0/java"),
Expand Down

0 comments on commit 0e990fb

Please sign in to comment.