36 lines
1.4 KiB
Groovy
36 lines
1.4 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 Web MVC"
|
|
|
|
dependencies {
|
|
api(project(":spring-boot-project:spring-boot"))
|
|
api("org.springframework:spring-web")
|
|
api("org.springframework:spring-webmvc")
|
|
|
|
compileOnly("jakarta.servlet:jakarta.servlet-api")
|
|
|
|
implementation(project(":spring-boot-project:spring-boot-http"))
|
|
|
|
optional(project(":spring-boot-project:spring-boot-autoconfigure"))
|
|
optional(project(":spring-boot-project:spring-boot-validation"))
|
|
|
|
testImplementation(project(":spring-boot-project:spring-boot-freemarker"))
|
|
testImplementation(project(":spring-boot-project:spring-boot-test"))
|
|
testImplementation(project(":spring-boot-project:spring-boot-thymeleaf"))
|
|
testImplementation(project(":spring-boot-project:spring-boot-tomcat"))
|
|
testImplementation(project(":spring-boot-project:spring-boot-tools:spring-boot-test-support"))
|
|
testImplementation(testFixtures(project(":spring-boot-project:spring-boot")))
|
|
testImplementation("jakarta.servlet:jakarta.servlet-api")
|
|
testImplementation("org.aspectj:aspectjweaver")
|
|
|
|
testRuntimeOnly("ch.qos.logback:logback-classic")
|
|
testRuntimeOnly("com.fasterxml.jackson.core:jackson-databind")
|
|
testRuntimeOnly("org.apache.tomcat.embed:tomcat-embed-jasper")
|
|
}
|