From 7e0417dabbbade701970075ac477f17b49273276 Mon Sep 17 00:00:00 2001 From: "pawel.leszczynski" Date: Fri, 22 Nov 2024 12:22:25 +0100 Subject: [PATCH] fix iceberg vendor build (#3269) Signed-off-by: Pawel Leszczynski --- integration/spark/vendor/iceberg/build.gradle | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/integration/spark/vendor/iceberg/build.gradle b/integration/spark/vendor/iceberg/build.gradle index c9d79041d8..331c860800 100644 --- a/integration/spark/vendor/iceberg/build.gradle +++ b/integration/spark/vendor/iceberg/build.gradle @@ -13,12 +13,12 @@ ext { micrometerVersion = '1.13.6' icebergLookup = [ - '3.1.3': '1.3.1', - '3.2.4': '1.4.3', - '3.3.4': '1.5.2', - '3.4.3': '1.6.0', - '3.5.2': '1.7.0', - '4.0.0': '1.7.0' + '3.1': '1.3.1', + '3.2': '1.4.3', + '3.3': '1.5.2', + '3.4': '1.6.0', + '3.5': '1.7.0', + '4.0': '1.7.0' ] sparkProp = project.findProperty('spark.version').toString() @@ -29,7 +29,7 @@ ext { scala = project.findProperty('scala.binary.version').toString() scalaFmt = scala.replace(".", "") - icebergVersion = icebergLookup[spark] + icebergVersion = icebergLookup[series] activeRuntimeElementsConfiguration = "scala${scalaFmt}RuntimeElements" }