You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@kafka.apache.org by ij...@apache.org on 2022/08/06 02:17:57 UTC

[kafka] branch trunk updated: MINOR: add :server-common test dependency to :storage (#12488)

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

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


The following commit(s) were added to refs/heads/trunk by this push:
     new 8a1a8a9168 MINOR: add :server-common test dependency to :storage (#12488)
8a1a8a9168 is described below

commit 8a1a8a916885a1457819c5646d7999f6c4dee7c2
Author: Colin Patrick McCabe <cm...@apache.org>
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 <is...@juma.me.uk>
---
 build.gradle | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/build.gradle b/build.gradle
index e1f773075a..dd3f9cb2c9 100644
--- a/build.gradle
+++ b/build.gradle
@@ -1619,6 +1619,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