원클릭으로
update-deps
Check for dependency and plugin updates, review and apply selected upgrades
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Check for dependency and plugin updates, review and apply selected upgrades
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Check and fix Checkstyle and PMD violations
Implement a GitHub issue with branch and pull request workflow
Post a status comment on a GitHub issue (starting work, plan update, completed)
Check JaCoCo code coverage
Format, validate checkstyle/PMD, and run tests before committing
Create/update GitHub issue, branch, commit, PR, then continue implementing
| name | update-deps |
| description | Check for dependency and plugin updates, review and apply selected upgrades |
| allowed-tools | Bash(./mvnw *), Bash(python3 *) |
./mvnw versions:display-property-updates 2>&1 | grep '\->' > /tmp/yjsv-property-updates.txt
./mvnw versions:display-plugin-updates 2>&1 | grep '\->' | grep -v 'reactor\|Help\|Could not' > /tmp/yjsv-plugin-updates.txt
Exclude Spring Boot managed dependencies (jackson, spring-*, snakeyaml, logback, slf4j, junit, mockito, lombok, etc.) and internal modules.
Present a table:
# Type Name Current New
Show updates to the user. Flag major version jumps as potentially breaking.
Edit pom.xml properties for selected updates, then:
./mvnw spring-javaformat:apply
./mvnw clean package 2>&1 | tail -30
checkstyle.version is pinned to 9.3 for spring-javaformat-checkstyle compatibilityspring-javaformat.version affects both formatter and checkstyle -- test both after upgradingmaven-pmd-plugin, check for deprecated/renamed PMD rules in pmd-ruleset.xml