Use JitPack also for gerrit-rest-java-client artifacts
Our required httpclient-android branch usually is not published as an
artifact, so use JitPack to build it on demand. This way we can get rid of
the committed library JAR, and remove the legacy build system code to look
for JARs in the "libs" directory.
Change-Id: I7aecd0ccc64b0dd1a2eff93f7bec1719de521883
diff --git a/build.gradle b/build.gradle
index 6b2c1b2..37df852 100644
--- a/build.gradle
+++ b/build.gradle
@@ -26,6 +26,10 @@
allprojects {
repositories {
jcenter()
+
+ maven {
+ url 'https://jitpack.io'
+ }
}
}