Add extra dependency needed for non IDE builds

This commit is contained in:
Adam Baker 2018-06-20 21:05:52 +01:00
parent 4501cdd14a
commit b474a6533b

View file

@ -1,10 +1,7 @@
buildscript { buildscript {
repositories { repositories {
mavenCentral() mavenCentral()
maven { jcenter()
url 'https://maven.google.com/'
name 'Google'
}
google() google()
} }
@ -19,6 +16,7 @@ apply plugin: 'com.android.application'
repositories { repositories {
mavenCentral() mavenCentral()
jcenter()
maven { maven {
url "http://4thline.org/m2" 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-servlet:8.1.8.v20121106'
implementation 'org.eclipse.jetty:jetty-client:8.1.8.v20121106' implementation 'org.eclipse.jetty:jetty-client:8.1.8.v20121106'
implementation 'org.slf4j:slf4j-jdk14:1.6.1' implementation 'org.slf4j:slf4j-jdk14:1.6.1'
implementation 'org.jetbrains.trove4j:trove4j:20160824'
} }
android { android {