-
-
Notifications
You must be signed in to change notification settings - Fork 402
/
build.gradle.kts
68 lines (61 loc) · 2.41 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
// Top-level build file where you can add configuration options common to all sub-projects/modules.
plugins {
alias(libs.plugins.versions)
// app, libraries
alias(libs.plugins.android) apply false
alias(libs.plugins.kotlin) apply false
// Firebase Crashlytics
alias(libs.plugins.google.services) apply false
alias(libs.plugins.firebase.crashlytics) apply false
// Cloud Endpoints
alias(libs.plugins.endpoints) apply false
// api
alias(libs.plugins.publish)
}
buildscript {
val sgCompileSdk by extra(34) // Android 14 (UPSIDE_DOWN_CAKE)
val sgMinSdk by extra(21) // Android 5 (L)
val sgTargetSdk by extra(34) // Android 14 (UPSIDE_DOWN_CAKE)
// YYYY.<release-of-year>.<build> - like 2024.1.0
// - allows to more easily judge how old a release is
// - allows multiple releases per month (though currently unlikely)
val sgVersionName by extra("2024.5.0")
// version 21yyrrbb -> min SDK 21, year yy, release rr, build bb
val sgVersionCode by extra(21240500)
val isCiBuild by extra { System.getenv("CI") == "true" }
// load some properties that should not be part of version control
if (file("secret.properties").exists()) {
val properties = java.util.Properties()
properties.load(java.io.FileInputStream(file("secret.properties")))
properties.forEach { property ->
project.extra.set(property.key as String, property.value)
}
}
}
fun isNonStable(version: String): Boolean {
val stableKeyword = listOf("RELEASE", "FINAL", "GA").any { version.uppercase().contains(it) }
val regex = "^[0-9,.v-]+(-r)?$".toRegex()
val isStable = stableKeyword || regex.matches(version)
return isStable.not()
}
tasks.withType<com.github.benmanes.gradle.versions.updates.DependencyUpdatesTask> {
rejectVersionIf {
isNonStable(candidate.version)
}
}
nexusPublishing {
packageGroup.set("com.uwetrottmann")
this.repositories {
sonatype {
if (rootProject.hasProperty("SONATYPE_NEXUS_USERNAME")
&& rootProject.hasProperty("SONATYPE_NEXUS_PASSWORD")) {
username.set(rootProject.property("SONATYPE_NEXUS_USERNAME").toString())
password.set(rootProject.property("SONATYPE_NEXUS_PASSWORD").toString())
}
}
}
}
tasks.wrapper {
//noinspection UnnecessaryQualifiedReference
distributionType = Wrapper.DistributionType.ALL
}