forked from gmathi/NovelLibrary-Extensions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcommon-dependencies.gradle
28 lines (21 loc) · 947 Bytes
/
common-dependencies.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
// used both in common.gradle and themesources library
dependencies {
compileOnly project(':stubs')
// These are provided by the app itself
compileOnly "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
final okhttp_version = '5.0.0-alpha.2'
compileOnly "com.squareup.okhttp3:okhttp:$okhttp_version"
compileOnly "com.squareup.okhttp3:logging-interceptor:$okhttp_version"
compileOnly "com.squareup.okhttp3:okhttp-dnsoverhttps:$okhttp_version"
compileOnly 'com.squareup.okio:okio:3.0.0-alpha.1'
compileOnly 'io.reactivex:rxjava:1.3.8'
compileOnly 'org.jsoup:jsoup:1.13.1'
compileOnly 'com.google.code.gson:gson:2.8.7'
compileOnly 'com.github.salomonbrys.kotson:kotson:2.5.0'
compileOnly 'com.github.inorichi.injekt:injekt-core:65b0440'
// implementation project(":annotations")
// compileOnly project(':duktape-stub')
}
kotlinter {
disabledRules = ["no-wildcard-imports"]
}