-
Notifications
You must be signed in to change notification settings - Fork 5
/
build.gradle
33 lines (30 loc) · 945 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
ext.deps = [
rxJava2 : 'io.reactivex.rxjava2:rxjava:2.2.21',
rxAndroid2 : 'io.reactivex.rxjava2:rxandroid:2.1.1',
supportAnnotations: 'androidx.annotation:annotation:1.1.0',
junit : 'junit:junit:4.13.2',
truth : 'com.google.truth:truth:1.1.2',
robolectric : 'org.robolectric:robolectric:4.3.1',
mockitoCore : 'org.mockito:mockito-core:3.8.0',
utilsVerifier : 'com.github.karczews:utilsverifier:1.0.0'
]
buildscript {
repositories {
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.6.2'
classpath 'com.dicedmelon.gradle:jacoco-android:0.1.4'
classpath 'digital.wup:android-maven-publish:3.6.3'
}
}
allprojects {
repositories {
google()
jcenter()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}