Skip to content

Commit

Permalink
Update to Kover 0.7.6 (#446)
Browse files Browse the repository at this point in the history
  • Loading branch information
MGaetan89 authored Feb 19, 2024
1 parent 3756a08 commit 4d104df
Show file tree
Hide file tree
Showing 5 changed files with 25 additions and 10 deletions.
3 changes: 1 addition & 2 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,11 @@ comscore = "6.10.0"
dependency-analysis-gradle-plugin = "1.29.0"
detekt = "1.23.5"
guava = "31.1-android"
jacoco = "0.8.11"
json = "20231013"
junit = "4.13.2"
kotlin = "1.9.22"
kotlinx-coroutines = "1.8.0"
kotlinx-kover = "0.7.5"
kotlinx-kover = "0.7.6"
kotlinx-serialization = "1.6.2"
ktor = "2.3.8"
mockk = "1.13.9"
Expand Down
8 changes: 6 additions & 2 deletions pillarbox-analytics/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -77,8 +77,12 @@ dependencies {
testImplementation(libs.robolectric.shadows.framework)
}

kover {
useJacoco(libs.versions.jacoco.get())
koverReport {
androidReports("debug") {
xml {
title.set(project.path)
}
}
}

publishing {
Expand Down
8 changes: 6 additions & 2 deletions pillarbox-core-business/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -98,8 +98,12 @@ dependencies {
androidTestImplementation(libs.kotlinx.coroutines.test)
}

kover {
useJacoco(libs.versions.jacoco.get())
koverReport {
androidReports("debug") {
xml {
title.set(project.path)
}
}
}

publishing {
Expand Down
8 changes: 6 additions & 2 deletions pillarbox-player/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -103,8 +103,12 @@ dependencies {
androidTestImplementation(libs.mockk.android)
}

kover {
useJacoco(libs.versions.jacoco.get())
koverReport {
androidReports("debug") {
xml {
title.set(project.path)
}
}
}

publishing {
Expand Down
8 changes: 6 additions & 2 deletions pillarbox-ui/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -77,8 +77,12 @@ dependencies {
debugImplementation(libs.androidx.compose.ui.tooling)
}

kover {
useJacoco(libs.versions.jacoco.get())
koverReport {
androidReports("debug") {
xml {
title.set(project.path)
}
}
}

publishing {
Expand Down

0 comments on commit 4d104df

Please sign in to comment.