This is an automated email from the ASF dual-hosted git repository.

cmccabe pushed a commit to branch 3.3
in repository https://gitbox.apache.org/repos/asf/kafka.git

commit 2ee58902d4cc23fd90459ed7fbc782be191f809a
Author: Colin Patrick McCabe <[email protected]>
AuthorDate: Fri Aug 5 19:17:50 2022 -0700

    MINOR: add :server-common test dependency to :storage (#12488)
    
    Fix a bug in the KAFKA-14124 PR where a gradle test dependency was missing.
    This causes missing test class exceptions.
    
    Reviewers: Ismael Juma <[email protected]>
---
 build.gradle | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/build.gradle b/build.gradle
index aa930ce1bff..c154ece6914 100644
--- a/build.gradle
+++ b/build.gradle
@@ -1597,6 +1597,8 @@ project(':storage') {
     testImplementation project(':clients').sourceSets.test.output
     testImplementation project(':core')
     testImplementation project(':core').sourceSets.test.output
+    testImplementation project(':server-common')
+    testImplementation project(':server-common').sourceSets.test.output
     testImplementation libs.junitJupiter
     testImplementation libs.mockitoCore
     testImplementation libs.bcpkix

Reply via email to