From bb4e89e15881ee6225f00ce5ee22b9efce73fcd6 Mon Sep 17 00:00:00 2001 From: John Roesler Date: Thu, 22 Mar 2018 19:07:24 -0500 Subject: [PATCH] Depend on streams:test-utils for streams and examples tests --- build.gradle | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/build.gradle b/build.gradle index d5fd7d5fd7b46..f122ec1de8c14 100644 --- a/build.gradle +++ b/build.gradle @@ -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 }