Repo created
This commit is contained in:
parent
75dc487a7a
commit
39c29d175b
6317 changed files with 388324 additions and 2 deletions
49
build.gradle.kts
Normal file
49
build.gradle.kts
Normal file
|
|
@ -0,0 +1,49 @@
|
|||
plugins {
|
||||
alias(libs.plugins.android.application) apply false
|
||||
alias(libs.plugins.android.library) apply false
|
||||
alias(libs.plugins.android.lint) apply false
|
||||
alias(libs.plugins.android.test) apply false
|
||||
alias(libs.plugins.compose) apply false
|
||||
alias(libs.plugins.kotlin.android) apply false
|
||||
alias(libs.plugins.kotlin.jvm) apply false
|
||||
alias(libs.plugins.kotlin.multiplatform) apply false
|
||||
alias(libs.plugins.kotlin.parcelize) apply false
|
||||
alias(libs.plugins.kotlin.serialization) apply false
|
||||
alias(libs.plugins.ksp) apply false
|
||||
alias(libs.plugins.jetbrains.compose) apply false
|
||||
|
||||
id("thunderbird.quality.spotless.root")
|
||||
id("thunderbird.dependency.check")
|
||||
}
|
||||
|
||||
val propertyTestCoverage: String? by extra
|
||||
|
||||
allprojects {
|
||||
extra.apply {
|
||||
set("testCoverageEnabled", propertyTestCoverage != null)
|
||||
}
|
||||
|
||||
tasks.withType<Test> {
|
||||
testLogging {
|
||||
exceptionFormat = org.gradle.api.tasks.testing.logging.TestExceptionFormat.FULL
|
||||
showCauses = true
|
||||
showExceptions = true
|
||||
showStackTraces = true
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
tasks.register("testsOnCi") {
|
||||
val skipTests = setOf("testReleaseUnitTest")
|
||||
|
||||
dependsOn(
|
||||
subprojects.map { project -> project.tasks.withType(Test::class.java) }
|
||||
.flatten()
|
||||
.filterNot { task -> task.name in skipTests },
|
||||
)
|
||||
}
|
||||
|
||||
tasks.named<Wrapper>("wrapper") {
|
||||
gradleVersion = libs.versions.gradle.get()
|
||||
distributionType = Wrapper.DistributionType.ALL
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue