Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

upgrade jackson version #263

Merged
merged 1 commit into from
Oct 16, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 6 additions & 4 deletions project/Dependencies.scala
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ object Dependencies {
val CassandraDriverVersionInDocs = "4.15"

val Cassandra = Seq(
libraryDependencies ++= Seq(
libraryDependencies ++= JacksonDatabindDependencies ++ Seq(
("com.datastax.oss" % "java-driver-core" % CassandraDriverVersion)
.exclude("com.github.spotbugs", "spotbugs-annotations")
.exclude("org.apache.tinkerpop", "*") // https://github.com/akka/alpakka/issues/2200
Expand Down Expand Up @@ -186,6 +186,8 @@ object Dependencies {
Seq("geode-core", "geode-cq")
.map("org.apache.geode" % _ % GeodeVersion) ++
Seq(
"com.fasterxml.jackson.datatype" % "jackson-datatype-joda" % JacksonDatabindVersion,
"com.fasterxml.jackson.datatype" % "jackson-datatype-jsr310" % JacksonDatabindVersion,
"org.apache.logging.log4j" % "log4j-to-slf4j" % "2.17.1" % Test) ++ JacksonDatabindDependencies ++
(if (isScala3.value)
Seq.empty // Equivalent and relevant shapeless functionality has been mainlined into Scala 3 language/stdlib
Expand Down Expand Up @@ -350,10 +352,10 @@ object Dependencies {
"org.apache.pekko" %% "pekko-stream-testkit" % PekkoVersion % Test))

val OrientDB = Seq(
libraryDependencies ++= Seq(
("com.orientechnologies" % "orientdb-graphdb" % "3.1.9")
libraryDependencies ++= JacksonDatabindDependencies ++ Seq(
("com.orientechnologies" % "orientdb-graphdb" % "3.1.20")
.exclude("com.tinkerpop.blueprints", "blueprints-core"),
"com.orientechnologies" % "orientdb-object" % "3.1.9"))
"com.orientechnologies" % "orientdb-object" % "3.1.20"))

val PravegaVersion = "0.10.2"
val PravegaVersionForDocs = s"v$PravegaVersion"
Expand Down
Loading