build: add CycloneDX SBOM and OWASP CVE gate (I-17, I-01)#164
Open
anandmnair wants to merge 21 commits into
Open
build: add CycloneDX SBOM and OWASP CVE gate (I-17, I-01)#164anandmnair wants to merge 21 commits into
anandmnair wants to merge 21 commits into
Conversation
Supply-chain hardening from the code audit. I-17 — CycloneDX SBOM: - cyclonedx-maven-plugin runs per module at `package` and attaches the SBOM (classifier `cyclonedx`, spec 1.6, library type, non-test scopes) so every published JAR ships its dependency manifest. Lets consumers answer CVE-impact questions without decompiling, and meets SBOM obligations (US EO 14028, EU CRA). - New docs page (quality/sbom.md) documents what/why/how plus a grouped snapshot of the 64 third-party runtime dependencies; wired into the MkDocs nav. I-01 — CVE / SCA gate: - New `dependency-check` Maven profile runs OWASP Dependency-Check across the whole reactor and fails the build on any dependency with CVSS >= 7 (HIGH/CRITICAL). - New blocking CI job mirrors the mutation job; caches the NVD database and reads the NVD API key from the NVD_API_KEY secret. - Audited-suppression file (dependency-check-suppressions.xml) for false positives. Follow-up (manual): add the NVD_API_KEY repo secret and mark the dependency-check job a required PR check so the gate is enforced. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
add CycloneDX SBOM and OWASP CVE gate (I-17, I-01)
Details
I-17 — CycloneDX SBOM:
packageand attaches the SBOM (classifiercyclonedx, spec 1.6, library type, non-test scopes) so every published JAR ships its dependency manifest. Lets consumers answer CVE-impact questions without decompiling, and meets SBOM obligations (US EO 14028, EU CRA).I-01 — CVE / SCA gate:
dependency-checkMaven profile runs OWASP Dependency-Check across the whole reactor and fails the build on any dependency with CVSS >= 7 (HIGH/CRITICAL).Follow-up (manual): add the NVD_API_KEY repo secret and mark the dependency-check job a required PR check so the gate is enforced.
Checklist:
Related issue :