31 lines
1.2 KiB
Groovy
31 lines
1.2 KiB
Groovy
plugins {
|
|
id "java-library"
|
|
id "org.springframework.boot.auto-configuration"
|
|
id "org.springframework.boot.deployed"
|
|
id "org.springframework.boot.optional-dependencies"
|
|
}
|
|
|
|
description = "Spring Boot WebClient"
|
|
|
|
dependencies {
|
|
api(project(":spring-boot-project:spring-boot"))
|
|
api(project(":spring-boot-project:spring-boot-http-client"))
|
|
api("org.springframework:spring-web")
|
|
|
|
implementation(project(":spring-boot-project:spring-boot-http-codec"))
|
|
|
|
optional(project(":spring-boot-project:spring-boot-autoconfigure"))
|
|
optional(project(":spring-boot-project:spring-boot-reactor-netty"))
|
|
optional("org.apache.httpcomponents.client5:httpclient5")
|
|
optional("org.apache.httpcomponents.core5:httpcore5-reactive")
|
|
optional("org.eclipse.jetty:jetty-reactive-httpclient")
|
|
optional("org.springframework:spring-webflux")
|
|
|
|
testImplementation(project(":spring-boot-project:spring-boot-test"))
|
|
testImplementation(project(":spring-boot-project:spring-boot-tomcat"))
|
|
testImplementation(project(":spring-boot-project:spring-boot-tools:spring-boot-test-support"))
|
|
testImplementation("io.micrometer:micrometer-observation-test")
|
|
|
|
testRuntimeOnly("ch.qos.logback:logback-classic")
|
|
}
|