29 lines
1.0 KiB
Groovy
29 lines
1.0 KiB
Groovy
plugins {
|
|
id "java-library"
|
|
id "org.springframework.boot.auto-configuration"
|
|
id "org.springframework.boot.configuration-properties"
|
|
id "org.springframework.boot.deployed"
|
|
id "org.springframework.boot.optional-dependencies"
|
|
}
|
|
|
|
description = "Spring Boot Mustache"
|
|
|
|
dependencies {
|
|
api(project(":spring-boot-project:spring-boot"))
|
|
api("com.samskivert:jmustache")
|
|
api("org.springframework:spring-web")
|
|
|
|
optional("jakarta.servlet:jakarta.servlet-api")
|
|
optional("org.springframework:spring-webmvc")
|
|
optional("org.springframework:spring-webflux")
|
|
optional(project(":spring-boot-project:spring-boot-autoconfigure"))
|
|
|
|
testImplementation(project(":spring-boot-project:spring-boot-test"))
|
|
testImplementation(project(":spring-boot-project:spring-boot-tools:spring-boot-test-support"))
|
|
testImplementation(project(":spring-boot-project:spring-boot-reactor-netty"))
|
|
testImplementation(project(":spring-boot-project:spring-boot-tomcat"))
|
|
testImplementation("io.projectreactor:reactor-test")
|
|
|
|
testRuntimeOnly("ch.qos.logback:logback-classic")
|
|
}
|