iamsanjay commented on PR #3502: URL: https://github.com/apache/solr/pull/3502#issuecomment-3236973525
The one I shared earlier comes out to about 518, so not too far off from the ~488 you counted. It’s just using the usual Gradle configs (compile, runtime, etc.), so fine as a starting point. Our main concern is really the high/moderate vulnerabilities, and that count isn’t too high. This setup doesn’t add much noise—maybe a bit in the dependency graph—but from Dependabot’s side we can always scope things based on runtime vs. development. ``` DEPENDENCY_GRAPH_INCLUDE_CONFIGURATIONS: "(?i)(^|:)(compileClasspath|runtimeClasspath|testCompileClasspath|testRuntimeClasspath)$" DEPENDENCY_GRAPH_EXCLUDE_CONFIGURATIONS: "(?i)(^|:)(classpath|.*PluginClasspath|kotlinCompilerClasspath|kaptClasspath|annotationProcessor|detachedConfiguration.*)$" DEPENDENCY_GRAPH_RUNTIME_INCLUDE_CONFIGURATIONS: "(?i)(^|:)runtimeClasspath$" DEPENDENCY_GRAPH_RUNTIME_EXCLUDE_CONFIGURATIONS: "(?i)(^|:)testRuntimeClasspath$" ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
