This commit is contained in:
Felipe Knorr Kuhn 2024-01-26 23:31:20 +01:00 committed by GitHub
commit b6a1bf8271
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -5,6 +5,7 @@ plugins {
id 'org-openjfx-javafxplugin'
id 'extra-java-module-info'
id 'org.beryx.jlink' version '2.26.0'
id 'jacoco'
}
def sparrowVersion = '1.8.3'
@ -158,6 +159,15 @@ processResources {
test {
jvmArgs '--add-opens=java.base/java.io=com.google.gson'
finalizedBy jacocoTestReport
}
jacocoTestReport {
dependsOn test
}
jacoco {
toolVersion = '0.8.10'
}
run {
@ -730,4 +740,4 @@ extraJavaModuleInfo {
requires('org.hamcrest.core')
}
module('hamcrest-core-1.3.jar', 'org.hamcrest.core', '1.3')
}
}