spring-boot/spring-boot-project/spring-boot-mustache/build.gradle

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

29 lines
1.0 KiB
Groovy
Raw Normal View History

2025-03-24 18:57:37 +08:00
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")
}