mirror of
https://github.com/square/okhttp.git
synced 2025-11-26 06:43:09 +03:00
20 lines
291 B
Groovy
20 lines
291 B
Groovy
apply plugin: 'com.github.johnrengelman.shadow'
|
|
|
|
tasks.withType(JavaCompile) {
|
|
options.warnings = false
|
|
}
|
|
|
|
jar {
|
|
manifest {
|
|
attributes 'Main-Class': 'okhttp3.sample.SampleServer'
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation project(':mockwebserver')
|
|
}
|
|
|
|
shadowJar {
|
|
mergeServiceFiles()
|
|
}
|