
This snapshot includes the following improvements related to LFS: - Include error message in response body - Pass request and path to getLargeFileRepository - Return HTTP 422 instead of 400 and the following other changes that are needed in Gerrit: - RefSpec: allow construction of weird wildcarded RefSpecs - RefSpec: reject refs ending in '/' - BatchRefUpdate: Include command message in toString() - DiffFormatter: Support setting a reader without a repo Change-Id: I42eb72603c47e05cf39079164653defa96cf37c4
26 lines
591 B
Python
26 lines
591 B
Python
include_defs('//lib/maven.defs')
|
|
include_defs('//lib/JGIT_VERSION')
|
|
|
|
maven_jar(
|
|
name = 'jgit',
|
|
id = 'org.eclipse.jgit:org.eclipse.jgit:' + VERS,
|
|
bin_sha1 = 'f2db4d8caafe4d2dbe6e76e034bb8ed334b56f18',
|
|
src_sha1 = 'eb6ec337cbfa9c612bfee915b091d3bf6f3f05e8',
|
|
license = 'jgit',
|
|
repository = REPO,
|
|
unsign = True,
|
|
deps = [':ewah'],
|
|
exclude = [
|
|
'META-INF/eclipse.inf',
|
|
'about.html',
|
|
'plugin.properties',
|
|
],
|
|
)
|
|
|
|
maven_jar(
|
|
name = 'ewah',
|
|
id = 'com.googlecode.javaewah:JavaEWAH:0.7.9',
|
|
sha1 = 'eceaf316a8faf0e794296ebe158ae110c7d72a5a',
|
|
license = 'Apache2.0',
|
|
)
|