-
Notifications
You must be signed in to change notification settings - Fork 4
/
build.gradle
56 lines (46 loc) · 1.32 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
apply from: "gradle/dependencies.gradle"
repositories {
google()
mavenCentral()
}
dependencies {
classpath "org.jetbrains.dokka:dokka-gradle-plugin:$dokkaVersion"
classpath 'io.github.gradle-nexus:publish-plugin:1.1.0'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
plugins {
alias libs.plugins.android.application apply false
alias libs.plugins.android.library apply false
id "org.jlleitschuh.gradle.ktlint" version "11.4.2"
alias libs.plugins.kotlin apply false
alias libs.plugins.kotlin.parcelize apply false
}
allprojects {
repositories {
google()
mavenCentral()
}
}
subprojects {
apply plugin: "org.jlleitschuh.gradle.ktlint"
ktlint {
version = "0.43.2"
android = true
ignoreFailures = true
reporters {
reporter "checkstyle"
}
filter {
exclude("**/generated/**")
}
}
}
apply plugin: 'io.github.gradle-nexus.publish-plugin'
apply from: "${rootDir}/scripts/publish/publish-root.gradle"
task clean(type: Delete) {
delete rootProject.buildDir
}