mirror of https://github.com/zlatinb/muwire
jacoco test reports for core
parent
97d7bec733
commit
0205b62804
|
@ -2,6 +2,7 @@
|
||||||
plugins {
|
plugins {
|
||||||
id 'java-library'
|
id 'java-library'
|
||||||
id 'maven-publish'
|
id 'maven-publish'
|
||||||
|
id 'jacoco'
|
||||||
}
|
}
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
|
@ -29,10 +30,20 @@ configurations.testImplementation {
|
||||||
exclude group:'org.codehaus.groovy', module:'groovy-testng'
|
exclude group:'org.codehaus.groovy', module:'groovy-testng'
|
||||||
}
|
}
|
||||||
|
|
||||||
test.doFirst {
|
test {
|
||||||
|
doFirst {
|
||||||
jvmArgs=["--add-opens","java.base/java.lang=ALL-UNNAMED",
|
jvmArgs=["--add-opens","java.base/java.lang=ALL-UNNAMED",
|
||||||
"--add-opens","java.base/sun.nio.fs=ALL-UNNAMED",
|
"--add-opens","java.base/sun.nio.fs=ALL-UNNAMED",
|
||||||
"--add-opens","java.base/java.nio=ALL-UNNAMED"]
|
"--add-opens","java.base/java.nio=ALL-UNNAMED"]
|
||||||
|
}
|
||||||
|
finalizedBy jacocoTestReport
|
||||||
|
}
|
||||||
|
|
||||||
|
jacocoTestReport {
|
||||||
|
reports {
|
||||||
|
xml.required = true
|
||||||
|
html.outputLocation = layout.buildDirectory.dir('jacocoHtml')
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// publish core to local maven repo for sister projects
|
// publish core to local maven repo for sister projects
|
||||||
|
|
Loading…
Reference in New Issue