Problems with the merge to main

This commit is contained in:
2026-01-06 21:52:34 +01:00
parent 6ccb68285f
commit 20afbbf461

View File

@@ -1,6 +1,7 @@
plugins { plugins {
id 'java' id 'java'
id 'jacoco' id 'jacoco'
id 'application'
} }
group = 'hhn.temp.project' group = 'hhn.temp.project'
@@ -52,3 +53,9 @@ jacocoTestReport {
html.outputLocation.set(layout.buildDirectory.dir('jacocoHtml')) html.outputLocation.set(layout.buildDirectory.dir('jacocoHtml'))
} }
} }
jacocoTestCoverageVerification {
dependsOn test
}
application {
mainClass = "hhn.temp.project.Main"
}