From: Jonathan Nieder Date: Mon, 13 Aug 2018 23:57:04 +0000 (-0700) Subject: pgm: Add missing dependency on commons-logging X-Git-Tag: v5.2.0.201811281532-m3~120 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=c33e392f9b4fa929dda3e65d32188508400392cd;p=jgit.git pgm: Add missing dependency on commons-logging Without this, commands like "jgit repo" that use commons-logging fail. Change-Id: Ia78198c5e15ac4d6152d832ab2a2498f625486d2 Signed-off-by: Jonathan Nieder --- diff --git a/lib/BUILD b/lib/BUILD index ebba0daf49..7cd420a526 100644 --- a/lib/BUILD +++ b/lib/BUILD @@ -23,7 +23,6 @@ java_library( java_library( name = "commons-logging", - testonly = 1, visibility = ["//visibility:public"], exports = ["@commons-logging//jar"], ) diff --git a/org.eclipse.jgit.pgm/BUILD b/org.eclipse.jgit.pgm/BUILD index ddc84bea06..abd85566ad 100644 --- a/org.eclipse.jgit.pgm/BUILD +++ b/org.eclipse.jgit.pgm/BUILD @@ -7,6 +7,7 @@ java_library( deps = [ ":services", "//lib:args4j", + "//lib:commons-logging", "//lib:httpclient", "//lib:httpcore", "//lib:jetty-http",