Skip to content

Commit 378d6bb

Browse files
committed
build(deps): centralize jacoco version in catalog
finally figured out how to do this after seeing it in other repo
1 parent 1b651f3 commit 378d6bb

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

AnkiDroid/jacoco.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@ import groovy.xml.XmlParser
44
apply plugin: 'jacoco'
55

66
jacoco {
7-
toolVersion = "0.8.13"
7+
toolVersion = libs.versions.jacoco.get()
88

99
}
1010

1111
android {
1212
testCoverage {
13-
jacocoVersion '0.8.13'
13+
jacocoVersion libs.versions.jacoco.get()
1414
}
1515
}
1616

gradle/libs.versions.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,7 @@ espresso = '3.6.1'
7676
mikehardyGoogleAnalyticsJava7 = "2.0.13"
7777
hamcrest = "3.0"
7878
imageCropper = "4.6.0"
79+
jacoco = "0.8.13"
7980
javaSemver = "0.10.2"
8081
jetbrainsAnnotations = "26.0.2"
8182
json = "20250517"

0 commit comments

Comments
 (0)