754d526b49
## Types of changes - [ ] I have read the **CONTRIBUTING** document. - [ ] My code follows the code style of this project. - [ ] I have updated the documentation accordingly. - [ ] I have added tests to cover my changes. - [ ] All new and existing tests passed. - [ ] This is **NOT** translation related. This closes issue #XXX This is implements feature #YYY This finishes chore #ZZZ Co-authored-by: davidoskky <davidoskky@yahoo.it> Co-authored-by: aminecmi <aminecmi@gmail.com> Reviewed-on: https://gitea.amine-louveau.fr/Louvorg/ReaderForSelfoss-multiplatform/pulls/150
34 lines
930 B
Plaintext
34 lines
930 B
Plaintext
buildscript {
|
|
dependencies {
|
|
// SqlDelight
|
|
classpath("com.squareup.sqldelight:gradle-plugin:1.5.5")
|
|
}
|
|
}
|
|
|
|
plugins {
|
|
//trick: for the same plugin versions in all sub-modules
|
|
id("com.android.application").version("8.1.2").apply(false)
|
|
id("com.android.library").version("8.1.2").apply(false)
|
|
id("org.jetbrains.kotlin.android").version("1.9.10").apply(false)
|
|
kotlin("multiplatform").version("1.9.10").apply(false)
|
|
id("com.mikepenz.aboutlibraries.plugin").version("10.5.1").apply(false)
|
|
id("org.jetbrains.kotlinx.kover").version("0.6.1").apply(true)
|
|
}
|
|
|
|
allprojects {
|
|
repositories {
|
|
// maven { url = uri("https://nexus.amine-louveau.fr/repository/maven-public/")}
|
|
google()
|
|
mavenCentral()
|
|
maven { url = uri("https://www.jitpack.io") }
|
|
}
|
|
}
|
|
|
|
|
|
tasks.register("clean", Delete::class) {
|
|
delete(rootProject.buildDir)
|
|
}
|
|
|
|
koverMerged {
|
|
enable()
|
|
} |