mirror of https://github.com/grpc/grpc-java.git
27 lines
606 B
Groovy
27 lines
606 B
Groovy
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 our own versions instead of mockito's dependency
|
|
exclude group: 'org.hamcrest', module: 'hamcrest-core'
|
|
}
|
|
|
|
testCompile project(':grpc-testing-proto'),
|
|
project(':grpc-core').sourceSets.test.output
|
|
}
|
|
|
|
javadoc { exclude 'io/grpc/internal/**' }
|