Skip to content

Commit

Permalink
Use JaCoCo
Browse files Browse the repository at this point in the history
  • Loading branch information
MGaetan89 committed Jan 24, 2024
1 parent af992f4 commit 6629135
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 0 deletions.
1 change: 1 addition & 0 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ comscore = "6.10.0"
dependency-analysis-gradle-plugin = "1.29.0"
detekt = "1.23.4"
guava = "31.1-android"
jacoco = "0.8.11"
junit = "4.13.2"
kotlin = "1.9.22"
kotlinx-coroutines = "1.7.3"
Expand Down
4 changes: 4 additions & 0 deletions pillarbox-analytics/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,10 @@ dependencies {
androidTestImplementation(libs.kotlinx.coroutines.test)
}

kover {
useJacoco(libs.versions.jacoco.get())
}

publishing {

publications {
Expand Down
4 changes: 4 additions & 0 deletions pillarbox-core-business/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,10 @@ dependencies {
androidTestImplementation(libs.kotlinx.coroutines.test)
}

kover {
useJacoco(libs.versions.jacoco.get())
}

publishing {
publications {
register<MavenPublication>("gpr") {
Expand Down
4 changes: 4 additions & 0 deletions pillarbox-player/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,10 @@ dependencies {
androidTestImplementation(libs.mockk.dsl)
}

kover {
useJacoco(libs.versions.jacoco.get())
}

publishing {
publications {
register<MavenPublication>("gpr") {
Expand Down
4 changes: 4 additions & 0 deletions pillarbox-ui/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,10 @@ dependencies {
debugImplementation(libs.androidx.compose.ui.tooling)
}

kover {
useJacoco(libs.versions.jacoco.get())
}

publishing {
publications {
register<MavenPublication>("gpr") {
Expand Down

0 comments on commit 6629135

Please sign in to comment.