MINOR: Depend on streams:test-utils for streams and examples tests (#4760)

Reviewers: Bill Bejeck <bill@confluent.io>, Matthias J. Sax <matthias@confluent.io>, Guozhang Wang <wangguoz@gmail.com>
This commit is contained in:
John Roesler 2018-03-28 13:00:35 -05:00 committed by Guozhang Wang
parent dd7011783f
commit 659fbb0b06
1 changed files with 3 additions and 1 deletions

View File

@ -923,6 +923,7 @@ project(':streams') {
testCompile project(':clients').sourceSets.test.output
testCompile project(':core')
testCompile project(':core').sourceSets.test.output
testCompile project(':streams:test-utils').sourceSets.main.output
testCompile libs.junit
testCompile libs.easymock
testCompile libs.bcpkix
@ -967,11 +968,12 @@ project(':streams:test-utils') {
archivesBaseName = "kafka-streams-test-utils"
dependencies {
compile project(':streams')
compile project(':streams').sourceSets.main.output
compile project(':clients')
testCompile project(':clients').sourceSets.test.output
testCompile libs.junit
testCompile libs.rocksDBJni
testRuntime libs.slf4jlog4j
}