Skip to content

Commit

Permalink
Merge pull request #451 from mkurz/ebean-15
Browse files Browse the repository at this point in the history
Ebean 15.0.1
  • Loading branch information
mkurz authored Mar 11, 2024
2 parents 48cbdea + 5a7fbec commit d7d72af
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions project/Dependencies.scala
Original file line number Diff line number Diff line change
Expand Up @@ -16,15 +16,14 @@ object Dependencies {

object Versions {
val play: String = "3.0.1"
val ebean = "13.23.0"
val ebeanJakarta = s"$ebean-jakarta"
val ebean = "15.0.1"
val typesafeConfig = "1.4.3"
}

val ebean = libraryDependencies ++= Seq(
"io.ebean" % "ebean" % Versions.ebeanJakarta,
"io.ebean" % "ebean-ddl-generator" % Versions.ebeanJakarta,
"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 All @@ -36,7 +35,7 @@ object Dependencies {
)

val plugin = libraryDependencies ++= Seq(
"io.ebean" % "ebean" % Versions.ebeanJakarta,
"io.ebean" % "ebean" % Versions.ebean,
"io.ebean" % "ebean-agent" % Versions.ebean,
"com.typesafe" % "config" % Versions.typesafeConfig,
)
Expand Down

0 comments on commit d7d72af

Please sign in to comment.