blob: af8ca0e272f2e26c6e619e6d472af2a7b90c62aa [file] [log] [blame]
nmittler02c953e2015-01-26 14:03:11 -08001plugins {
2 id "be.insaneprogramming.gradle.animalsniffer" version "1.4.0"
3}
4
nmittlerf8314582015-01-27 10:25:39 -08005description = "gRPC: OkHttp"
nathanmittler164b7342014-12-15 09:58:05 -08006dependencies {
nmittlerf8314582015-01-27 10:25:39 -08007 compile project(':grpc-core'),
nathanmittler164b7342014-12-15 09:58:05 -08008 libraries.okhttp
Jakob Buchgraber00762432015-03-11 15:07:44 -07009
10 // Tests depend on base class defined by core module.
11 testCompile project(':grpc-core').sourceSets.test.output
nathanmittler164b7342014-12-15 09:58:05 -080012}
nmittler02c953e2015-01-26 14:03:11 -080013
14// Configure the animal sniffer plugin
15animalsniffer {
16 signature = "org.codehaus.mojo.signature:java16:+@signature"
17}
Eric Anderson10fb2062015-05-05 10:28:38 -070018
19javadoc.exclude 'com/squareup/**'
20javadoc.options.links 'http://square.github.io/okhttp/javadoc/'