Skip to content

Commit 80a1f70

Browse files
authored
Suppress spotless configuration in cve check (#5191)
1 parent 358ad6c commit 80a1f70

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

buildSrc/src/main/kotlin/otel.java-conventions.gradle.kts

+2-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,8 @@ checkstyle {
4141
}
4242

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

0 commit comments

Comments
 (0)