mirror of
https://github.com/square/okhttp.git
synced 2025-11-23 06:42:24 +03:00
23 lines
316 B
Kotlin
23 lines
316 B
Kotlin
plugins {
|
|
kotlin("jvm")
|
|
id("com.github.johnrengelman.shadow")
|
|
}
|
|
|
|
tasks.compileJava {
|
|
options.isWarnings = false
|
|
}
|
|
|
|
tasks.jar {
|
|
manifest {
|
|
attributes("Main-Class" to "okhttp3.sample.SampleServer")
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation(projects.mockwebserver)
|
|
}
|
|
|
|
tasks.shadowJar {
|
|
mergeServiceFiles()
|
|
}
|