| load("//tools/bzl:maven_jar.bzl", "GERRIT", "MAVEN_CENTRAL", "MAVEN_LOCAL", "maven_jar") |
| |
| JGIT_VERSION = "4.11.8.201904181247-r" |
| REPO = MAVEN_CENTRAL |
| |
| def external_plugin_deps(): |
| maven_jar( |
| name = "jgit-http-apache", |
| artifact = "org.eclipse.jgit:org.eclipse.jgit.http.apache:" + JGIT_VERSION, |
| sha1 = "65021802fd81facce56407b7087f3dee577596d8", |
| repository = REPO, |
| unsign = True, |
| exclude = [ |
| "about.html", |
| "plugin.properties", |
| ], |
| ) |
| |
| maven_jar( |
| name = "jgit-lfs", |
| artifact = "org.eclipse.jgit:org.eclipse.jgit.lfs:" + JGIT_VERSION, |
| sha1 = "9c69a53c8bcdaf13db87ac60e228efdc5517ae00", |
| repository = REPO, |
| unsign = True, |
| exclude = [ |
| "about.html", |
| "plugin.properties", |
| ], |
| ) |
| |
| maven_jar( |
| name = "jgit-lfs-server", |
| artifact = "org.eclipse.jgit:org.eclipse.jgit.lfs.server:" + JGIT_VERSION, |
| sha1 = "b66aa5e57d247161aab889a82cb3ce6a59272820", |
| repository = REPO, |
| unsign = True, |
| exclude = [ |
| "about.html", |
| "plugin.properties", |
| ], |
| ) |