13 lines
435 B
Groovy
13 lines
435 B
Groovy
plugins {
|
|
id "org.springframework.boot.starter"
|
|
}
|
|
|
|
description = "Starter for exposing Spring Data repositories over REST using Spring Data REST and Spring MVC"
|
|
|
|
dependencies {
|
|
api(project(":spring-boot-project:spring-boot-starters:spring-boot-starter-web"))
|
|
api(project(":spring-boot-project:spring-boot-data-rest"))
|
|
api(project(":spring-boot-project:spring-boot-data-web"))
|
|
api(project(":spring-boot-project:spring-boot-tx"))
|
|
}
|