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

Update hibernate-core to 5.4.15.Final #10254

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ libraryDependencies += "org.apache.derby" % "derby" % "10.14.2.0" % "test"
//#multi-deps
libraryDependencies ++= Seq(
"org.apache.derby" % "derby" % "10.14.2.0",
"org.hibernate" % "hibernate-core" % "5.4.14.Final"
"org.hibernate" % "hibernate-core" % "5.4.15.Final"
)
//#multi-deps

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
//#jpa-sbt-dependencies
libraryDependencies ++= Seq(
javaJpa,
"org.hibernate" % "hibernate-core" % "5.4.14.Final" // replace by your jpa implementation
"org.hibernate" % "hibernate-core" % "5.4.15.Final" // replace by your jpa implementation
)
//#jpa-sbt-dependencies

Expand Down
2 changes: 1 addition & 1 deletion project/Dependencies.scala
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ object Dependencies {

val jpaDeps = Seq(
"org.hibernate.javax.persistence" % "hibernate-jpa-2.1-api" % "1.0.2.Final",
"org.hibernate" % "hibernate-core" % "5.4.14.Final" % "test"
"org.hibernate" % "hibernate-core" % "5.4.15.Final" % "test"
)

def scalaReflect(scalaVersion: String) = "org.scala-lang" % "scala-reflect" % scalaVersion % "provided"
Expand Down