Skip to content

Commit e7a9a1f

Browse files
feat: add compatibility with Spark 3.5 #4
1 parent 3a8f942 commit e7a9a1f

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.devcontainer/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ ADD .devcontainer/hive-site.xml "/tmp/"
3636
RUN curl -s "https://get.sdkman.io?rcupdate=false" | bash
3737

3838
ENV JAVA_VERSION="17.0.13-amzn"
39-
ENV SCALA_VERSION="2.12.19"
39+
ENV SCALA_VERSION="2.12.18"
4040
ENV SCALA_BINARY_VERSION="2.12"
4141
ENV SBT_VERSION="1.10.6"
4242
ENV SPARK_VERSION="3.5.2"

build.sbt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ scmInfo := Some(
1616
)
1717
)
1818

19-
scalaVersion := Option(System.getenv("SCALA_VERSION")).getOrElse("2.12.19")
19+
scalaVersion := Option(System.getenv("SCALA_VERSION")).getOrElse("2.12.18")
2020

2121
val sparkVersion: Def.Initialize[String] = Def.setting {
2222
Option(System.getenv("SPARK_VERSION")).getOrElse("3.5.2")
@@ -97,8 +97,8 @@ libraryDependencies ++= Seq(
9797
"org.apache.logging.log4j" % "log4j-api" % "2.24.3" % "provided" excludeAll (excludeJacksonCore, excludeJacksonDataFormat, excludeJacksonDataType, excludeJacksonModule),
9898
"org.apache.logging.log4j" % "log4j-core" % "2.24.3" % "provided" excludeAll (excludeJacksonCore, excludeJacksonDataFormat, excludeJacksonDataType, excludeJacksonModule),
9999
"org.apache.logging.log4j" % "log4j-slf4j-impl" % "2.24.3" % "provided" excludeAll (excludeJacksonCore, excludeJacksonDataFormat, excludeJacksonDataType, excludeJacksonModule),
100-
"org.postgresql" % "postgresql" % "42.7.5",
101-
"io.delta" %% "delta-core" % "2.4.0",
100+
"org.postgresql" % "postgresql" % "42.7.5",
101+
"io.delta" %% "delta-spark" % "3.3.0",
102102
"io.vertx" % "vertx-json-schema" % "4.5.12" excludeAll (excludeJacksonCore, excludeJacksonDataFormat, excludeJacksonDataType, excludeJacksonModule),
103103
"com.google.guava" % "guava" % "25.1-jre",
104104
"org.apache.sedona" %% ("sedona-spark-" + sparkShortVersion.value) % "1.6.1" excludeAll (excludeSpark),

0 commit comments

Comments
 (0)