From c33e392f9b4fa929dda3e65d32188508400392cd Mon Sep 17 00:00:00 2001 From: Jonathan Nieder Date: Mon, 13 Aug 2018 16:57:04 -0700 Subject: [PATCH] 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 --- lib/BUILD | 1 - org.eclipse.jgit.pgm/BUILD | 1 + 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/BUILD b/lib/BUILD index ebba0daf4..7cd420a52 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 ddc84bea0..abd85566a 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",