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 {
id 'java'
id 'jacoco'
id 'application'
}
group = 'hhn.temp.project'
@@ -51,4 +52,10 @@ jacocoTestReport {
csv.required = false
html.outputLocation.set(layout.buildDirectory.dir('jacocoHtml'))
}
}
jacocoTestCoverageVerification {
dependsOn test
}
application {
mainClass = "hhn.temp.project.Main"
}