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 }