spring-boot/spring-boot-project/spring-boot-starters/spring-boot-starter-jdbc/build.gradle

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

13 lines
358 B
Groovy
Raw Normal View History

plugins {
id "org.springframework.boot.starter"
}
description = "Starter for using JDBC with the HikariCP connection pool"
dependencies {
api(project(":spring-boot-project:spring-boot-starters:spring-boot-starter"))
2025-03-18 19:11:17 +08:00
api(project(":spring-boot-project:spring-boot-jdbc"))
2025-03-18 21:22:09 +08:00
api(project(":spring-boot-project:spring-boot-tx"))
api("com.zaxxer:HikariCP")
}