Skip to content

Commit

Permalink
[hibernate#1888] Fix default Hibernate ORM version setting
Browse files Browse the repository at this point in the history
It should be set in the default file and not the gradle.properties
  • Loading branch information
DavideD committed Apr 18, 2024
1 parent a8e757f commit 0e17d3c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ version = projectVersion
// ./gradlew clean build -PhibernateOrmVersion=5.6.15-SNAPSHOT
ext {
if ( !project.hasProperty('hibernateOrmVersion') ) {
hibernateOrmVersion = '6.4.4.Final'
hibernateOrmVersion = '6.5.0.CR2'
}
if ( !project.hasProperty( 'hibernateOrmGradlePluginVersion' ) ) {
// Same as ORM as default
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ org.gradle.java.installations.auto-download=false
#enableMavenLocalRepo = true

# Override default Hibernate ORM version
hibernateOrmVersion = 6.5.0.CR2
#hibernateOrmVersion = 6.5.0.CR2

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

0 comments on commit 0e17d3c

Please sign in to comment.