一键导入
bump-gradle-version
Bump the Gradle runtime version, validate all plugin dependencies, and validate the build workflow.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Bump the Gradle runtime version, validate all plugin dependencies, and validate the build workflow.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Add a collection field to an existing backend entity and update dependent artifacts; use for prompts like "Add collection ... to entity ...".
Create a new backend domain entity and all required artifacts; use for prompts like "Create an entity ... in package ...".
Add a many-to-one relation between existing entities and update dependent artifacts; use for prompts like "Add a required many-to-one relation ...".
Add a one-to-many relation between existing entities and update dependent artifacts; use for prompts like "Add a one-to-many relation ...".
Add a one-to-one relation between existing entities and update dependent artifacts; use for prompts like "Add a required one-to-one relation ...".
Add or remove a property on an existing backend entity and update dependent artifacts; use for prompts like "Add property ... to entity ...".
| name | bump-gradle-version |
| description | Bump the Gradle runtime version, validate all plugin dependencies, and validate the build workflow. |
You MUST NOT generate code if even one of the preconditions is not met.
Extract the version from the request.
Check if version has major and minor number, e.g. 8.14.
Patch level is optional but can be supplied, e.g. 9.4.1.
Replace placeholder {version} with version.
If the local Gradle runtime version is not greater than or equal to {version} then
Your local Gradle runtime is too old for source level {version}.If any deprecation would break the build with the target version then
Gradle version {version} has breaking changes in [script names].Verify that all plugins listed in settings.gradle have versions compatible with the target Gradle version, e.g.
If any plugin has a breaking change or deprecation that would prevent the build from completing then
Gradle version {version} has breaking changes in [plugin names].Use this skill to bump Gradle {version} based on doc/manual/setup-gradle.adoc.
gradle/wrappergradle wrapper --gradle-version {version}
.github/workflows/build.ymlsetup-gradle set gradle-version: "{version}".devcontainer/devcontainer.jsonghcr.io/devcontainers/features/java:1 set "gradleVersion": "{version}"gradle build --parallel
Run from repository root. This step must not fail.