-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.gradle.kts
147 lines (141 loc) · 5.27 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
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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
import com.github.benmanes.gradle.versions.updates.DependencyUpdatesTask
import org.jetbrains.kotlin.gradle.dsl.JvmTarget
import org.jetbrains.kotlin.gradle.targets.js.yarn.YarnPlugin
import org.jetbrains.kotlin.gradle.targets.js.yarn.yarn
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
import java.nio.file.Files
plugins {
alias(libs.plugins.aboutlibraries) 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.crashlytics) apply false
alias(libs.plugins.konfig) apply false
alias(libs.plugins.multiplatform) apply false
alias(libs.plugins.moko.resources) apply false
alias(libs.plugins.sekret) apply false
alias(libs.plugins.serialization) apply false
// alias(libs.plugins.complete.kotlin) // Disable for K2 or bump version
alias(libs.plugins.versions)
}
buildscript {
repositories {
google()
mavenCentral()
gradlePluginPortal()
maven("https://jitpack.io")
maven("https://jogamp.org/deployment/maven")
maven("https://s01.oss.sonatype.org/content/repositories/snapshots/")
maven("https://oss.sonatype.org/content/repositories/snapshots")
maven("https://maven.pkg.jetbrains.space/public/p/compose/dev")
}
dependencies {
classpath(libs.moko.resources.generator)
}
}
allprojects {
repositories {
google()
mavenCentral()
gradlePluginPortal()
maven("https://jitpack.io")
maven("https://jogamp.org/deployment/maven")
maven("https://s01.oss.sonatype.org/content/repositories/snapshots/")
maven("https://oss.sonatype.org/content/repositories/snapshots")
maven("https://maven.pkg.jetbrains.space/public/p/compose/dev")
}
tasks.withType<KotlinCompile>().configureEach {
compilerOptions {
jvmTarget.set(JvmTarget.fromTarget(CompileOptions.jvmTargetString))
}
}
plugins.withType<YarnPlugin> {
yarn.yarnLockAutoReplace = true
}
}
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:** ${[email protected]}")
appendLine("**Latest version:** ${[email protected]}")
}
} 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:** ${[email protected]}")
appendLine("**Latest version:** ${[email protected]}")
}
}
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()
}