diff --git a/README.md b/README.md index 27b6ba0..ee0bf6b 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ JDBC Connector allow you to execute any SQL statement using Apache Spark. ``` -libraryDependencies += "com.github.music-of-the-ainur" %% "jdbc-almaren" % "0.0.4-3.1" +libraryDependencies += "com.github.music-of-the-ainur" %% "jdbc-almaren" % "0.0.4-$SPARK_VERSION" ``` ``` diff --git a/build.sbt b/build.sbt index 9e2d2d4..58f9ae1 100644 --- a/build.sbt +++ b/build.sbt @@ -5,7 +5,7 @@ lazy val scala212 = "2.12.15" ThisBuild / scalaVersion := scala212 -val sparkVersion = "3.1.3" +val sparkVersion = "3.2.1" val majorVersionReg = "([0-9]+\\.[0-9]+).{0,}".r val majorVersionReg(majorVersion) = sparkVersion @@ -14,7 +14,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.3-${majorVersion}" % "provided", + "com.github.music-of-the-ainur" %% "almaren-framework" % s"0.9.4-${majorVersion}" % "provided", "com.typesafe.scala-logging" %% "scala-logging" % "3.9.0", "org.scalikejdbc" %% "scalikejdbc" % "3.4.0", "org.scalatest" %% "scalatest" % "3.0.5" % "test",