From f7a7fdcea23dc54f72760ef22697e8a5c0a090d9 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 17 May 2024 15:37:47 +0000 Subject: [PATCH] Bump org.hibernate.orm:hibernate-testing Bumps [org.hibernate.orm:hibernate-testing](https://github.com/hibernate/hibernate-orm) from 6.2.25.Final to 6.5.1.Final. - [Release notes](https://github.com/hibernate/hibernate-orm/releases) - [Changelog](https://github.com/hibernate/hibernate-orm/blob/6.5.1/changelog.txt) - [Commits](https://github.com/hibernate/hibernate-orm/compare/6.2.25...6.5.1) --- updated-dependencies: - dependency-name: org.hibernate.orm:hibernate-testing dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- basic/build.gradle | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/basic/build.gradle b/basic/build.gradle index 7ea2995..f50e710 100644 --- a/basic/build.gradle +++ b/basic/build.gradle @@ -21,11 +21,11 @@ dependencies { def orm = project.findProperty("orm") if ( "6.4" == orm ) { testImplementation 'org.hibernate.orm:hibernate-core:6.4.8.Final' - testImplementation 'org.hibernate.orm:hibernate-testing:6.4.8.Final' + testImplementation 'org.hibernate.orm:hibernate-testing:6.5.1.Final' } else if ( "6.2" == orm ) { testImplementation 'org.hibernate.orm:hibernate-core:6.2.25.Final' - testImplementation 'org.hibernate.orm:hibernate-testing:6.2.25.Final' + testImplementation 'org.hibernate.orm:hibernate-testing:6.5.1.Final' } else if ( "5.6" == orm ) { testImplementation 'org.hibernate:hibernate-core-jakarta:5.6.15.Final' @@ -33,11 +33,11 @@ dependencies { } else if ( "perf" == orm ) { testImplementation 'org.hibernate.orm:hibernate-core:6.6.0-perf' - testImplementation 'org.hibernate.orm:hibernate-testing:6.6.0-perf' + testImplementation 'org.hibernate.orm:hibernate-testing:6.5.1.Final' } else { testImplementation 'org.hibernate.orm:hibernate-core:6.6.0.Alpha1' - testImplementation 'org.hibernate.orm:hibernate-testing:6.6.0.Alpha1' + testImplementation 'org.hibernate.orm:hibernate-testing:6.5.1.Final' } }