| load("//tools/bzl:maven_jar.bzl", "GERRIT", "MAVEN_CENTRAL", "MAVEN_LOCAL", "maven_jar") |
| |
| JGIT_VERSION = "5.1.12.201910011832-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 = "92ad62799dd7eb02cc8805f2e297714cc3bb5149", |
| 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 = "bb4972c6e127c615c4b9183f95414ff2a20916cf", |
| 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 = "b2d1e48f9daddc09e072e422c151384e845c1612", |
| repository = REPO, |
| unsign = True, |
| exclude = [ |
| "about.html", |
| "plugin.properties", |
| ], |
| ) |
| |
| maven_jar( |
| name = "joda-time", |
| artifact = "joda-time:joda-time:2.9.9", |
| sha1 = "f7b520c458572890807d143670c9b24f4de90897", |
| ) |