
This commit makes the following potentially breaking changes: - Dependency management for modules that do not exist in Hibernate 6.1 has been removed. - Hibernate's modules are now in the org.hibernate.orm group. Users not using the starter or using modules that are not in the starter will have to update their build configuration accordingly. - spring.jpa.hibernate.use-new-id-generator-mappings has been removed as Hibernate no longer supports switching back to the old ID generator mappings. Co-authored-by: Andy Wilkinson <wilkinsona@vmware.com> Closes gh-31674
14 lines
435 B
Groovy
14 lines
435 B
Groovy
plugins {
|
|
id "org.springframework.boot.starter"
|
|
}
|
|
|
|
description = "Starter for using Spring Data JPA with Hibernate"
|
|
|
|
dependencies {
|
|
api(project(":spring-boot-project:spring-boot-starters:spring-boot-starter-aop"))
|
|
api(project(":spring-boot-project:spring-boot-starters:spring-boot-starter-jdbc"))
|
|
api("org.hibernate.orm:hibernate-core")
|
|
api("org.springframework.data:spring-data-jpa")
|
|
api("org.springframework:spring-aspects")
|
|
}
|