-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
30 lines (25 loc) · 898 Bytes
/
build.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
plugins {
id 'java'
}
group 'org.example'
version '1.0-SNAPSHOT'
sourceCompatibility = 1.8
repositories {
jcenter()
maven {
url "http://dl.bintray.com/africastalking/java"
}
}
dependencies {
implementation 'com.sparkjava:spark-core:2.8.0'
implementation 'com.sparkjava:spark-template-handlebars:2.3'
implementation 'com.google.code.gson:gson:2.8.0'
implementation 'com.africastalking:core:3.4.0'
implementation 'org.slf4j:slf4j-simple:1.7.21'
implementation 'com.google.firebase:firebase-admin:6.12.1'
implementation 'com.google.cloud:google-cloud-translate:1.94.4'
implementation 'com.squareup.okhttp3:logging-interceptor:3.11.0'
implementation 'com.squareup.retrofit2:converter-jackson:2.7.1'
implementation 'com.fasterxml.jackson.core:jackson-databind:2.10.1'
testCompile group: 'junit', name: 'junit', version: '4.12'
}