forked from GitLiveApp/firebase-kotlin-sdk
-
Notifications
You must be signed in to change notification settings - Fork 2
/
build.gradle.kts
326 lines (283 loc) · 12.8 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
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
import org.apache.tools.ant.taskdefs.condition.Os
import org.gradle.api.tasks.testing.logging.TestExceptionFormat
import org.gradle.api.tasks.testing.logging.TestLogEvent
import org.jetbrains.dokka.DokkaConfiguration
import org.jetbrains.dokka.base.DokkaBase
import org.jetbrains.dokka.base.DokkaBaseConfiguration
import org.jetbrains.dokka.gradle.AbstractDokkaTask
import org.jetbrains.dokka.gradle.DokkaTaskPartial
import java.net.URL
import java.io.InputStream
plugins {
alias(libs.plugins.android.application) apply false
alias(libs.plugins.kotlinx.serialization) apply false
alias(libs.plugins.multiplatform) apply false
alias(libs.plugins.native.cocoapods) apply false
alias(libs.plugins.test.logger.plugin) apply false
alias(libs.plugins.ben.manes.versions) apply false
alias(libs.plugins.kotlinter) apply false
alias(libs.plugins.kotlinx.binarycompatibilityvalidator)
alias(libs.plugins.dokka)
id("base")
id("testOptionsConvention")
}
buildscript {
dependencies {
classpath(libs.dokka.base)
}
}
val compileSdkVersion by extra(34)
val targetSdkVersion by extra(34)
val minSdkVersion by extra(21)
tasks {
register("updateVersions") {
dependsOn(
"firebase-analytics:updateVersion", "firebase-analytics:updateDependencyVersion",
"firebase-app:updateVersion", "firebase-app:updateDependencyVersion",
"firebase-auth:updateVersion", "firebase-auth:updateDependencyVersion",
"firebase-common:updateVersion", "firebase-common:updateDependencyVersion",
"firebase-config:updateVersion", "firebase-config:updateDependencyVersion",
"firebase-database:updateVersion", "firebase-database:updateDependencyVersion",
"firebase-firestore:updateVersion", "firebase-firestore:updateDependencyVersion",
"firebase-functions:updateVersion", "firebase-functions:updateDependencyVersion",
"firebase-installations:updateVersion", "firebase-installations:updateDependencyVersion",
"firebase-messaging:updateVersion", "firebase-messaging:updateDependencyVersion",
"firebase-perf:updateVersion", "firebase-perf:updateDependencyVersion",
"firebase-storage:updateVersion", "firebase-storage:updateDependencyVersion"
)
}
}
private val dokkaCopyrightMessage = "© 2024 GitLive Ltd."
private val dokkaHomepageUrl = "https://github.com/GitLiveApp/firebase-kotlin-sdk"
tasks.withType<AbstractDokkaTask>().configureEach {
val version = project.property("firebase-app.version") as String
moduleVersion.set(version)
moduleName.set("Firebase Kotlin SDK")
pluginConfiguration<DokkaBase, DokkaBaseConfiguration> {
customAssets = listOf(file("documentation/gitlive-logo.png"), file("documentation/homepage.svg"))
customStyleSheets = listOf(file("documentation/logo-styles.css"))
footerMessage = dokkaCopyrightMessage
homepageLink = dokkaHomepageUrl
}
}
subprojects {
group = "dev.gitlive"
val nonDocumentationList = listOf("test-utils", "firebase-common", "firebase-common-internal")
val skipDocumentation = nonDocumentationList.contains(project.name)
if (!skipDocumentation) {
apply(plugin = "org.jetbrains.dokka")
}
this.tasks.withType<DokkaTaskPartial>().configureEach {
pluginConfiguration<DokkaBase, DokkaBaseConfiguration> {
footerMessage = dokkaCopyrightMessage
separateInheritedMembers = false
homepageLink = dokkaHomepageUrl
}
dokkaSourceSets {
configureEach {
documentedVisibilities.set(setOf(DokkaConfiguration.Visibility.PUBLIC))
includes.setFrom("documentation.md")
sourceLink {
localDirectory.set(projectDir.resolve("src"))
remoteUrl.set(URL("$dokkaHomepageUrl/tree/master/${project.name}/src"))
}
}
if (this.names.contains("jsMain")) {
named("jsMain") {
perPackageOption {
// External files for JS should not be documented since they will not be available
matchingRegex.set(".*.externals.*")
suppress.set(true)
}
}
}
}
}
apply(plugin = "com.adarshr.test-logger")
apply(plugin = "org.jmailen.kotlinter")
repositories {
mavenLocal()
google()
mavenCentral()
}
tasks.withType<Sign>().configureEach {
onlyIf { !project.gradle.startParameter.taskNames.any { "MavenLocal" in it } }
}
val skipPublishing = project.name == "test-utils" // skip publishing for test utils
tasks {
withType<Test> {
testLogging {
showExceptions = true
exceptionFormat = TestExceptionFormat.FULL
showStandardStreams = true
showCauses = true
showStackTraces = true
events = setOf(
TestLogEvent.STARTED,
TestLogEvent.FAILED,
TestLogEvent.PASSED,
TestLogEvent.SKIPPED,
TestLogEvent.STANDARD_OUT,
TestLogEvent.STANDARD_ERROR
)
}
}
if (skipPublishing) return@tasks
register<Exec>("updateVersion") {
commandLine("npm", "--allow-same-version", "--prefix", projectDir, "version", "${project.property("${project.name}.version")}")
}
register<Copy>("updateDependencyVersion") {
mustRunAfter("updateVersion")
val from = file("package.json")
from.writeText(
from.readText()
.replace("version\": \"([^\"]+)".toRegex(), "version\": \"${project.property("${project.name}.version")}")
.replace("firebase-common\": \"([^\"]+)".toRegex(), "firebase-common\": \"${project.property("firebase-common.version")}")
.replace("firebase-app\": \"([^\"]+)".toRegex(), "firebase-app\": \"${project.property("firebase-app.version")}")
)
}
}
afterEvaluate {
dependencies {
"commonMainImplementation"(libs.kotlinx.coroutines.core)
"androidMainImplementation"(libs.kotlinx.coroutines.play.services)
"androidMainImplementation"(platform(libs.firebase.bom))
"commonTestImplementation"(kotlin("test-common"))
"commonTestImplementation"(kotlin("test-annotations-common"))
if (this@afterEvaluate.name != "firebase-crashlytics") {
"jvmMainApi"(libs.gitlive.firebase.java.sdk)
"jvmMainApi"(libs.kotlinx.coroutines.play.services) {
exclude("com.google.android.gms")
}
"jsTestImplementation"(kotlin("test-js"))
"jvmTestImplementation"(kotlin("test-junit"))
"jvmTestImplementation"(libs.junit)
}
"androidInstrumentedTestImplementation"(kotlin("test-junit"))
"androidUnitTestImplementation"(kotlin("test-junit"))
"androidInstrumentedTestImplementation"(libs.junit)
"androidInstrumentedTestImplementation"(libs.androidx.test.core)
"androidInstrumentedTestImplementation"(libs.androidx.test.junit)
"androidInstrumentedTestImplementation"(libs.androidx.test.runner)
}
}
if (skipPublishing) return@subprojects
apply(plugin = "maven-publish")
apply(plugin = "signing")
val javadocJar: TaskProvider<Jar> by tasks.registering(Jar::class) {
archiveClassifier.set("javadoc")
}
configure<PublishingExtension> {
repositories {
maven {
url = uri("https://oss.sonatype.org/service/local/staging/deploy/maven2")
credentials {
username = project.findProperty("sonatypeUsername") as String? ?: System.getenv("sonatypeUsername")
password = project.findProperty("sonatypePassword") as String? ?: System.getenv("sonatypePassword")
}
}
}
publications.all {
this as MavenPublication
artifact(javadocJar)
pom {
name.set("firebase-kotlin-sdk")
description.set("The Firebase Kotlin SDK is a Kotlin-first SDK for Firebase. It's API is similar to the Firebase Android SDK Kotlin Extensions but also supports multiplatform projects, enabling you to use Firebase directly from your common source targeting iOS, Android or JS.")
url.set("https://github.com/GitLiveApp/firebase-kotlin-sdk")
inceptionYear.set("2019")
scm {
url.set("https://github.com/GitLiveApp/firebase-kotlin-sdk")
connection.set("scm:git:https://github.com/GitLiveApp/firebase-kotlin-sdk.git")
developerConnection.set("scm:git:https://github.com/GitLiveApp/firebase-kotlin-sdk.git")
tag.set("HEAD")
}
issueManagement {
system.set("GitHub Issues")
url.set("https://github.com/GitLiveApp/firebase-kotlin-sdk/issues")
}
developers {
developer {
name.set("Nicholas Bransby-Williams")
email.set("nbransby@gmail.com")
}
}
licenses {
license {
name.set("The Apache Software License, Version 2.0")
url.set("http://www.apache.org/licenses/LICENSE-2.0.txt")
distribution.set("repo")
comments.set("A business-friendly OSS license")
}
}
}
}
}
tasks.withType(AbstractPublishToMaven::class.java).configureEach {
dependsOn(tasks.withType(Sign::class.java))
}
}
tasks.withType<com.github.benmanes.gradle.versions.updates.DependencyUpdatesTask> {
fun isNonStable(version: String): Boolean {
val stableKeyword = listOf("RELEASE", "FINAL", "GA").any { version.uppercase(java.util.Locale.ENGLISH).contains(it) }
val versionMatch = "^[0-9,.v-]+(-r)?$".toRegex().matches(version)
return (stableKeyword || versionMatch).not()
}
rejectVersionIf {
isNonStable(candidate.version)
}
checkForGradleUpdate = true
outputFormatter = "plain,html"
outputDir = "build/dependency-reports"
reportfileName = "dependency-updates"
}
// check for latest dependencies - ./gradlew dependencyUpdates -Drevision=release
tasks.register("devRunAllTests") {
doLast {
val gradleTasks = mutableListOf<List<String>>()
gradleTasks.addAll(EmulatorJobsMatrix().getJvmTestTaskList(rootProject = rootProject))
gradleTasks.addAll(EmulatorJobsMatrix().getJsTestTaskList(rootProject = rootProject))
gradleTasks.addAll(EmulatorJobsMatrix().getIosTestTaskList(rootProject = rootProject))
gradleTasks.add(listOf("ciSdkManagerLicenses"))
gradleTasks.addAll(EmulatorJobsMatrix().getEmulatorTaskList(rootProject = rootProject))
gradleTasks.forEach {
exec {
executable = File(
project.rootDir,
if (Os.isFamily(Os.FAMILY_WINDOWS)) "gradlew.bat" else "gradlew",
)
.also { it.setExecutable(true) }
.absolutePath
args = it
println("exec: ${this.commandLine.joinToString(separator = " ")}")
}.apply { println("ExecResult: $this") }
}
}
}
tasks.register("ciJobsMatrixSetup") {
doLast {
EmulatorJobsMatrix().createMatrixJsonFiles(rootProject = rootProject)
}
}
tasks.register("ciSdkManagerLicenses") {
doLast {
val sdkDirPath = getAndroidSdkPath(rootDir = rootDir)
getSdkmanagerFile(rootDir = rootDir)?.let { sdkmanagerFile ->
val yesInputStream = object : InputStream() {
private val yesString = "y\n"
private var counter = 0
override fun read(): Int = yesString[counter % 2].also { counter++ }.code
}
exec {
executable = sdkmanagerFile.absolutePath
args = listOf("--list", "--sdk_root=$sdkDirPath")
println("exec: ${this.commandLine.joinToString(separator = " ")}")
}.apply { println("ExecResult: $this") }
exec {
executable = sdkmanagerFile.absolutePath
args = listOf("--licenses", "--sdk_root=$sdkDirPath")
standardInput = yesInputStream
println("exec: ${this.commandLine.joinToString(separator = " ")}")
}.apply { println("ExecResult: $this") }
}
}
}