-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathdependencies.gradle
More file actions
28 lines (26 loc) · 905 Bytes
/
dependencies.gradle
File metadata and controls
28 lines (26 loc) · 905 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
// Keep only dependencies shared across modules here
ext {
kotlin_version = '1.3.70'
junit_version = "5.8.2"
mockk_version = "1.9"
libraries = [
kotlin_core: [
"org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
],
android_core: [
"androidx.appcompat:appcompat:1.1.0",
"androidx.core:core-ktx:1.2.0"
],
testing: [
"io.mockk:mockk:$mockk_version",
"org.junit.jupiter:junit-jupiter-api:$junit_version",
"org.junit.jupiter:junit-jupiter-engine:$junit_version",
"org.junit.jupiter:junit-jupiter-params:$junit_version",
"org.jetbrains.kotlin:kotlin-test:$kotlin_version",
"org.jetbrains.kotlin:kotlin-test-junit5:$kotlin_version",
],
android_testing: [
"android.arch.core:core-testing:1.1.1"
]
]
}