From aa71221e78ef81afc8b26dda7e753b8d2543f225 Mon Sep 17 00:00:00 2001 From: Dan Lysiak Date: Mon, 23 Oct 2023 17:25:24 +0100 Subject: [PATCH] Remove unnecessary dependencyCheck config --- build.gradle | 22 ---------------------- 1 file changed, 22 deletions(-) diff --git a/build.gradle b/build.gradle index 5eef600f1..4b41d1ff9 100644 --- a/build.gradle +++ b/build.gradle @@ -131,28 +131,6 @@ dependencyUpdates { } } -// https://jeremylong.github.io/DependencyCheck/dependency-check-gradle/configuration.html -dependencyCheck { - // Specifies if the build should be failed if a CVSS score above a specified level is identified. - // range of 0-10 fails the build, anything greater and it doesn't fail the build - failBuildOnCVSS = 0 - suppressionFile = 'config/owasp/suppressions.xml' - - analyzers { - // Disable scanning of .NET related binaries - assemblyEnabled = false - } - skipConfigurations = [ - "checkstyle", - "compileOnly", - "integrationTest", - "functionalTest", - "smokeTest", - "contractTestRuntimeClasspath", - "contractTestCompileClasspath" - ] -} - repositories { mavenLocal() mavenCentral()