plugins { id "java" id "maven-publish" id "me.champeau.gradle.japicmp" } description = "gRPC: Testing" evaluationDependsOn(project(':grpc-core').path) dependencies { compile project(':grpc-core'), project(':grpc-stub'), libraries.junit testCompile (libraries.mockito) { // prefer 1.3 from JUnit instead of 1.1 exclude group: 'org.hamcrest', module: 'hamcrest-core' } testCompile project(':grpc-testing-proto'), project(':grpc-core').sourceSets.test.output } javadoc { exclude 'io/grpc/internal/**' }