Skip to content

Commit

Permalink
Re-enable iceberg module
Browse files Browse the repository at this point in the history
## Description

(Cherry-pick of d9a5f9f to branch-2.4)

Reenable iceberg build that was previously disabled in #1720

## How was this patch tested?

N/A

Signed-off-by: Felipe Fujiy Pessoto <fepessot@microsoft.com>
  • Loading branch information
felipepessoto authored Jul 24, 2023
1 parent b8a4957 commit adeda1e
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -204,8 +204,6 @@ lazy val storageS3DynamoDB = (project in file("storage-s3-dynamodb"))
)
)

// Requires iceberg release on 3.4
/**
lazy val deltaIceberg = (project in file("delta-iceberg"))
.dependsOn(core % "compile->compile;test->test;provided->provided")
.settings (
Expand All @@ -215,15 +213,14 @@ lazy val deltaIceberg = (project in file("delta-iceberg"))
releaseSettings,
libraryDependencies ++= Seq( {
val (expMaj, expMin, _) = getMajorMinorPatch(sparkVersion)
("org.apache.iceberg" % s"iceberg-spark-runtime-$expMaj.$expMin" % "1.1.0" % "provided")
("org.apache.iceberg" % s"iceberg-spark-runtime-$expMaj.$expMin" % "1.3.0" % "provided")
.cross(CrossVersion.binary)
},
// Fix Iceberg's legacy java.lang.NoClassDefFoundError: scala/jdk/CollectionConverters$ error
// due to legacy scala.
"org.scala-lang.modules" %% "scala-collection-compat" % "2.1.1"
)
)
*/

/**
* Get list of python files and return the mapping between source files and target paths
Expand Down

0 comments on commit adeda1e

Please sign in to comment.