mirror of https://github.com/grpc/grpc-java.git
21 lines
532 B
Groovy
21 lines
532 B
Groovy
plugins {
|
|
id "be.insaneprogramming.gradle.animalsniffer" version "1.4.0"
|
|
}
|
|
|
|
description = "gRPC: OkHttp"
|
|
dependencies {
|
|
compile project(':grpc-core'),
|
|
libraries.okhttp
|
|
|
|
// Tests depend on base class defined by core module.
|
|
testCompile project(':grpc-core').sourceSets.test.output
|
|
}
|
|
|
|
// Configure the animal sniffer plugin
|
|
animalsniffer {
|
|
signature = "org.codehaus.mojo.signature:java16:+@signature"
|
|
}
|
|
|
|
javadoc.exclude 'com/squareup/**'
|
|
javadoc.options.links 'http://square.github.io/okhttp/javadoc/'
|