-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle.kts
69 lines (59 loc) · 1.67 KB
/
build.gradle.kts
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
57
58
59
60
61
62
63
64
65
66
67
68
69
/*
* Designed and developed by DoneDone Team 2023.
*
* Licensed under the MIT.
* Please see full license: https://github.com/TodayDoneDone/donedone-android/blob/main/LICENSE
*/
import io.gitlab.arturbosch.detekt.extensions.DetektExtension
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
import org.jlleitschuh.gradle.ktlint.KtlintExtension
plugins {
alias(libs.plugins.kotlin.detekt)
alias(libs.plugins.kotlin.ktlint)
alias(libs.plugins.gradle.dependency.handler.extensions)
}
buildscript {
repositories {
google()
mavenCentral()
}
dependencies {
classpath(libs.kotlin.gradle)
classpath(libs.gradle.android)
}
}
allprojects {
repositories {
google()
mavenCentral()
}
apply {
plugin(rootProject.libs.plugins.kotlin.detekt.get().pluginId)
plugin(rootProject.libs.plugins.kotlin.ktlint.get().pluginId)
plugin(rootProject.libs.plugins.gradle.dependency.handler.extensions.get().pluginId)
}
afterEvaluate {
extensions.configure<DetektExtension> {
parallel = true
buildUponDefaultConfig = true
toolVersion = libs.versions.kotlin.detekt.get()
config.setFrom(files("$rootDir/detekt-config.yml"))
}
extensions.configure<KtlintExtension> {
version.set(rootProject.libs.versions.kotlin.ktlint.source.get())
android.set(true)
verbose.set(true)
}
tasks.withType<KotlinCompile> {
kotlinOptions {
freeCompilerArgs = freeCompilerArgs + listOf(
"-opt-in=kotlin.OptIn",
"-opt-in=kotlin.RequiresOptIn",
)
}
}
}
}
tasks.register(name = "cleanAll", type = Delete::class) {
allprojects.map(Project::getBuildDir).forEach(::delete)
}