Skip to content

graceframework/grace-data-hibernate

Repository files navigation

Grace Data for Hibernate

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

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"
}

License

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

Links