From c5bafc184ff528a0fba737901b0fb88ec0be0819 Mon Sep 17 00:00:00 2001 From: BAStos525 Date: Tue, 12 Nov 2024 10:43:36 +0300 Subject: [PATCH] try HL runner Signed-off-by: BAStos525 --- build.gradle | 23 ----------------------- 1 file changed, 23 deletions(-) diff --git a/build.gradle b/build.gradle index 2079f6b86..fb4511468 100644 --- a/build.gradle +++ b/build.gradle @@ -96,32 +96,10 @@ subprojects { // it is disabled by default to publish original version by CI, not a fat jar tasks.shadowJar.enabled = false - // task jacocoTestReport(type: JacocoReport) { - // executionData fileTree(project.rootDir.absolutePath).include("**/build/jacoco/*.exec") - - // def sourceDirs = [ - // "${project.projectDir}/src/main/java", - // "${project.projectDir}/src/main/kotlin", - // "${project.projectDir}/src/debug/java", - // "${project.projectDir}/src/debug/kotlin" - // ] - // sourceDirectories.from = files(sourceDirs) - - // reports { - // xml.required = true - // html.required = true - // } - // } - test { useJUnitPlatform() } - // jacoco { - // toolVersion = "0.8.8" - // reportsDirectory = file("$buildDir/reports/") - // } - jacocoTestReport { reports { xml.required = true @@ -145,7 +123,6 @@ subprojects { } property "sonar.java.test.binaries", "${project.projectDir}/build/test-results/test/binary" property "sonar.junit.reportPaths", "${project.projectDir}/build/test-results/test/" - //property "sonar.coverage.jacoco.xmlReportPaths", "${project.projectDir}/build/reports/jacocoTestReport/*.xml" } } }