-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
37 lines (29 loc) · 901 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
31
32
33
34
35
36
37
plugins {
id 'org.jetbrains.kotlin.jvm' version '1.6.10'
}
group 'com.github.atsumerudev.api'
version '1.0'
repositories {
mavenCentral()
}
dependencies {
compile "org.jetbrains.kotlin:kotlin-stdlib-jdk8"
// RxAndroid 2
implementation 'io.reactivex.rxjava2:rxandroid:2.1.0'
// Okhttp 3
implementation 'com.squareup.okhttp3:okhttp:3.9.0'
implementation 'com.squareup.okhttp3:logging-interceptor:3.9.0'
// Retrofit 2
implementation 'com.squareup.retrofit2:retrofit:2.3.0'
implementation 'com.squareup.retrofit2:converter-gson:2.3.0'
implementation "com.squareup.retrofit2:adapter-rxjava2:2.3.0"
// Gson
implementation 'com.google.code.gson:gson:2.8.5'
}
jar {
manifest {
attributes 'Implementation-Title': 'MetronAPI Library',
'Implementation-Version': version,
'Built-By': 'AtsumeruDev'
}
}