From 20afbbf461374ee1433faa04a8c4a61652d4d013 Mon Sep 17 00:00:00 2001 From: KevinSchoenmayer Date: Tue, 6 Jan 2026 21:52:34 +0100 Subject: [PATCH] Problems with the merge to main --- build.gradle | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/build.gradle b/build.gradle index ea70b117..49769d99 100644 --- a/build.gradle +++ b/build.gradle @@ -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" } \ No newline at end of file