Files
java-tutorials/gradle-6/widget-rest-client/build.gradle.kts
T
Johnathan Gilday 0c2d312186 🚧 Gradle 6 - Platforms
2019-12-20 14:00:31 -05:00

8 lines
158 B
Kotlin

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