Skip to content

Commit 61b161b

Browse files
committed
scalastyle and a fix
GitOrigin-RevId: 7b93f511509cdb9973fc1351296727fe2779198d
1 parent ab237d3 commit 61b161b

39 files changed

+1213
-551
lines changed

build.sbt

+4-1
Original file line numberDiff line numberDiff line change
@@ -206,7 +206,10 @@ lazy val deltaIceberg = (project in file("delta-iceberg"))
206206
val (expMaj, expMin, _) = getMajorMinorPatch(sparkVersion)
207207
("org.apache.iceberg" % s"iceberg-spark-runtime-$expMaj.$expMin" % "1.0.0" % "provided")
208208
.cross(CrossVersion.binary)
209-
}
209+
},
210+
// Fix Iceberg's legacy java.lang.NoClassDefFoundError: scala/jdk/CollectionConverters$ error
211+
// due to legacy scala.
212+
"org.scala-lang.modules" %% "scala-collection-compat" % "2.1.1"
210213
)
211214
)
212215

0 commit comments

Comments
 (0)