From b7cdfea7f6ba19e9193ea1d8c91a58280ac1afce Mon Sep 17 00:00:00 2001 From: Rwolfe-Nava Date: Tue, 30 Jan 2024 16:44:02 -0500 Subject: [PATCH] comment out classifier to fix gradle build --- build.gradle | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/build.gradle b/build.gradle index d76b8c8e..78c6319d 100644 --- a/build.gradle +++ b/build.gradle @@ -153,8 +153,8 @@ subprojects { jar { processResources.exclude('checkstyle.xml') - classifier "main".equalsIgnoreCase(gitBranch()) || "main".equalsIgnoreCase(System.getenv('BRANCH_NAME')) ? "" : "SNAPSHOT" - out.println("**** building branch - " + gitBranch() + ", classifier - " + classifier + " - CI branch - " + System.getenv('BRANCH_NAME')) + // classifier "main".equalsIgnoreCase(gitBranch()) || "main".equalsIgnoreCase(System.getenv('BRANCH_NAME')) ? "" : "SNAPSHOT" + // out.println("**** building branch - " + gitBranch() + ", classifier - " + classifier + " - CI branch - " + System.getenv('BRANCH_NAME')) } test { @@ -162,11 +162,11 @@ subprojects { finalizedBy jacocoTestReport // report is always generated after tests run } - jacocoTestReport { - reports { - xml.enabled true - } - } + // jacocoTestReport { + // reports { + // xml.enabled true + // } + // } jacoco { toolVersion = "0.8.7"