spring-boot/spring-boot-project/spring-boot-starters/spring-boot-starter-data-jpa/build.gradle

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

14 lines
435 B
Groovy
Raw Permalink Normal View History

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")
2021-10-14 20:43:10 +08:00
api("org.springframework.data:spring-data-jpa")
api("org.springframework:spring-aspects")
}