Skip to content

Commit

Permalink
BREAKING CHANGES
Browse files Browse the repository at this point in the history
Rename plugin `hibernate5` to `hibernate`
Rename project `grace-datastore-gorm-hibernate5` to `grace-datastore-gorm-hibernate`
Remove project `gorm-hibernate5-spring-boot`
  • Loading branch information
rainboyan committed Jun 9, 2024
1 parent 81e422c commit f9795c7
Show file tree
Hide file tree
Showing 201 changed files with 12 additions and 6 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ subprojects { Project subproject ->
ext {
projectArtifactId = subproject.name
isExample = subproject.name.startsWith('example')
isPluginProject = subproject.name == 'hibernate5'
isPluginProject = subproject.name == 'hibernate'
}

if (isPluginProject) {
Expand Down
File renamed without changes.
8 changes: 7 additions & 1 deletion grace-plugin/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ dependencies {
exclude group: 'org.graceframework', module: 'grace-datastore-gorm-validation'
}
api "org.graceframework:grace-datastore-gorm-support:$gormVersion"
api project(":grace-datastore-gorm-hibernate5"), {
api project(":grace-datastore-gorm-hibernate"), {
exclude group:'org.springframework', module:'spring-context'
exclude group:'org.springframework', module:'spring-core'
exclude group:'org.springframework', module:'spring-beans'
Expand Down Expand Up @@ -55,3 +55,9 @@ dependencies {
}

groovydoc.classpath += configurations.documentation

jar {
enabled = true
archiveClassifier.set('plugin')
includeEmptyDirs = false
}
8 changes: 4 additions & 4 deletions settings.gradle
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
rootProject.name = 'Grace.Data.Hibernate'

// Core
include "grace-datastore-gorm-hibernate5"
include "grace-datastore-gorm-hibernate"

// Documentation
// include 'docs'

// Plugins
include "boot-plugin"
// include "boot-plugin"
include 'grace-plugin'

// include "examples-grails3-hibernate5"
Expand Down Expand Up @@ -35,5 +35,5 @@ include 'grace-plugin'
// project(":examples-grails-data-service").projectDir = new File(settingsDir, "examples/grails-data-service")


project(':boot-plugin').name = 'gorm-hibernate5-spring-boot'
project(':grace-plugin').name = 'hibernate5'
// project(':boot-plugin').name = 'gorm-hibernate5-spring-boot'
project(':grace-plugin').name = 'hibernate'

0 comments on commit f9795c7

Please sign in to comment.