-
Notifications
You must be signed in to change notification settings - Fork 157
/
build.gradle.kts
46 lines (40 loc) · 1.32 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
// Top-level build file where you can add configuration options common to all sub-projects/modules.
import com.github.benmanes.gradle.versions.updates.DependencyUpdatesTask
plugins {
id("com.android.application") version "8.7.1" apply false
id("com.android.library") version "8.7.1" apply false
id("org.jetbrains.kotlin.android") version "2.0.21" apply false
id("com.google.gms.google-services") version "4.4.2" apply false
id("androidx.navigation.safeargs") version "2.8.3" apply false
id("com.github.ben-manes.versions") version "0.51.0" apply true
}
allprojects {
repositories {
google()
mavenCentral()
mavenLocal()
}
}
fun isNonStable(candidate: ModuleComponentIdentifier): Boolean {
return listOf("alpha", "beta", "rc", "snapshot").any { keyword ->
keyword in candidate.version.lowercase()
}
}
fun isBlockListed(candidate: ModuleComponentIdentifier): Boolean {
return listOf(
"androidx.browser:browser",
"com.google.android.gms:play-services-auth"
).any { keyword ->
keyword in candidate.toString().lowercase()
}
}
tasks.withType<DependencyUpdatesTask> {
rejectVersionIf {
isNonStable(candidate) || isBlockListed(candidate)
}
}
tasks {
register("clean", Delete::class) {
delete(rootProject.buildDir)
}
}