From 61c544ad779b462ae6a838a863d2222c6079a335 Mon Sep 17 00:00:00 2001 From: rohithvangapalli Date: Thu, 21 Sep 2023 11:24:18 +0530 Subject: [PATCH] Updated the spark and almaren version --- README.md | 4 ++-- build.sbt | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index c09a669..2e2ce73 100644 --- a/README.md +++ b/README.md @@ -13,11 +13,11 @@ To run in spark-shell: For scala-version(2.12): ``` -spark-shell --master "local[*]" --packages "com.github.music-of-the-ainur:almaren-framework_2.12:0.9.8-3.3,com.github.music-of-the-ainur:jdbc-almaren_2.12:0.0.5-3.3" +spark-shell --master "local[*]" --packages "com.github.music-of-the-ainur:almaren-framework_2.12:0.9.10-3.3,com.github.music-of-the-ainur:jdbc-almaren_2.12:0.0.5-3.3" ``` For scala-version(2.13): ``` -spark-shell --master "local[*]" --packages "com.github.music-of-the-ainur:almaren-framework_2.13:0.9.8-3.3,com.github.music-of-the-ainur:jdbc-almaren_2.13:0.0.5-3.3" +spark-shell --master "local[*]" --packages "com.github.music-of-the-ainur:almaren-framework_2.13:0.9.10-3.3,com.github.music-of-the-ainur:jdbc-almaren_2.13:0.0.5-3.3" ``` ### Connector Usage diff --git a/build.sbt b/build.sbt index 2225d3d..3c0e073 100644 --- a/build.sbt +++ b/build.sbt @@ -7,7 +7,7 @@ lazy val scala213 = "2.13.9" crossScalaVersions := Seq(scala212,scala213) ThisBuild / scalaVersion := scala213 -val sparkVersion = "3.3.0" +val sparkVersion = "3.3.3" val majorVersionReg = "([0-9]+\\.[0-9]+).{0,}".r val majorVersionReg(majorVersion) = sparkVersion @@ -16,7 +16,7 @@ scalacOptions ++= Seq("-deprecation", "-feature") libraryDependencies ++= Seq( "org.apache.spark" %% "spark-core" % sparkVersion % "provided", "org.apache.spark" %% "spark-sql" % sparkVersion % "provided", - "com.github.music-of-the-ainur" %% "almaren-framework" % s"0.9.8-${majorVersion}" % "provided", + "com.github.music-of-the-ainur" %% "almaren-framework" % s"0.9.10-${majorVersion}" % "provided", "com.typesafe.scala-logging" %% "scala-logging" % "3.9.5", "org.scalikejdbc" %% "scalikejdbc" % "3.4.0", "org.scalatest" %% "scalatest" % "3.2.14" % "test",