Files
java-tutorials/gradle-modules/gradle-6/widget-rest-client/build.gradle.kts
T
2022-07-09 20:10:23 +05:30

8 lines
158 B
Kotlin

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