42 lines
1.7 KiB
Groovy
42 lines
1.7 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 Undertow"
|
|
|
|
dependencies {
|
|
api(project(":spring-boot-project:spring-boot-web-server"))
|
|
api("io.undertow:undertow-servlet")
|
|
|
|
optional(project(":spring-boot-project:spring-boot-autoconfigure"))
|
|
optional("io.undertow:undertow-websockets-jsr")
|
|
optional("org.springframework:spring-webflux")
|
|
|
|
testImplementation(project(":spring-boot-project:spring-boot-test"))
|
|
testImplementation(project(":spring-boot-project:spring-boot-tools:spring-boot-test-support"))
|
|
testImplementation(testFixtures(project(":spring-boot-project:spring-boot-web-server")))
|
|
testImplementation(testFixtures(project(":spring-boot-project:spring-boot-autoconfigure")))
|
|
testImplementation("org.apache.httpcomponents.client5:httpclient5")
|
|
testImplementation("org.apache.tomcat.embed:tomcat-embed-jasper")
|
|
testImplementation("org.assertj:assertj-core")
|
|
testImplementation("org.awaitility:awaitility")
|
|
testImplementation("org.junit.jupiter:junit-jupiter")
|
|
testImplementation("org.mockito:mockito-core")
|
|
testImplementation("org.mockito:mockito-junit-jupiter")
|
|
|
|
testRuntimeOnly("ch.qos.logback:logback-classic")
|
|
testRuntimeOnly("io.projectreactor:reactor-test")
|
|
testRuntimeOnly("io.projectreactor.netty:reactor-netty-http")
|
|
testRuntimeOnly("org.eclipse.jetty:jetty-client")
|
|
testRuntimeOnly("org.eclipse.jetty.http2:jetty-http2-client")
|
|
testRuntimeOnly("org.eclipse.jetty.http2:jetty-http2-client-transport")
|
|
}
|
|
|
|
test {
|
|
jvmArgs += "--add-opens=java.base/java.net=ALL-UNNAMED"
|
|
}
|