Browse Source

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 <ismael@juma.me.uk>
pull/9584/merge
Colin Patrick McCabe 2 years ago committed by GitHub
parent
commit
8a1a8a9168
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      build.gradle

2
build.gradle

@ -1619,6 +1619,8 @@ project(':storage') { @@ -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

Loading…
Cancel
Save