From fdcc26cab0a49bdd4a748463762ae7f219aa4660 Mon Sep 17 00:00:00 2001 From: John Scancella Date: Fri, 13 Jan 2023 22:57:25 -0500 Subject: [PATCH] ci: fix broken build --- code-quality.gradle | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/code-quality.gradle b/code-quality.gradle index a318871..f132ebc 100644 --- a/code-quality.gradle +++ b/code-quality.gradle @@ -68,7 +68,10 @@ pmd { jacocoTestCoverageVerification { violationRules { rule { - excludes = ['com.github.jscancella.exceptions.*', 'com.github.jscancella.conformance.exceptions.*', 'com.github.jscancella.hash.standard.SHA384Hasher'] + excludes = ['com.github.jscancella.exceptions.*', //because we don't care about coverage in exceptions + 'com.github.jscancella.conformance.exceptions.*', + 'com.github.jscancella.internal.PathUtils', //because most of the functions are windows only + 'com.github.jscancella.hash.standard.SHA384Hasher'] //because it is exactly the same as the other sha hashers element = 'CLASS' limit { minimum = 0.80