java-tutorials/gradle-modules/gradle-6/widget-rest-client/build.gradle.kts

11 lines
215 B
Plaintext
Raw Normal View History

2019-12-17 21:18:54 -05:00
plugins {
`java-library`
}
sourceCompatibility = "1.8"
targetCompatibility = "1.8"
2019-12-17 21:18:54 -05:00
dependencies {
api(platform(project(":httpclient-platform")))
implementation("org.apache.httpcomponents:httpclient")
}