Skip to content

Commit

Permalink
Merge pull request #10 from badrinathpatchikolla/spark-3.2
Browse files Browse the repository at this point in the history
Added Spark 3.2 Changes
  • Loading branch information
badrinathpatchikolla authored May 20, 2022
2 parents 93c94f8 + aaa7205 commit f52b04d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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"
```

```
Expand Down
4 changes: 2 additions & 2 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand All @@ -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",
Expand Down

0 comments on commit f52b04d

Please sign in to comment.