summaryrefslogtreecommitdiffstats
path: root/org.eclipse.jgit.pgm/BUILD
diff options
context:
space:
mode:
authorIvan Frade <ifrade@google.com>2022-09-29 11:24:29 -0700
committerMatthias Sohn <matthias.sohn@sap.com>2022-10-05 19:12:45 -0400
commitca1c70ff5f12604a94ca0810a1c73d6ae7efe7cb (patch)
tree7aeb31cf7dfff54772d945245294306e02b635b1 /org.eclipse.jgit.pgm/BUILD
parentcbf0d9a76c4ebfed1d3f41aeb259b9f012dc97b5 (diff)
downloadjgit-ca1c70ff5f12604a94ca0810a1c73d6ae7efe7cb.tar.gz
jgit-ca1c70ff5f12604a94ca0810a1c73d6ae7efe7cb.zip
pgm/BUILD: Add dependencty to java EWAH
A fetch to a locally run daemon triggers a runtime exception: Listening on localhost/127.0.0.1:9418 java.lang.NoClassDefFoundError: com/googlecode/javaewah/EWAHCompressedBitmap Add javaEWAH in the deps of the PGM library. To reproduce: 0. Assume a git repo in <dir-with-repos>/a-repo 1. Run daemon e.g.: $ bazel run //org.eclipse.jgit.pgm:jgit -- daemon --export-all=true --listen localhost --enable upload-pack <dir-with-repos> 2. Fetch: $ git clone git://0.0.0.0:9418/a-repo Change-Id: I503f9fe45347a5891c3f3de0452b7f300b1e8206
Diffstat (limited to 'org.eclipse.jgit.pgm/BUILD')
-rw-r--r--org.eclipse.jgit.pgm/BUILD1
1 files changed, 1 insertions, 0 deletions
diff --git a/org.eclipse.jgit.pgm/BUILD b/org.eclipse.jgit.pgm/BUILD
index 2593122f40..a267b155ac 100644
--- a/org.eclipse.jgit.pgm/BUILD
+++ b/org.eclipse.jgit.pgm/BUILD
@@ -8,6 +8,7 @@ java_library(
visibility = ["//visibility:public"],
runtime_deps = [
":services",
+ "//lib:javaewah",
"//org.eclipse.jgit.gpg.bc:gpg-bc",
],
deps = [