mirror of https://github.com/grpc/grpc-java.git
17 lines
446 B
Groovy
17 lines
446 B
Groovy
description = "gRPC: Testing"
|
|
|
|
dependencies {
|
|
compile project(':grpc-core'),
|
|
project(':grpc-stub'),
|
|
libraries.junit
|
|
compile (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/**' }
|