diff options
author | Harsh Shandilya <me@msfjarvis.dev> | 2022-02-05 01:57:41 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-02-05 01:57:41 +0530 |
commit | 664e1fbba06792c82ad2ce71d16ca687077e9c9a (patch) | |
tree | c4dffa3e696538e8b14d41b5679cd5b981703ac7 /build-logic/kotlin-plugins/src | |
parent | 2b293e58056ea897c305bd39e21b42f5cd4d1a62 (diff) |
Begin rework for configuration cache compatibility (#1709)
Diffstat (limited to 'build-logic/kotlin-plugins/src')
-rw-r--r-- | build-logic/kotlin-plugins/src/main/kotlin/com.github.android-password-store.kotlin-library.gradle.kts | 13 |
1 files changed, 1 insertions, 12 deletions
diff --git a/build-logic/kotlin-plugins/src/main/kotlin/com.github.android-password-store.kotlin-library.gradle.kts b/build-logic/kotlin-plugins/src/main/kotlin/com.github.android-password-store.kotlin-library.gradle.kts index 8dfa887f..516f5e4f 100644 --- a/build-logic/kotlin-plugins/src/main/kotlin/com.github.android-password-store.kotlin-library.gradle.kts +++ b/build-logic/kotlin-plugins/src/main/kotlin/com.github.android-password-store.kotlin-library.gradle.kts @@ -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}")) -} |