Skip to content

Commit 836b286

Browse files
committed
[#1888] Fix default Hibernate ORM version setting
It should be set in the default file and not the gradle.properties
1 parent a8e757f commit 836b286

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ version = projectVersion
5353
// ./gradlew clean build -PhibernateOrmVersion=5.6.15-SNAPSHOT
5454
ext {
5555
if ( !project.hasProperty('hibernateOrmVersion') ) {
56-
hibernateOrmVersion = '6.4.4.Final'
56+
hibernateOrmVersion = '6.5.0.CR2'
5757
}
5858
if ( !project.hasProperty( 'hibernateOrmGradlePluginVersion' ) ) {
5959
// Same as ORM as default

gradle.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ org.gradle.java.installations.auto-download=false
3535
#enableMavenLocalRepo = true
3636

3737
# Override default Hibernate ORM version
38-
hibernateOrmVersion = 6.5.0.CR2
38+
#hibernateOrmVersion = 6.5.0.CR2
3939

4040
# Override default Hibernate ORM Gradle plugin version
4141
# Using the stable version because I don't know how to configure the build to download the snapshot version from

0 commit comments

Comments
 (0)