-
Notifications
You must be signed in to change notification settings - Fork 773
/
build.gradle
46 lines (39 loc) · 897 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
42
43
44
45
subprojects {
buildscript {
repositories {
mavenCentral()
}
}
repositories {
mavenCentral()
}
group = GROUP
version = VERSION_NAME
}
apply from: rootProject.file('gradle/dependencies.gradle')
buildscript {
repositories {
jcenter()
google()
}
dependencies {
classpath 'com.liulishuo.okcheck:gradle:0.2.3'
classpath 'com.android.tools.build:gradle:3.5.2'
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.8.4'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.3.50"
classpath "org.jetbrains.dokka:dokka-gradle-plugin:0.10.0"
}
}
allprojects {
apply plugin: 'okcheck'
repositories {
jcenter()
google()
}
okcheck {
destination = buildDir
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}