12 lines
315 B
Groovy
12 lines
315 B
Groovy
plugins {
|
|
id "org.springframework.boot.starter"
|
|
}
|
|
|
|
description = "Starter for building MVC web applications using FreeMarker views"
|
|
|
|
dependencies {
|
|
api(project(":spring-boot-project:spring-boot-starters:spring-boot-starter"))
|
|
api("org.freemarker:freemarker")
|
|
api("org.springframework:spring-context-support")
|
|
}
|