11 lines
320 B
Groovy
11 lines
320 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("org.springframework.data:spring-data-rest-webmvc")
|
|
}
|