-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathcommon-dependencies.gradle
More file actions
29 lines (22 loc) · 963 Bytes
/
common-dependencies.gradle
File metadata and controls
29 lines (22 loc) · 963 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
// used both in common.gradle and theme sources 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.10.1'
compileOnly 'com.github.salomonbrys.kotson:kotson:2.5.0'
compileOnly 'uy.kohesive.injekt:injekt-core:1.16.1'
// implementation project(":annotations")
// compileOnly project(':duktape-stub')
}
kotlinter {
ignoreFailures = false
reporters = ['checkstyle', 'plain']
}