mirror of
https://github.com/jlengrand/ktor.git
synced 2026-03-10 08:31:20 +00:00
12 lines
338 B
Groovy
12 lines
338 B
Groovy
description = 'Apache backend for ktor http client'
|
|
|
|
kotlin.sourceSets {
|
|
jvmMain.dependencies {
|
|
api project(':ktor-client:ktor-client-core')
|
|
api group: 'org.apache.httpcomponents', name: 'httpasyncclient', version: '4.1.3'
|
|
}
|
|
jvmTest.dependencies {
|
|
api project(':ktor-client:ktor-client-tests')
|
|
}
|
|
}
|