26 lines
931 B
Kotlin
26 lines
931 B
Kotlin
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
|
|
|
plugins {
|
|
// this is necessary to avoid the plugins to be loaded multiple times
|
|
// in each subproject's classloader
|
|
alias(libs.plugins.android.application) apply false
|
|
alias(libs.plugins.android.library) apply false
|
|
alias(libs.plugins.kotlin.compose) apply false
|
|
alias(libs.plugins.compose) apply false
|
|
alias(libs.plugins.kotlin.multiplatform) apply false
|
|
alias(libs.plugins.kotlin.android) apply false
|
|
alias(libs.plugins.kotlin.parcelize) apply false
|
|
alias(libs.plugins.gradle.maven.publish.plugin) apply false
|
|
alias(libs.plugins.dokka) apply false
|
|
}
|
|
|
|
allprojects {
|
|
|
|
// this task fails in github action - so I disable it...
|
|
tasks.matching { task ->
|
|
task.name.contains("javaDocReleaseGeneration", ignoreCase = true)
|
|
}.configureEach {
|
|
enabled = false
|
|
}
|
|
|
|
} |