]> source.dussan.org Git - jgit.git/commit
pgm/BUILD: Add dependencty to java EWAH 22/196122/3
authorIvan Frade <ifrade@google.com>
Thu, 29 Sep 2022 18:24:29 +0000 (11:24 -0700)
committerMatthias Sohn <matthias.sohn@sap.com>
Wed, 5 Oct 2022 23:12:45 +0000 (19:12 -0400)
commitca1c70ff5f12604a94ca0810a1c73d6ae7efe7cb
tree7aeb31cf7dfff54772d945245294306e02b635b1
parentcbf0d9a76c4ebfed1d3f41aeb259b9f012dc97b5
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
org.eclipse.jgit.pgm/BUILD