Skip to content

Commit

Permalink
Merge pull request #9 from badrinathpatchikolla/spark-2.4
Browse files Browse the repository at this point in the history
Added ReadMe for Spark 2.4
  • Loading branch information
badrinathpatchikolla authored Mar 29, 2022
2 parents 1abcf34 + 0df1f76 commit d2564d7
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 9 deletions.
5 changes: 1 addition & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ language: scala
jdk: openjdk8

scala:
- 2.12.15
- 2.11.12

cache:
directories:
Expand All @@ -27,6 +27,3 @@ before_script:

script:
- sbt +test



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.3-3.1"
libraryDependencies += "com.github.music-of-the-ainur" %% "jdbc-almaren" % "0.0.3-2.4"
```

```
Expand Down
10 changes: 6 additions & 4 deletions build.sbt
Original file line number Diff line number Diff line change
@@ -1,11 +1,13 @@
ThisBuild / name := "jdbc.almaren"
ThisBuild / organization := "com.github.music-of-the-ainur"

lazy val scala212 = "2.12.15"
lazy val scala211 = "2.11.12"
lazy val scala212 = "2.12.10"

crossScalaVersions := Seq(scala211,scala212)
ThisBuild / scalaVersion := scala212

val sparkVersion = "3.1.3"
val sparkVersion = "2.4.5"
val majorVersionReg = "([0-9]+\\.[0-9]+).{0,}".r
val majorVersionReg(majorVersion) = sparkVersion

Expand Down Expand Up @@ -42,7 +44,7 @@ ThisBuild / developers := List(
email = "badrinath.patchikolla@modak.com",
url = url("https://github.com/music-of-the-ainur")
),
Developer(
Developer(
id = "praveenkumarb1207",
name = "Praveen Kumar",
email = "praveen.bachu@modak.com",
Expand All @@ -67,4 +69,4 @@ ThisBuild / publishTo := {
}

ThisBuild / publishMavenStyle := true
updateOptions := updateOptions.value.withGigahorse(false)
updateOptions := updateOptions.value.withGigahorse(false)

0 comments on commit d2564d7

Please sign in to comment.