-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathbuild.gradle
More file actions
31 lines (26 loc) · 875 Bytes
/
build.gradle
File metadata and controls
31 lines (26 loc) · 875 Bytes
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
31
plugins {
id 'java'
id 'application'
}
group 'io.imagekit.sampleapp'
version '2.0.0'
sourceCompatibility = 1.8
repositories {
mavenCentral()
maven { url 'https://jitpack.io' }
}
application {
mainClassName 'io.imagekit.sampleapp.App'
}
dependencies {
implementation 'com.github.imagekit-developer:imagekit-java:2.0.0'
compile 'commons-codec:commons-codec:1.13'
implementation 'com.squareup.retrofit2:converter-gson:2.3.0'
implementation 'com.google.code.gson:gson:2.7'
implementation 'com.squareup.okhttp3:okhttp:3.10.0'
compile group: 'com.squareup.okio', name: 'okio', version: '1.14.0'
implementation 'com.squareup.retrofit2:retrofit:2.4.0'
testCompile group: 'junit', name: 'junit', version: '4.12'
testCompile "org.mockito:mockito-all:2.+"
testImplementation 'com.squareup.okhttp3:mockwebserver:3.10.0'
}