From f65618d8ce7c577e9bad83b04e56b0e9b3fda5b0 Mon Sep 17 00:00:00 2001 From: Artem Bilan Date: Wed, 8 Nov 2023 14:20:47 -0500 Subject: [PATCH] Remove Sonar & Jacoco from Gradle --- build.gradle | 16 ---------------- 1 file changed, 16 deletions(-) diff --git a/build.gradle b/build.gradle index a5d44d8b..92a429ca 100644 --- a/build.gradle +++ b/build.gradle @@ -6,7 +6,6 @@ plugins { id 'java-library' id 'eclipse' id 'idea' - id 'jacoco' id 'checkstyle' id 'org.ajoberstar.grgit' version '4.1.1' id 'io.spring.dependency-management' version '1.1.3' @@ -101,10 +100,6 @@ dependencyManagement { } } -jacoco { - toolVersion = '0.8.10' -} - checkstyle { configDirectory.set(rootProject.file('src/checkstyle')) toolVersion = '10.12.4' @@ -181,22 +176,11 @@ ext.xLintArg = '-Xlint:all,-options' test { maxHeapSize = '1024m' - jacoco { - destinationFile = file('build/jacoco.exec') - } useJUnitPlatform() // suppress all console output during testing unless running `gradle -i` logging.captureStandardOutput(LogLevel.INFO) } -jacocoTestReport { - dependsOn test - reports { - xml.required = true - html.required = false - } -} - check.dependsOn javadoc task updateCopyrights {