-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathbuild.gradle
40 lines (35 loc) · 1.07 KB
/
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
apply plugin: 'io.github.gradle-nexus.publish-plugin'
apply from: rootProject.file('scripts/publish-root.gradle')
buildscript {
apply from: rootProject.file('scripts/versions.gradle')
repositories {
google()
mavenCentral()
maven { url "https://plugins.gradle.org/m2/" }
}
dependencies {
classpath plugin.android.gradle
classpath plugin.jetbrains.kotlin
classpath plugin.jetbrains.dokka
classpath plugin.nexus.publish
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
buildscript {
ext.kotlin_version = '1.4.0'
ext.coroutine_version = '1.3.7'
ext.androidx_core_version = '1.3.1'
ext.appcompat_version = '1.2.0'
ext.material_version = '1.2.0'
ext.glide_version = '4.11.0'
ext.guava_version = '27.0.1'
ext.constraintlayout_version = '1.1.3'
ext.maps_version = '17.0.0'
ext.timber_version = '4.7.1'
ext.multidex_version = '2.0.1'
ext.junit_jupiter_version = '5.4.2'
ext.androidx_junit_version = '1.1.1'
ext.androidx_espresso_version = '3.2.0'
}