Skip to content

Commit

Permalink
Exclude jackson core dependencies from ebean and use Play's
Browse files Browse the repository at this point in the history
  • Loading branch information
mkurz committed Mar 11, 2024
1 parent 5aa0fb6 commit 5a7fbec
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions project/Dependencies.scala
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@ object Dependencies {
}

val ebean = libraryDependencies ++= Seq(
"io.ebean" % "ebean" % Versions.ebean,
"io.ebean" % "ebean-ddl-generator" % Versions.ebean,
"io.ebean" % "ebean-agent" % Versions.ebean,
("io.ebean" % "ebean" % Versions.ebean).excludeAll(ExclusionRule("com.fasterxml.jackson.core")),
"io.ebean" % "ebean-ddl-generator" % Versions.ebean,
"io.ebean" % "ebean-agent" % Versions.ebean,
"org.playframework" %% "play-java-jdbc" % Versions.play,
"org.playframework" %% "play-jdbc-evolutions" % Versions.play,
"org.playframework" %% "play-guice" % Versions.play % Test,
Expand Down

0 comments on commit 5a7fbec

Please sign in to comment.