Skip to content

Commit c8e2704

Browse files
authored
[Spark] [FOLLOWUP-2166] Fix the hardcoded iceberg version in build.sbt (#2186)
1 parent 64741bc commit c8e2704

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

build.sbt

+3-2
Original file line numberDiff line numberDiff line change
@@ -379,8 +379,9 @@ lazy val iceberg = (project in file("iceberg"))
379379
// Note: the input here is only `libraryDependencies` jars, not `.dependsOn(_)` jars.
380380
val allowedJars = Seq(
381381
s"iceberg-shaded_${scalaBinaryVersion.value}-${version.value}.jar",
382-
"scala-library-2.12.15.jar",
383-
"scala-collection-compat_2.12-2.1.1.jar",
382+
s"scala-library-${scala212}.jar",
383+
s"scala-library-${scala213}.jar",
384+
s"scala-collection-compat_${scalaBinaryVersion.value}-2.1.1.jar",
384385
"caffeine-2.9.3.jar",
385386
// Note: We are excluding
386387
// - antlr4-runtime-4.9.3.jar

0 commit comments

Comments
 (0)