From b474a6533b35d0f6bf2d2fc9dc8798d2a03f3d3a Mon Sep 17 00:00:00 2001 From: Adam Baker Date: Wed, 20 Jun 2018 21:05:52 +0100 Subject: [PATCH] Add extra dependency needed for non IDE builds --- build.gradle | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/build.gradle b/build.gradle index 32022a9..8627392 100644 --- a/build.gradle +++ b/build.gradle @@ -1,10 +1,7 @@ buildscript { repositories { mavenCentral() - maven { - url 'https://maven.google.com/' - name 'Google' - } + jcenter() google() } @@ -19,6 +16,7 @@ apply plugin: 'com.android.application' repositories { mavenCentral() + jcenter() maven { url "http://4thline.org/m2" } @@ -37,6 +35,7 @@ dependencies { implementation 'org.eclipse.jetty:jetty-servlet:8.1.8.v20121106' implementation 'org.eclipse.jetty:jetty-client:8.1.8.v20121106' implementation 'org.slf4j:slf4j-jdk14:1.6.1' + implementation 'org.jetbrains.trove4j:trove4j:20160824' } android {