← Back to list

java-dependency-audit
by HZeroxium
⭐ 0🍴 0📅 Jan 21, 2026
SKILL.md
name: java-dependency-audit description: Audit Java dependencies for vulnerabilities, licenses, duplicates, and version conflicts; produce an upgrade plan with pinned versions and risk notes. Use during security review, CVE response, or upgrade sprints. license: Apache-2.0 compatibility: "Any OS; supports Gradle or Maven projects." metadata: version: "0.1.0" tags: ["java", "security", "dependencies", "sca", "sbom", "cve"]
Java Dependency Audit
Scope
In scope:
- Dependency inventory (direct + transitive).
- Vulnerability scanning and report generation.
- Version conflicts/duplicates analysis.
- License metadata collection (best-effort; depends on tool support).
- Produce an actionable upgrade plan:
- what to upgrade
- why (CVE/severity/exposure)
- risk notes and test requirements
- pinned versions strategy
Out of scope:
- Patching upstream libraries.
- Organization-wide policy decisions (only propose options).
- Major feature refactors unrelated to dependency remediation.
When to use
- Security review before release.
- CVE response and emergency patching.
- Scheduled upgrade sprint.
- Suspected dependency conflict or "jar hell".
Inputs
- Build files:
build.gradle(.kts)orpom.xml. - Dependency repositories constraints (private repo? proxy? air-gapped?).
- Runtime environment constraints (Java version, platform).
- Release risk tolerance (hotfix vs normal release).
Procedure
-
Inventory
- Produce dependency graph (direct + transitive).
- Generate an SBOM (CycloneDX recommended) when possible.
-
Vulnerability scan
- Run SCA scanning (OWASP Dependency-Check recommended).
- Capture output in a versioned location (e.g.,
reports/security/).
-
Conflict & duplication analysis
- Identify dependency convergence issues (multiple versions of same artifact).
- Identify shaded/relocated dependencies if relevant.
-
Triage (critical step)
- Prioritize by severity + exploitability + exposure:
- Is the vulnerable code reachable?
- Is it in runtime path or test-only?
- Mark false positives with justification.
- Prioritize by severity + exploitability + exposure:
-
Upgrade plan
- Propose minimal safe upgrades first.
- Prefer upgrading via BOM or centrally managed constraints.
- Note breaking changes risk and required regression tests.
-
Implementation (small batches)
- Upgrade highest-risk items first.
- After each batch:
- run minimal tests
- then run full checks
- Update lockfiles/verification metadata if used.
-
Output documentation
- Produce
upgrade-plan.mdwith:- summary
- prioritized items
- changes made
- remaining risks
- follow-ups
- Produce
Outputs / Artifacts
- SBOM file(s) (JSON/XML) if supported by build tool.
- Vulnerability scan report(s).
upgrade-plan.mdand pinned versions changes.- Notes on false positives and mitigations.
DoD
- Vulnerability report generated and stored.
- SBOM generated (preferred) or dependency graph captured.
- Upgrade plan produced with priorities and risks.
- Upgraded dependencies verified by tests.
- Remaining risks are documented (not silently ignored).
Guardrails
- Do not blindly bump everything. Prioritize minimal safe changes.
- Do not “suppress” findings without justification and tracking.
- Do not remove transitive deps by exclusions unless you confirm runtime behavior.
- Require explicit confirmation before major-version upgrades in critical libraries.
Common failure modes & fixes
- False positives from CPE matching → add justification + consider alternative identification.
- Massive breaking changes → split upgrades into batches and add regression tests.
- Conflicts after upgrades → centralize constraints or use dependency convergence checks.
References
- Use scripts in
scripts/to run scanners and generate SBOM. - Use templates in
templates/to write upgrade plans and triage notes.
Score
Total Score
40/100
Based on repository quality metrics
✓SKILL.md
SKILL.mdファイルが含まれている
+20
○LICENSE
ライセンスが設定されている
0/10
○説明文
100文字以上の説明がある
0/10
○人気
GitHub Stars 100以上
0/15
○最近の活動
3ヶ月以内に更新がある
0/10
○フォーク
10回以上フォークされている
0/5
✓Issue管理
オープンIssueが50未満
+5
✓言語
プログラミング言語が設定されている
+5
○タグ
1つ以上のタグが設定されている
0/5
Reviews
💬
Reviews coming soon