-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle.kts
38 lines (33 loc) · 1.28 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
import com.github.benmanes.gradle.versions.updates.DependencyUpdatesTask
import java.util.Locale
plugins {
alias(libs.plugins.android.application) apply false
alias(libs.plugins.android.library) apply false
alias(libs.plugins.compose.compiler) apply false
alias(libs.plugins.hilt) apply false
alias(libs.plugins.kotlin.android) apply false
alias(libs.plugins.kotlin.serialization) apply false
alias(libs.plugins.ksp) apply false
alias(libs.plugins.versions)
}
tasks.withType<DependencyUpdatesTask> {
rejectVersionIf {
candidate.version.isNonStable() && !currentVersion.isNonStable()
}
checkForGradleUpdate = true
outputFormatter = "text"
outputDir =
project.rootProject.layout.buildDirectory.asFile
.get()
.resolve("reports/dependency-updates")
.absolutePath
reportfileName = "report"
}
private fun String.isNonStable(): Boolean {
val stableKeyword = listOf("RELEASE", "FINAL", "GA").any { uppercase(Locale.US).contains(it) }
val regex = "^[0-9,.v-]+(-r)?$".toRegex()
val isStable = stableKeyword || regex.matches(this)
return isStable.not()
}
val cleanupScript = "build-logic/src/main/kotlin/tool/cleanup.gradle.kts"
if (File(rootDir, cleanupScript).exists()) apply(cleanupScript)