Skip to content

Commit

Permalink
Downgrade jackson to 2.6.7
Browse files Browse the repository at this point in the history
Resolve compatibility issue with Apache Spark 2.4.+
  • Loading branch information
goshaQ committed Sep 10, 2020
1 parent 4a9942c commit 5c8f09d
Showing 1 changed file with 10 additions and 6 deletions.
16 changes: 10 additions & 6 deletions build.sbt
Original file line number Diff line number Diff line change
@@ -1,16 +1,20 @@
lazy val commonSettings = (project in file(".")).
settings(
organization := "io.wunderschild",
name := "country-codes",
version := "0.0.1",
version := "0.0.2",
scalaVersion := "2.11.12",
githubOwner := "wunderschild",
githubRepository := "country-codes")

val jacksonVersion = "2.6.7"
val jacksonModuleVersion = "2.6.7.1"

libraryDependencies ++= Seq(
"org.scala-lang" % "scala-reflect" % scalaVersion.value,
"com.fasterxml.jackson.core" % "jackson-core" % "2.10.3",
"com.fasterxml.jackson.core" % "jackson-annotations" % "2.10.3",
"com.fasterxml.jackson.core" % "jackson-databind" % "2.10.3",
"com.fasterxml.jackson.module" % "jackson-module-scala_2.11" % "2.10.3",
"com.fasterxml.jackson.dataformat" % "jackson-dataformat-yaml" % "2.10.3"
"com.fasterxml.jackson.core" % "jackson-core" % jacksonVersion,
"com.fasterxml.jackson.core" % "jackson-annotations" % jacksonVersion,
"com.fasterxml.jackson.core" % "jackson-databind" % jacksonVersion,
"com.fasterxml.jackson.module" %% "jackson-module-scala" % jacksonModuleVersion,
"com.fasterxml.jackson.dataformat" % "jackson-dataformat-yaml" % jacksonVersion
)

0 comments on commit 5c8f09d

Please sign in to comment.