You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
826 B
20 lines
826 B
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("jakarta.transaction:jakarta.transaction-api") |
|
api("jakarta.persistence:jakarta.persistence-api") |
|
api("org.hibernate:hibernate-core") { |
|
exclude group: "javax.activation", module: "javax.activation-api" |
|
exclude group: "javax.persistence", module: "javax.persistence-api" |
|
exclude group: "javax.xml.bind", module: "jaxb-api" |
|
exclude group: "org.jboss.spec.javax.transaction", module: "jboss-transaction-api_1.2_spec" |
|
} |
|
api("org.springframework.data:spring-data-jpa") |
|
api("org.springframework:spring-aspects") |
|
}
|
|
|