java-tutorials/gradle-6/person-rest-client/build.gradle.kts

8 lines
157 B
Plaintext

plugins {
`java-library`
}
dependencies {
api(platform(project(":httpclient-platform")))
implementation("org.apache.httpcomponents:fluent-hc")
}