Skip to content

Commit

Permalink
Merge pull request #174 from grails/hibernate-gorm
Browse files Browse the repository at this point in the history
(major) Update hibernate gorm to 8.0.0
  • Loading branch information
puneetbehl authored Jul 23, 2023
2 parents 4f7da51 + 5a8eb93 commit e6e0cdc
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion grails-forge-core/src/main/resources/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
<dependency>
<groupId>org.grails.plugins</groupId>
<artifactId>hibernate5</artifactId>
<version>8.0.0-RC1</version>
<version>8.0.0</version>
</dependency>
<dependency>
<groupId>org.grails.plugins</groupId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ class HibernateGormSpec extends ApplicationContextSpec implements CommandOutputF
.renderBuildSrc()

then:
template.contains('implementation("org.grails.plugins:hibernate5:8.0.0-RC1")')
template.contains('implementation("org.grails.plugins:hibernate5:8.0.0")')
}

void "test buildSrc is present for buildscript dependencies"() {
Expand All @@ -53,7 +53,7 @@ class HibernateGormSpec extends ApplicationContextSpec implements CommandOutputF

expect:
buildSrcBuildGradle != null
buildSrcBuildGradle.contains("implementation(\"org.grails.plugins:hibernate5:8.0.0-RC1\")")
buildSrcBuildGradle.contains("implementation(\"org.grails.plugins:hibernate5:8.0.0\")")

}

Expand Down

0 comments on commit e6e0cdc

Please sign in to comment.