Skip to content

graceframework/grace-data-hibernate

Repository files navigation

Main branch build status Apache 2.0 license Latest version on Maven Central Grace on X

Groovy Version Grace Version Spring Boot Version

Grace Data for Hibernate

This project implements GORM for the Hibernate ORM.

Important

Currently, this plugin has been migrate to Jakarta Namespace, and support Hibernate 5.6.However, support for Hibernate 6 is in development. From version 2023.0.0-M5, this plugin has been renamed from the original hibernate5 to hibernate.

dependencies {
    // Before 2023.0.0-M5
    implementation "org.graceframework:gorm-hibernate5-spring-boot"
    implementation "org.graceframework:grace-datastore-gorm-hibernate5"
    implementation "org.graceframework.plugins:hibernate5"
    implementation "org.hibernate:hibernate-core-jakarta:5.6.15.Final"

    // After 2023.0.0-M5
    implementation "org.graceframework:grace-datastore-gorm-hibernate"
    implementation "org.graceframework.plugins:hibernate"
    implementation "org.hibernate:hibernate-core-jakarta:5.6.15.Final"
}

Versions

To make it easier for users to use and upgrade, Grace Data Hibernate adopts a version policy consistent with the Grace Framework.

GORM Hibernate Version Grace Version
2023.1.x 2023.1.x
2023.0.x 2023.0.x
2022.2.x 2022.2.x
2022.1.x 2022.1.x
2022.0.x 2022.0.x

License

This plugin is available as open source under the terms of the APACHE LICENSE, VERSION 2.0

Links