We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 36df7e3 commit 3279c5fCopy full SHA for 3279c5f
1 file changed
build.gradle
@@ -13,6 +13,7 @@ plugins {
13
id 'java'
14
id 'signing'
15
id 'maven-publish'
16
+ id 'jacoco'
17
id 'pl.allegro.tech.build.axion-release' version '1.14.2'
18
id 'io.github.gradle-nexus.publish-plugin' version '1.1.0'
19
id 'org.jetbrains.kotlin.jvm' version "${kotlin_version}"
@@ -66,6 +67,17 @@ test {
66
67
}
68
69
70
+jacoco {
71
+ toolVersion = '0.8.2'
72
+}
73
+
74
+jacocoTestReport {
75
+ reports {
76
+ xml.required = true
77
+ html.required = true
78
+ }
79
80
81
publishing {
82
publications {
83
sonatype(MavenPublication) {
0 commit comments