| load("//tools/bzl:maven_jar.bzl", "GERRIT", "MAVEN_CENTRAL", "MAVEN_LOCAL", "maven_jar") |
| |
| JGIT_VERSION = "4.7.9.201904161809-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 = "d6f23663efeb2bfab032c75915765e086a26d494", |
| 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 = "6e8485a140b2f58195f3ed48ecb0dd7acf46410f", |
| 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 = "8dc0cf32615b15d327c70574022964b34f101226", |
| repository = REPO, |
| unsign = True, |
| exclude = [ |
| "about.html", |
| "plugin.properties", |
| ], |
| ) |