Suppress spotless configuration in cve check (#5191)

This commit is contained in:
Trask Stalnaker 2023-02-10 05:12:24 -08:00 committed by GitHub
parent 358ad6cba1
commit 80a1f70214
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions

View File

@ -41,7 +41,8 @@ checkstyle {
}
dependencyCheck {
skipConfigurations = listOf("errorprone", "checkstyle", "annotationProcessor", "animalsniffer")
// spotless-1972451482 is a weird configuration that's only added in jaeger-proto
skipConfigurations = listOf("errorprone", "checkstyle", "annotationProcessor", "animalsniffer", "spotless-1972451482")
failBuildOnCVSS = 7.0f // fail on high or critical CVE
analyzers.assemblyEnabled = false // not sure why its trying to analyze .NET assemblies
}