31 lines
1.1 KiB
Groovy
31 lines
1.1 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 HTTP Client"
|
|
|
|
dependencies {
|
|
api(project(":spring-boot-project:spring-boot"))
|
|
api("org.springframework:spring-web")
|
|
|
|
implementation(project(":spring-boot-project:spring-boot-http-converter"))
|
|
|
|
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-client")
|
|
optional("org.eclipse.jetty:jetty-reactive-httpclient")
|
|
|
|
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("org.springframework:spring-webflux")
|
|
|
|
testRuntimeOnly("ch.qos.logback:logback-classic")
|
|
}
|