You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@kudu.apache.org by ad...@apache.org on 2019/06/10 03:58:23 UTC

[kudu] branch master updated: [backup] Add missing log4j test dependency

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

adar pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/kudu.git


The following commit(s) were added to refs/heads/master by this push:
     new 89f6ad4  [backup] Add missing log4j test dependency
89f6ad4 is described below

commit 89f6ad4cbce85084b4f4cc351df694b867f5d49f
Author: Grant Henke <gr...@apache.org>
AuthorDate: Sun Jun 9 21:25:01 2019 -0500

    [backup] Add missing log4j test dependency
    
    Change-Id: I7d1022e51b04bf8d5825e19401ed067a9e3bbca3
    Reviewed-on: http://gerrit.cloudera.org:8080/13570
    Tested-by: Kudu Jenkins
    Reviewed-by: Adar Dembo <ad...@cloudera.com>
---
 java/kudu-backup-common/build.gradle | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/java/kudu-backup-common/build.gradle b/java/kudu-backup-common/build.gradle
index e4d95e9..82c4248 100644
--- a/java/kudu-backup-common/build.gradle
+++ b/java/kudu-backup-common/build.gradle
@@ -33,6 +33,8 @@ dependencies {
 
   testCompile project(path: ":kudu-test-utils", configuration: "shadow")
   testCompile libs.junit
+  testCompile libs.log4j
+  testCompile libs.log4jSlf4jImpl
   testCompile libs.scalatest
 }