forked from nextcloud/android
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
41 lines (38 loc) · 967 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
38
39
40
41
buildscript {
ext {
jacoco_version = '0.8.8'
kotlin_version = '1.6.21'
androidxTestVersion = "1.4.0"
daggerVersion = "2.43.2"
markwonVersion = "4.6.2"
prismVersion = "2.0.0"
androidLibraryVersion = "master-SNAPSHOT"
mockitoVersion = "4.8.0"
mockitoKotlinVersion = "4.0.0"
mockkVersion = "1.12.5"
espressoVersion = "3.4.0"
workRuntime = "2.7.1"
fidoVersion = "4.1.0"
checkerVersion = "3.21.2"
exoplayerVersion = "2.18.1"
documentScannerVersion = "1.0.1"
ciBuild = System.getenv("CI") == "true"
}
}
subprojects {
buildscript {
repositories {
gradlePluginPortal()
google()
mavenCentral()
}
}
repositories {
google()
mavenCentral()
maven { url "https://jitpack.io" }
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}