| load("//tools/bzl:maven_jar.bzl", "GERRIT", "MAVEN_CENTRAL", "MAVEN_LOCAL", "maven_jar") |
| |
| JGIT_VERSION = "5.3.6.201910020505-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 = "668c69822b4f54b430dd9880cc2bb13f13aa88d1", |
| 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 = "153e32275cb0ccfd7f6dba89cf58392d42e16c3a", |
| 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 = "e37339c77dd00d96269e280d582c742c424b908f", |
| repository = REPO, |
| unsign = True, |
| exclude = [ |
| "about.html", |
| "plugin.properties", |
| ], |
| ) |
| |
| maven_jar( |
| name = "joda-time", |
| artifact = "joda-time:joda-time:2.9.9", |
| sha1 = "f7b520c458572890807d143670c9b24f4de90897", |
| ) |