Skip to content

Commit

Permalink
OWASP dependencyCheck skips jmh configurations (#5384)
Browse files Browse the repository at this point in the history
  • Loading branch information
jack-berg committed Apr 16, 2023
1 parent d0f78b0 commit 8136639
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions buildSrc/src/main/kotlin/otel.java-conventions.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,16 @@ checkstyle {
}

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

0 comments on commit 8136639

Please sign in to comment.