Skip to content
This repository was archived by the owner on May 22, 2025. It is now read-only.

Commit 74d57c8

Browse files
committed
feedback: hibernate 5 -> hibernate 6 references
1 parent 7c2fcb1 commit 74d57c8

File tree

8 files changed

+12
-12
lines changed

8 files changed

+12
-12
lines changed

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ group = 'this.will.be.overridden'
7070

7171
def publishedProjects = [
7272
'database-migration',
73-
'gorm-hibernate5-spring-boot',
73+
'gorm-hibernate6-spring-boot',
7474
'grails-datastore-gorm-hibernate6',
7575
'grails-plugin',
7676
]

docs/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ tasks.register('cleanAsciidoc', Delete) {
112112

113113
tasks.withType(Groovydoc).configureEach {
114114
dependsOn('fetchGormSource')
115-
docTitle = "GORM for Hibernate 5 - $project.version"
115+
docTitle = "GORM for Hibernate 6 - $project.version"
116116

117117
def sourceFiles = coreProjects.collect {
118118
layout.buildDirectory.files("$checkoutDirName/gorm-src/$it/src/main/groovy")

examples/spring-boot-hibernate/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ dependencies {
1010

1111
implementation platform("org.grails:grails-bom:$grailsVersion")
1212

13-
implementation project(':gorm-hibernate5-spring-boot')
13+
implementation project(':gorm-hibernate6-spring-boot')
1414
implementation 'org.springframework.boot:spring-boot-starter-web'
1515

1616
runtimeOnly 'com.h2database:h2'

gradle/publish-config.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@ if (project.hasProperty('snapshotPublishUrl')) {
77

88
extensions.configure(GrailsPublishExtension) {
99
// Explicit `it` is required here
10-
it.githubSlug = 'grails/gorm-hibernate5'
10+
it.githubSlug = 'grails/gorm-hibernate6'
1111
it.license.name = 'Apache-2.0'
12-
it.title = findProperty('pomTitle') ?: 'GORM for Hibernate 5'
13-
it.desc = findProperty('pomDescription') ?: 'Provides a GORM Object Mapping implementations for Hibernate 5'
12+
it.title = findProperty('pomTitle') ?: 'GORM for Hibernate 6'
13+
it.desc = findProperty('pomDescription') ?: 'Provides a GORM Object Mapping implementations for Hibernate 6'
1414
it.developers = findProperty('pomDevelopers') as Map<String,String> ?: [
1515
'graemerocher': 'Graeme Rocher',
1616
'jeffscottbrown': 'Jeff Brown',

gradle/tck-config.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ tasks.withType(Test).configureEach {
1717
System.out.flush()
1818
}
1919
// Used in the TCK test suite to selectively enable/disable tests
20-
systemProperty('hibernate5.gorm.suite', 'true')
20+
systemProperty('hibernate6.gorm.suite', 'true')
2121

2222
doFirst {
2323
def toBaseClassRelativePathWithoutExtension = { String base, String classFile ->

gradle/test-config.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ tasks.withType(Test).configureEach {
99
}
1010

1111
useJUnitPlatform()
12-
systemProperty('hibernate5.gorm.suite', System.getProperty('hibernate5.gorm.suite') ?: true)
12+
systemProperty('hibernate6.gorm.suite', System.getProperty('hibernate6.gorm.suite') ?: true)
1313
reports.html.required = !System.getenv('CI')
1414
reports.junitXml.required = !System.getenv('CI')
1515
testLogging {

grails-database-migration/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,13 +36,13 @@ dependencies {
3636

3737
compileOnly "org.springframework.boot:spring-boot-starter-logging"
3838
compileOnly "org.springframework.boot:spring-boot-autoconfigure"
39-
compileOnly "org.grails.plugins:hibernate5"
39+
compileOnly project(':grails-plugin')
4040
compileOnly "org.grails:grails-core"
4141
compileOnly "org.apache.groovy:groovy-sql"
4242
compileOnly "org.apache.groovy:groovy-xml"
4343

4444
testImplementation "org.springframework.boot:spring-boot-starter-tomcat"
45-
testImplementation "org.grails.plugins:hibernate5"
45+
testImplementation project(':grails-plugin')
4646
testImplementation "org.grails:grails-core"
4747
testImplementation "org.grails:grails-gorm-testing-support"
4848
testImplementation "org.grails:grails-web-testing-support"

grails-plugin/src/main/groovy/grails/plugin/hibernate/HibernateGrailsPlugin.groovy

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@ class HibernateGrailsPlugin extends Plugin {
2929
def grailsVersion = '7.0.0 > *'
3030

3131
def author = 'Grails Core Team'
32-
def title = 'Hibernate 5 for Grails'
33-
def description = 'Provides integration between Grails and Hibernate 5 through GORM'
32+
def title = 'Hibernate 6 for Grails'
33+
def description = 'Provides integration between Grails and Hibernate 6 through GORM'
3434
def documentation = 'https://grails.github.io/grails-data-mapping/latest/'
3535

3636
def observe = ['domainClass']

0 commit comments

Comments
 (0)