-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbuild.gradle.kts
More file actions
121 lines (117 loc) · 4.44 KB
/
build.gradle.kts
File metadata and controls
121 lines (117 loc) · 4.44 KB
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
import com.github.benmanes.gradle.versions.updates.DependencyUpdatesTask
plugins {
alias(libs.plugins.about) apply false
alias(libs.plugins.android) apply false
alias(libs.plugins.android.application) apply false
alias(libs.plugins.android.library) apply false
alias(libs.plugins.atomicfu) apply false
alias(libs.plugins.cocoapods) apply false
alias(libs.plugins.compose) apply false
alias(libs.plugins.compose.compiler) apply false
alias(libs.plugins.compose.report) apply false
alias(libs.plugins.crashlytics) apply false
alias(libs.plugins.google.services) apply false
alias(libs.plugins.konfig) apply false
alias(libs.plugins.ksp) apply false
alias(libs.plugins.ktorfit) apply false
alias(libs.plugins.multiplatform) apply false
alias(libs.plugins.osdetector) apply false
alias(libs.plugins.performance) apply false
alias(libs.plugins.tolgee) apply false
alias(libs.plugins.sekret) apply false
alias(libs.plugins.serialization) apply false
alias(libs.plugins.stacktrace.decoroutinator) apply false
alias(libs.plugins.versions)
}
// Force new atomicfu version, compose uses 0.23.2
allprojects {
configurations.all {
resolutionStrategy.eachDependency {
if (requested.group == "org.jetbrains.kotlinx" && requested.name.startsWith("atomicfu")) {
useVersion(libs.versions.atomicfu.get())
}
}
}
}
tasks.withType<DependencyUpdatesTask> {
outputFormatter {
val updatable = this.outdated.dependencies
val markdown = if (updatable.isEmpty()) {
buildString {
append("### Dependencies up-to-date")
appendLine()
appendLine()
appendLine("Everything up-to-date")
appendLine()
appendLine("### Gradle Version")
appendLine()
appendLine("**Current version:** ${this@outputFormatter.gradle.running.version}")
appendLine("**Latest version:** ${this@outputFormatter.gradle.current.version}")
}
} else {
buildString {
append("## Updatable dependencies (${updatable.size})")
appendLine()
appendLine()
append('|')
append("Group")
append('|')
append("Module")
append('|')
append("Used Version")
append('|')
append("Available Version")
append('|')
appendLine()
append('|')
repeat(2) {
append("---")
append('|')
}
repeat(2) {
append(":-:")
append('|')
}
updatable.forEach { dependency ->
appendLine()
append('|')
append(dependency.group ?: ' ')
append('|')
append(dependency.name ?: ' ')
append('|')
append(dependency.version ?: ' ')
append('|')
append(dependency.available.release ?: dependency.available.milestone ?: ' ')
append('|')
}
appendLine()
appendLine()
appendLine("### Gradle Version")
appendLine()
appendLine("**Current version:** ${this@outputFormatter.gradle.running.version}")
appendLine("**Latest version:** ${this@outputFormatter.gradle.current.version}")
}
}
val outputFile = layout.buildDirectory.file("dependencyUpdates/report.md").get().asFile
try {
if (outputFile.exists()) {
outputFile.delete()
}
} catch (ignored: Throwable) { }
try {
outputFile.parentFile.mkdirs()
} catch (ignored: Throwable) { }
try {
outputFile.writeText(markdown)
} catch (ignored: Throwable) { }
}
rejectVersionIf {
isNonStable(candidate.version) && !isNonStable(currentVersion)
}
}
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()
}