Begin rework for configuration cache compatibility (#1709)
This commit is contained in:
parent
2b293e5805
commit
664e1fbba0
10 changed files with 132 additions and 161 deletions
|
@ -24,7 +24,6 @@ afterEvaluate {
|
|||
dependencies {
|
||||
implementation(libs.build.agp)
|
||||
implementation(libs.build.binarycompat)
|
||||
implementation(libs.build.kover)
|
||||
implementation(libs.build.kotlin)
|
||||
implementation(libs.build.spotless)
|
||||
}
|
||||
|
|
|
@ -6,10 +6,7 @@
|
|||
import org.gradle.kotlin.dsl.withType
|
||||
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
|
||||
|
||||
plugins {
|
||||
id("com.github.android-password-store.kotlin-common")
|
||||
id("org.jetbrains.kotlinx.kover")
|
||||
}
|
||||
plugins { id("com.github.android-password-store.kotlin-common") }
|
||||
|
||||
tasks.withType<KotlinCompile>().configureEach {
|
||||
kotlinOptions {
|
||||
|
@ -18,11 +15,3 @@ tasks.withType<KotlinCompile>().configureEach {
|
|||
}
|
||||
}
|
||||
}
|
||||
|
||||
tasks.koverXmlReport {
|
||||
xmlReportFile.set(rootProject.layout.buildDirectory.file("coverage-reports/${project.name}.xml"))
|
||||
}
|
||||
|
||||
tasks.koverHtmlReport {
|
||||
htmlReportDir.set(rootProject.layout.buildDirectory.dir("coverage-reports/${project.name}"))
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue