Loading...
Loading...
Verification loop for Spring Boot projects: build, static analysis, tests with coverage, security scans, and diff review before release or PR.
npx skill4agent add affaan-m/everything-claude-code springboot-verificationmvn -T 4 clean verify -DskipTests
# or
./gradlew clean assemble -x testmvn -T 4 spotbugs:check pmd:check checkstyle:check./gradlew checkstyleMain pmdMain spotbugsMainmvn -T 4 test
mvn jacoco:report # verify 80%+ coverage
# or
./gradlew test jacocoTestReport# Dependency CVEs
mvn org.owasp:dependency-check-maven:check
# or
./gradlew dependencyCheckAnalyze
# Secrets (git)
git secrets --scan # if configuredmvn spotless:apply # if using Spotless plugin
./gradlew spotlessApplygit diff --stat
git diffSystem.outlog.debugVERIFICATION REPORT
===================
Build: [PASS/FAIL]
Static: [PASS/FAIL] (spotbugs/pmd/checkstyle)
Tests: [PASS/FAIL] (X/Y passed, Z% coverage)
Security: [PASS/FAIL] (CVE findings: N)
Diff: [X files changed]
Overall: [READY / NOT READY]
Issues to Fix:
1. ...
2. ...mvn -T 4 test