blob: 32d223cf4d782441590d2f20afe3bba5053a2848 [file] [log] [blame]
nmittlerf8314582015-01-27 10:25:39 -08001description = 'gRPC: Core'
nmittler02c953e2015-01-26 14:03:11 -08002
nathanmittler164b7342014-12-15 09:58:05 -08003dependencies {
Bogdan Drutu482b6512017-07-11 10:13:23 -07004 compile project(':grpc-context'),
5 libraries.guava,
Carl Mastrangelo26a08cd2016-08-18 18:57:50 -07006 libraries.errorprone,
Kun Zhangc4f7f5c2016-09-01 16:00:43 -07007 libraries.jsr305,
Bogdan Drutu482b6512017-07-11 10:13:23 -07008 libraries.instrumentation_api,
9 libraries.opencensus_api
10
Eric Andersonb17a2492016-02-06 22:47:35 -080011 testCompile project(':grpc-testing')
Bogdan Drutu482b6512017-07-11 10:13:23 -070012
Eric Andersonc4365612017-06-30 15:25:34 -070013 signature "org.codehaus.mojo.signature:java16:1.1@signature"
nmittler02c953e2015-01-26 14:03:11 -080014}
Kun Zhang687a6f42015-08-17 16:27:03 -070015
Eric Andersoncb53bbf2017-06-16 14:53:51 -070016javadoc {
17 // We want io.grpc.Internal, but not io.grpc.Internal*
18 exclude 'io/grpc/Internal?*.java'
19 exclude 'io/grpc/internal/**'
20}