added jacoco
This commit is contained in:
parent
bee517317a
commit
6523e1d791
12
build.gradle
12
build.gradle
|
@ -3,6 +3,7 @@ plugins {
|
|||
id 'application'
|
||||
id 'org.openjfx.javafxplugin' version '0.0.13'
|
||||
id 'org.beryx.jlink' version '2.25.0'
|
||||
id 'jacoco'
|
||||
}
|
||||
|
||||
group 'ch.zhaw.gartenverwaltung'
|
||||
|
@ -45,6 +46,15 @@ dependencies {
|
|||
|
||||
test {
|
||||
useJUnitPlatform()
|
||||
finalizedBy jacocoTestReport
|
||||
}
|
||||
|
||||
jacocoTestReport {
|
||||
dependsOn test
|
||||
}
|
||||
|
||||
jacoco {
|
||||
toolVersion = "0.8.8"
|
||||
}
|
||||
|
||||
jlink {
|
||||
|
@ -57,4 +67,4 @@ jlink {
|
|||
|
||||
jlinkZip {
|
||||
group = 'distribution'
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue