blob: 28d17a7e4f82f9bf331092f0effb1afc5ddfe3fd [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 {
Eric Andersone23f8992015-04-10 15:40:44 -07004 compile libraries.guava,
Carl Mastrangelo26a08cd2016-08-18 18:57:50 -07005 libraries.errorprone,
Kun Zhangc4f7f5c2016-09-01 16:00:43 -07006 libraries.jsr305,
Kun Zhang132f7a92016-10-06 17:15:24 -07007 project(':grpc-context'),
Kun Zhangcce8eac2017-01-05 10:48:13 -08008 libraries.instrumentation_api
Eric Andersonb17a2492016-02-06 22:47:35 -08009 testCompile project(':grpc-testing')
Eric Anderson42aa64c2017-02-02 13:48:12 -080010 signature "org.codehaus.mojo.signature:java16:+@signature"
nmittler02c953e2015-01-26 14:03:11 -080011}
Kun Zhang687a6f42015-08-17 16:27:03 -070012
Eric Andersoncb53bbf2017-06-16 14:53:51 -070013javadoc {
14 // We want io.grpc.Internal, but not io.grpc.Internal*
15 exclude 'io/grpc/Internal?*.java'
16 exclude 'io/grpc/internal/**'
17}