[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-apache-sling-release":3,"mdc--jd5rbb-key":39,"related-org-apache-sling-release":2195,"related-repo-apache-sling-release":2351},{"slug":4,"name":4,"fn":5,"description":6,"org":7,"tags":11,"stars":25,"repoUrl":26,"updatedAt":27,"license":28,"forks":29,"topics":30,"repo":34,"sourceUrl":37,"mdContent":38},"sling-release","automate Apache Sling project releases","Automates releasing an Apache Sling project end-to-end using Maven and the sling-cli Docker tool. Use when the user wants to release a Sling project, start a release, perform any step of the Apache Sling release process, or asks about releasing\u002Fvoting\u002Fpromoting a Sling module.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},"apache","Apache Software Foundation","https:\u002F\u002Fpexgzepcugksgbtrxkhf.supabase.co\u002Fstorage\u002Fv1\u002Fobject\u002Fpublic\u002Forg-logos\u002Fapache.png",[12,16,19,22],{"name":13,"slug":14,"type":15},"Maven","maven","tag",{"name":17,"slug":18,"type":15},"CLI","cli",{"name":20,"slug":21,"type":15},"Deployment","deployment",{"name":23,"slug":24,"type":15},"Docker","docker",48,"https:\u002F\u002Fgithub.com\u002Fapache\u002Fsling-whiteboard","2026-07-12T08:32:48.18062",null,32,[31,32,33],"experimental","java","sling",{"repoUrl":26,"stars":25,"forks":29,"topics":35,"description":36},[31,32,33],"Apache Sling Whiteboard - testing ground for new ideas","https:\u002F\u002Fgithub.com\u002Fapache\u002Fsling-whiteboard\u002Ftree\u002FHEAD\u002Fskills\u002Fsling-release","---\nname: sling-release\ndescription: Automates releasing an Apache Sling project end-to-end using Maven and the sling-cli Docker tool. Use when the user wants to release a Sling project, start a release, perform any step of the Apache Sling release process, or asks about releasing\u002Fvoting\u002Fpromoting a Sling module.\ntools: Bash, Read, Edit, Write\n---\n\nThis skill releases an Apache Sling module end-to-end by combining **Maven** steps (run in the\nproject being released) with the **`apache\u002Fsling-cli`** Docker tool (this repo) for the\nNexus\u002Fvote\u002Ffinalize steps.\n\n## Overview\n\nThree phases:\n1. **Stage** — Maven prepares the release and stages signed artifacts to Nexus.\n2. **Vote** — close the staging repo, verify, send the `[VOTE]` email, wait 72h, tally.\n3. **Finalize** — after a passing vote: promote to Maven Central, update JIRA + Reporter, and (for\n   PMC members) publish to `dist.apache.org`.\n\n## Prerequisites (verify before starting)\n\n1. **Docker** is available, and the `apache\u002Fsling-cli` image is built\u002Fpulled.\n2. **`~\u002F.apache-committer`** (or any env file) with ASF credentials, passed to the container:\n   ```\n   ASF_USERNAME=your-apache-id\n   ASF_PASSWORD=your-apache-password\n   ```\n3. **GPG signing key** published to `keys.openpgp.org` and added to the Sling `KEYS` file\n   (\u003Chttps:\u002F\u002Fdist.apache.org\u002Frepos\u002Fdist\u002Frelease\u002Fsling\u002FKEYS>).\n4. **`~\u002F.m2\u002Fsettings.xml`** configured for maven-gpg-plugin **3.x** (used by recent parent POMs). The\n   passphrase is read from a **server** whose id is `gpg.passphrase` (the `gpg.passphraseServerId`\n   default) and decrypted via `settings-security.xml` — **not** from a `\u003Cgpg.passphrase>` profile\n   property (that older approach is passed to gpg literally and fails):\n   ```xml\n   \u003Cservers>\n     \u003Cserver>\u003Cid>apache.snapshots.https\u003C\u002Fid>\u003Cusername>ID\u003C\u002Fusername>\u003Cpassword>{ENC}\u003C\u002Fpassword>\u003C\u002Fserver>\n     \u003Cserver>\u003Cid>apache.releases.https\u003C\u002Fid>\u003Cusername>ID\u003C\u002Fusername>\u003Cpassword>{ENC}\u003C\u002Fpassword>\u003C\u002Fserver>\n     \u003Cserver>\u003Cid>gpg.passphrase\u003C\u002Fid>\u003Cpassphrase>{ENC}\u003C\u002Fpassphrase>\u003C\u002Fserver>\n   \u003C\u002Fservers>\n   \u003Cprofiles>\u003Cprofile>\u003Cid>apache-release\u003C\u002Fid>\u003Cproperties>\n     \u003Cgpg.pinentryMode>loopback\u003C\u002Fgpg.pinentryMode>\n     \u003Cgpg.keyname>YOUR_KEY_ID\u003C\u002Fgpg.keyname>\n     \u003Csmtp.host>smtp.gmail.com\u003C\u002Fsmtp.host>\n   \u003C\u002Fproperties>\u003C\u002Fprofile>\u003C\u002Fprofiles>\n   ```\n5. **`~\u002F.m2\u002Fsettings-security.xml`** with the `\u003Cmaster>` password used to decrypt the above.\n\nIf any prerequisite is missing, stop and tell the user how to set it up before proceeding.\n\n## Running the CLI\n\nUse the Docker image directly. A `sling-cli` shell alias may exist but usually includes `-it` (TTY),\nwhich **fails in non-interactive contexts** like Claude Code — so do not rely on it:\n\n```bash\ndocker run --rm --env-file=$HOME\u002F.apache-committer apache\u002Fsling-cli release \u003Ccommand> [options]\n```\n\n- Default mode is `DRY_RUN` (shows what would happen). Add `-x AUTO` to execute, `-x INTERACTIVE` to confirm each step.\n- Always run a **DRY_RUN first** for any command that sends mail or mutates Nexus\u002Fdist, show the user the output, then re-run with `-x AUTO`.\n- `~` does not expand inside quoted docker args — use `$HOME`.\n\n## Determining the Java version (Maven steps)\n\nBuild with the Java version required by the project's Sling parent POM (recent parents require Java\n17). If `mvnXX` wrappers are absent, set `JAVA_HOME` explicitly to an installed JDK\n(`\u002Fusr\u002Flibexec\u002Fjava_home -V` to list).\n\n## Phase 1: Stage (Maven, in the project being released)\n\n1. **Parent POM current?** Confirm it's up to date and `mvn clean verify` is green.\n2. **Dry-run prepare**, then clean. Verify only `\u003Cversion>`\u002F`\u003Cscm>` differ in `pom.xml.tag`:\n   ```bash\n   mvn release:prepare -DdryRun=true && mvn release:clean\n   ```\n3. **Deploy snapshot**; confirm `META-INF\u002FLICENSE` + `META-INF\u002FNOTICE` are inside the jar:\n   ```bash\n   mvn deploy\n   ```\n4. **Prepare + perform** (creates the tag, bumps to next SNAPSHOT, signs + stages to Nexus):\n   ```bash\n   mvn release:prepare\n   mvn release:perform\n   ```\n   Capture the staging repo id from a `…\u002Forgapachesling-NNNN` line. If it scrolled off, find it with\n   `release list` (below).\n\n## Phase 2: Vote\n\n### 2.0 — Find the staging repo id (if not captured)\n```bash\ndocker run --rm --env-file=$HOME\u002F.apache-committer apache\u002Fsling-cli release list\n```\nLists every staging repo with its `[open]`\u002F`[closed]` state. A freshly staged repo is `[open]`; the\nnumeric suffix of `orgapachesling-NNNN` is the `REPO_ID`.\n\n### 2.1 — Close the staging repository\n```bash\ndocker run --rm --env-file=$HOME\u002F.apache-committer apache\u002Fsling-cli release close-staging -r \u003CREPO_ID> -x AUTO\n```\nThe description is auto-derived from the staged POM's `\u003Cname> \u003Cversion>` (so it is correct even for an\nopen repo not yet in the Lucene index). After closing, the repo shows as `[closed]`.\n\n### 2.2 — Verify artifacts\n```bash\ndocker run --rm --env-file=$HOME\u002F.apache-committer apache\u002Fsling-cli release verify -r \u003CREPO_ID>\n```\nConfirm PGP signatures, SHA-1, MD5, and CI status all pass before voting.\n\n### 2.3 — Send the vote email (dry-run first!)\n```bash\ndocker run --rm --env-file=$HOME\u002F.apache-committer apache\u002Fsling-cli release prepare-email -r \u003CREPO_ID>          # review\ndocker run --rm --env-file=$HOME\u002F.apache-committer apache\u002Fsling-cli release prepare-email -r \u003CREPO_ID> -x AUTO  # send\n```\n\n### 2.4 — Wait 72h, then tally\nAt least 72 hours on dev@sling.apache.org and ≥3 binding (PMC) +1 votes are required.\n```bash\ndocker run --rm --env-file=$HOME\u002F.apache-committer apache\u002Fsling-cli release tally-votes -r \u003CREPO_ID>            # review\ndocker run --rm --env-file=$HOME\u002F.apache-committer apache\u002Fsling-cli release tally-votes -r \u003CREPO_ID> -x AUTO    # send [RESULT]\n```\n**PMC membership is auto-detected from your ASF id** — no flag needed. If you are a PMC member the\nresult email says you will copy the release to the dist directory yourself; otherwise it asks a PMC\nmember to do the dist upload.\n\n### If the vote FAILS\n```bash\ndocker run --rm --env-file=$HOME\u002F.apache-committer apache\u002Fsling-cli release drop -r \u003CREPO_ID> -x AUTO\ngit push --delete origin \u003CTAG_NAME>   # e.g. org.apache.sling.feature.launcher-1.3.4\ngit tag -d \u003CTAG_NAME>\n# restart Phase 1 with a new version\n```\n\n## Phase 3: Finalize (after a passing vote)\n\n```bash\ndocker run --rm --env-file=$HOME\u002F.apache-committer apache\u002Fsling-cli release finalize -r \u003CREPO_ID> -x AUTO\n```\nRuns in order: promote to Maven Central → (if you are a PMC member) update `dist.apache.org` →\ncreate next JIRA version & move unresolved issues → mark JIRA version released → update Apache\nReporter.\n\n- **PMC detection is automatic.** A PMC member's run also publishes to `dist.apache.org`; the previous\n  version to remove is **deduced from the dist\u002Frelease directory**, so no `--previous-version` is\n  needed (override with `--previous-version X.Y.Z` only if necessary). A non-PMC run skips the dist\n  step (a PMC member handles it, as requested in the tally-votes email).\n\n### Update the website (optional)\n```bash\ndocker run --rm --env-file=$HOME\u002F.apache-committer apache\u002Fsling-cli release update-local-site -r \u003CREPO_ID>\n```\nReview the diff, then commit & push the sling-site changes separately.\n\n## Quick reference\n\n`\u003Ccli>` = `docker run --rm --env-file=$HOME\u002F.apache-committer apache\u002Fsling-cli`\n\n| Command | When |\n|---------|------|\n| `\u003Ccli> release list` | List staging repos with `[open]`\u002F`[closed]` state + description |\n| `\u003Ccli> release close-staging -r \u003CID> -x AUTO` | After `mvn release:perform` |\n| `\u003Ccli> release verify -r \u003CID>` | Before sending the vote email |\n| `\u003Ccli> release prepare-email -r \u003CID> -x AUTO` | Send the `[VOTE]` email |\n| `\u003Ccli> release tally-votes -r \u003CID> -x AUTO` | After 72h with ≥3 binding votes (PMC auto-detected) |\n| `\u003Ccli> release finalize -r \u003CID> -x AUTO` | All post-vote steps (dist included automatically for PMC) |\n| `\u003Ccli> release promote -r \u003CID> -x AUTO` | Promote to Maven Central (individual step) |\n| `\u003Ccli> release update-dist -r \u003CID> -x AUTO` | Update dist.apache.org (PMC only; prev version auto-deduced) |\n| `\u003Ccli> release drop -r \u003CID> -x AUTO` | Drop staging (failed vote \u002F cleanup) |\n| `\u003Ccli> release create-new-jira-version -r \u003CID> -x AUTO` | Create next JIRA version |\n| `\u003Ccli> release release-jira-version -r \u003CID> -x AUTO` | Mark JIRA version released |\n| `\u003Ccli> release update-reporter -r \u003CID> -x AUTO` | Update Apache Reporter |\n| `\u003Ccli> release update-local-site -r \u003CID>` | Update JBake website content |\n\n## Execution notes\n\nWhen this skill is invoked:\n1. Confirm which phase the user is starting from (Stage \u002F Vote \u002F Finalize \u002F Cancel) and the `REPO_ID` if past Phase 1.\n2. Verify the prerequisites above before any mutating step.\n3. For mail\u002FNexus\u002Fdist commands, run DRY_RUN first, show output, then `-x AUTO`.\n4. On failure, diagnose (often a missing prereq or wrong `REPO_ID`) and suggest a fix before retrying.\n5. Do not touch git state beyond what the documented steps require.\n",{"data":40,"body":42},{"name":4,"description":6,"tools":41},"Bash, Read, Edit, Write",{"type":43,"children":44},"root",[45,72,79,84,135,141,412,417,423,451,531,599,605,634,640,839,845,852,899,941,947,1027,1046,1052,1120,1125,1131,1277,1283,1296,1440,1450,1456,1618,1624,1699,1711,1754,1760,1827,1832,1838,1855,2130,2136,2141,2189],{"type":46,"tag":47,"props":48,"children":49},"element","p",{},[50,53,58,60,70],{"type":51,"value":52},"text","This skill releases an Apache Sling module end-to-end by combining ",{"type":46,"tag":54,"props":55,"children":56},"strong",{},[57],{"type":51,"value":13},{"type":51,"value":59}," steps (run in the\nproject being released) with the ",{"type":46,"tag":54,"props":61,"children":62},{},[63],{"type":46,"tag":64,"props":65,"children":67},"code",{"className":66},[],[68],{"type":51,"value":69},"apache\u002Fsling-cli",{"type":51,"value":71}," Docker tool (this repo) for the\nNexus\u002Fvote\u002Ffinalize steps.",{"type":46,"tag":73,"props":74,"children":76},"h2",{"id":75},"overview",[77],{"type":51,"value":78},"Overview",{"type":46,"tag":47,"props":80,"children":81},{},[82],{"type":51,"value":83},"Three phases:",{"type":46,"tag":85,"props":86,"children":87},"ol",{},[88,99,117],{"type":46,"tag":89,"props":90,"children":91},"li",{},[92,97],{"type":46,"tag":54,"props":93,"children":94},{},[95],{"type":51,"value":96},"Stage",{"type":51,"value":98}," — Maven prepares the release and stages signed artifacts to Nexus.",{"type":46,"tag":89,"props":100,"children":101},{},[102,107,109,115],{"type":46,"tag":54,"props":103,"children":104},{},[105],{"type":51,"value":106},"Vote",{"type":51,"value":108}," — close the staging repo, verify, send the ",{"type":46,"tag":64,"props":110,"children":112},{"className":111},[],[113],{"type":51,"value":114},"[VOTE]",{"type":51,"value":116}," email, wait 72h, tally.",{"type":46,"tag":89,"props":118,"children":119},{},[120,125,127,133],{"type":46,"tag":54,"props":121,"children":122},{},[123],{"type":51,"value":124},"Finalize",{"type":51,"value":126}," — after a passing vote: promote to Maven Central, update JIRA + Reporter, and (for\nPMC members) publish to ",{"type":46,"tag":64,"props":128,"children":130},{"className":129},[],[131],{"type":51,"value":132},"dist.apache.org",{"type":51,"value":134},".",{"type":46,"tag":73,"props":136,"children":138},{"id":137},"prerequisites-verify-before-starting",[139],{"type":51,"value":140},"Prerequisites (verify before starting)",{"type":46,"tag":85,"props":142,"children":143},{},[144,160,186,222,390],{"type":46,"tag":89,"props":145,"children":146},{},[147,151,153,158],{"type":46,"tag":54,"props":148,"children":149},{},[150],{"type":51,"value":23},{"type":51,"value":152}," is available, and the ",{"type":46,"tag":64,"props":154,"children":156},{"className":155},[],[157],{"type":51,"value":69},{"type":51,"value":159}," image is built\u002Fpulled.",{"type":46,"tag":89,"props":161,"children":162},{},[163,172,174],{"type":46,"tag":54,"props":164,"children":165},{},[166],{"type":46,"tag":64,"props":167,"children":169},{"className":168},[],[170],{"type":51,"value":171},"~\u002F.apache-committer",{"type":51,"value":173}," (or any env file) with ASF credentials, passed to the container:\n",{"type":46,"tag":175,"props":176,"children":180},"pre",{"className":177,"code":179,"language":51},[178],"language-text","ASF_USERNAME=your-apache-id\nASF_PASSWORD=your-apache-password\n",[181],{"type":46,"tag":64,"props":182,"children":184},{"__ignoreMap":183},"",[185],{"type":51,"value":179},{"type":46,"tag":89,"props":187,"children":188},{},[189,194,196,202,204,210,212,220],{"type":46,"tag":54,"props":190,"children":191},{},[192],{"type":51,"value":193},"GPG signing key",{"type":51,"value":195}," published to ",{"type":46,"tag":64,"props":197,"children":199},{"className":198},[],[200],{"type":51,"value":201},"keys.openpgp.org",{"type":51,"value":203}," and added to the Sling ",{"type":46,"tag":64,"props":205,"children":207},{"className":206},[],[208],{"type":51,"value":209},"KEYS",{"type":51,"value":211}," file\n(",{"type":46,"tag":213,"props":214,"children":218},"a",{"href":215,"rel":216},"https:\u002F\u002Fdist.apache.org\u002Frepos\u002Fdist\u002Frelease\u002Fsling\u002FKEYS",[217],"nofollow",[219],{"type":51,"value":215},{"type":51,"value":221},").",{"type":46,"tag":89,"props":223,"children":224},{},[225,234,236,241,243,248,250,256,258,264,266,272,274,279,281,287,289],{"type":46,"tag":54,"props":226,"children":227},{},[228],{"type":46,"tag":64,"props":229,"children":231},{"className":230},[],[232],{"type":51,"value":233},"~\u002F.m2\u002Fsettings.xml",{"type":51,"value":235}," configured for maven-gpg-plugin ",{"type":46,"tag":54,"props":237,"children":238},{},[239],{"type":51,"value":240},"3.x",{"type":51,"value":242}," (used by recent parent POMs). The\npassphrase is read from a ",{"type":46,"tag":54,"props":244,"children":245},{},[246],{"type":51,"value":247},"server",{"type":51,"value":249}," whose id is ",{"type":46,"tag":64,"props":251,"children":253},{"className":252},[],[254],{"type":51,"value":255},"gpg.passphrase",{"type":51,"value":257}," (the ",{"type":46,"tag":64,"props":259,"children":261},{"className":260},[],[262],{"type":51,"value":263},"gpg.passphraseServerId",{"type":51,"value":265},"\ndefault) and decrypted via ",{"type":46,"tag":64,"props":267,"children":269},{"className":268},[],[270],{"type":51,"value":271},"settings-security.xml",{"type":51,"value":273}," — ",{"type":46,"tag":54,"props":275,"children":276},{},[277],{"type":51,"value":278},"not",{"type":51,"value":280}," from a ",{"type":46,"tag":64,"props":282,"children":284},{"className":283},[],[285],{"type":51,"value":286},"\u003Cgpg.passphrase>",{"type":51,"value":288}," profile\nproperty (that older approach is passed to gpg literally and fails):\n",{"type":46,"tag":175,"props":290,"children":294},{"className":291,"code":292,"language":293,"meta":183,"style":183},"language-xml shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","\u003Cservers>\n  \u003Cserver>\u003Cid>apache.snapshots.https\u003C\u002Fid>\u003Cusername>ID\u003C\u002Fusername>\u003Cpassword>{ENC}\u003C\u002Fpassword>\u003C\u002Fserver>\n  \u003Cserver>\u003Cid>apache.releases.https\u003C\u002Fid>\u003Cusername>ID\u003C\u002Fusername>\u003Cpassword>{ENC}\u003C\u002Fpassword>\u003C\u002Fserver>\n  \u003Cserver>\u003Cid>gpg.passphrase\u003C\u002Fid>\u003Cpassphrase>{ENC}\u003C\u002Fpassphrase>\u003C\u002Fserver>\n\u003C\u002Fservers>\n\u003Cprofiles>\u003Cprofile>\u003Cid>apache-release\u003C\u002Fid>\u003Cproperties>\n  \u003Cgpg.pinentryMode>loopback\u003C\u002Fgpg.pinentryMode>\n  \u003Cgpg.keyname>YOUR_KEY_ID\u003C\u002Fgpg.keyname>\n  \u003Csmtp.host>smtp.gmail.com\u003C\u002Fsmtp.host>\n\u003C\u002Fproperties>\u003C\u002Fprofile>\u003C\u002Fprofiles>\n","xml",[295],{"type":46,"tag":64,"props":296,"children":297},{"__ignoreMap":183},[298,309,318,327,336,345,354,363,372,381],{"type":46,"tag":299,"props":300,"children":303},"span",{"class":301,"line":302},"line",1,[304],{"type":46,"tag":299,"props":305,"children":306},{},[307],{"type":51,"value":308},"\u003Cservers>\n",{"type":46,"tag":299,"props":310,"children":312},{"class":301,"line":311},2,[313],{"type":46,"tag":299,"props":314,"children":315},{},[316],{"type":51,"value":317},"  \u003Cserver>\u003Cid>apache.snapshots.https\u003C\u002Fid>\u003Cusername>ID\u003C\u002Fusername>\u003Cpassword>{ENC}\u003C\u002Fpassword>\u003C\u002Fserver>\n",{"type":46,"tag":299,"props":319,"children":321},{"class":301,"line":320},3,[322],{"type":46,"tag":299,"props":323,"children":324},{},[325],{"type":51,"value":326},"  \u003Cserver>\u003Cid>apache.releases.https\u003C\u002Fid>\u003Cusername>ID\u003C\u002Fusername>\u003Cpassword>{ENC}\u003C\u002Fpassword>\u003C\u002Fserver>\n",{"type":46,"tag":299,"props":328,"children":330},{"class":301,"line":329},4,[331],{"type":46,"tag":299,"props":332,"children":333},{},[334],{"type":51,"value":335},"  \u003Cserver>\u003Cid>gpg.passphrase\u003C\u002Fid>\u003Cpassphrase>{ENC}\u003C\u002Fpassphrase>\u003C\u002Fserver>\n",{"type":46,"tag":299,"props":337,"children":339},{"class":301,"line":338},5,[340],{"type":46,"tag":299,"props":341,"children":342},{},[343],{"type":51,"value":344},"\u003C\u002Fservers>\n",{"type":46,"tag":299,"props":346,"children":348},{"class":301,"line":347},6,[349],{"type":46,"tag":299,"props":350,"children":351},{},[352],{"type":51,"value":353},"\u003Cprofiles>\u003Cprofile>\u003Cid>apache-release\u003C\u002Fid>\u003Cproperties>\n",{"type":46,"tag":299,"props":355,"children":357},{"class":301,"line":356},7,[358],{"type":46,"tag":299,"props":359,"children":360},{},[361],{"type":51,"value":362},"  \u003Cgpg.pinentryMode>loopback\u003C\u002Fgpg.pinentryMode>\n",{"type":46,"tag":299,"props":364,"children":366},{"class":301,"line":365},8,[367],{"type":46,"tag":299,"props":368,"children":369},{},[370],{"type":51,"value":371},"  \u003Cgpg.keyname>YOUR_KEY_ID\u003C\u002Fgpg.keyname>\n",{"type":46,"tag":299,"props":373,"children":375},{"class":301,"line":374},9,[376],{"type":46,"tag":299,"props":377,"children":378},{},[379],{"type":51,"value":380},"  \u003Csmtp.host>smtp.gmail.com\u003C\u002Fsmtp.host>\n",{"type":46,"tag":299,"props":382,"children":384},{"class":301,"line":383},10,[385],{"type":46,"tag":299,"props":386,"children":387},{},[388],{"type":51,"value":389},"\u003C\u002Fproperties>\u003C\u002Fprofile>\u003C\u002Fprofiles>\n",{"type":46,"tag":89,"props":391,"children":392},{},[393,402,404,410],{"type":46,"tag":54,"props":394,"children":395},{},[396],{"type":46,"tag":64,"props":397,"children":399},{"className":398},[],[400],{"type":51,"value":401},"~\u002F.m2\u002Fsettings-security.xml",{"type":51,"value":403}," with the ",{"type":46,"tag":64,"props":405,"children":407},{"className":406},[],[408],{"type":51,"value":409},"\u003Cmaster>",{"type":51,"value":411}," password used to decrypt the above.",{"type":46,"tag":47,"props":413,"children":414},{},[415],{"type":51,"value":416},"If any prerequisite is missing, stop and tell the user how to set it up before proceeding.",{"type":46,"tag":73,"props":418,"children":420},{"id":419},"running-the-cli",[421],{"type":51,"value":422},"Running the CLI",{"type":46,"tag":47,"props":424,"children":425},{},[426,428,434,436,442,444,449],{"type":51,"value":427},"Use the Docker image directly. A ",{"type":46,"tag":64,"props":429,"children":431},{"className":430},[],[432],{"type":51,"value":433},"sling-cli",{"type":51,"value":435}," shell alias may exist but usually includes ",{"type":46,"tag":64,"props":437,"children":439},{"className":438},[],[440],{"type":51,"value":441},"-it",{"type":51,"value":443}," (TTY),\nwhich ",{"type":46,"tag":54,"props":445,"children":446},{},[447],{"type":51,"value":448},"fails in non-interactive contexts",{"type":51,"value":450}," like Claude Code — so do not rely on it:",{"type":46,"tag":175,"props":452,"children":456},{"className":453,"code":454,"language":455,"meta":183,"style":183},"language-bash shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","docker run --rm --env-file=$HOME\u002F.apache-committer apache\u002Fsling-cli release \u003Ccommand> [options]\n","bash",[457],{"type":46,"tag":64,"props":458,"children":459},{"__ignoreMap":183},[460],{"type":46,"tag":299,"props":461,"children":462},{"class":301,"line":302},[463,468,474,479,484,490,495,500,505,511,516,521,526],{"type":46,"tag":299,"props":464,"children":466},{"style":465},"--shiki-light:#E2931D;--shiki-default:#FFCB6B;--shiki-dark:#FFCB6B",[467],{"type":51,"value":24},{"type":46,"tag":299,"props":469,"children":471},{"style":470},"--shiki-light:#91B859;--shiki-default:#C3E88D;--shiki-dark:#C3E88D",[472],{"type":51,"value":473}," run",{"type":46,"tag":299,"props":475,"children":476},{"style":470},[477],{"type":51,"value":478}," --rm",{"type":46,"tag":299,"props":480,"children":481},{"style":470},[482],{"type":51,"value":483}," --env-file=",{"type":46,"tag":299,"props":485,"children":487},{"style":486},"--shiki-light:#90A4AE;--shiki-default:#EEFFFF;--shiki-dark:#BABED8",[488],{"type":51,"value":489},"$HOME",{"type":46,"tag":299,"props":491,"children":492},{"style":470},[493],{"type":51,"value":494},"\u002F.apache-committer",{"type":46,"tag":299,"props":496,"children":497},{"style":470},[498],{"type":51,"value":499}," apache\u002Fsling-cli",{"type":46,"tag":299,"props":501,"children":502},{"style":470},[503],{"type":51,"value":504}," release",{"type":46,"tag":299,"props":506,"children":508},{"style":507},"--shiki-light:#39ADB5;--shiki-default:#89DDFF;--shiki-dark:#89DDFF",[509],{"type":51,"value":510}," \u003C",{"type":46,"tag":299,"props":512,"children":513},{"style":470},[514],{"type":51,"value":515},"comman",{"type":46,"tag":299,"props":517,"children":518},{"style":486},[519],{"type":51,"value":520},"d",{"type":46,"tag":299,"props":522,"children":523},{"style":507},[524],{"type":51,"value":525},">",{"type":46,"tag":299,"props":527,"children":528},{"style":486},[529],{"type":51,"value":530}," [options]\n",{"type":46,"tag":532,"props":533,"children":534},"ul",{},[535,564,582],{"type":46,"tag":89,"props":536,"children":537},{},[538,540,546,548,554,556,562],{"type":51,"value":539},"Default mode is ",{"type":46,"tag":64,"props":541,"children":543},{"className":542},[],[544],{"type":51,"value":545},"DRY_RUN",{"type":51,"value":547}," (shows what would happen). Add ",{"type":46,"tag":64,"props":549,"children":551},{"className":550},[],[552],{"type":51,"value":553},"-x AUTO",{"type":51,"value":555}," to execute, ",{"type":46,"tag":64,"props":557,"children":559},{"className":558},[],[560],{"type":51,"value":561},"-x INTERACTIVE",{"type":51,"value":563}," to confirm each step.",{"type":46,"tag":89,"props":565,"children":566},{},[567,569,574,576,581],{"type":51,"value":568},"Always run a ",{"type":46,"tag":54,"props":570,"children":571},{},[572],{"type":51,"value":573},"DRY_RUN first",{"type":51,"value":575}," for any command that sends mail or mutates Nexus\u002Fdist, show the user the output, then re-run with ",{"type":46,"tag":64,"props":577,"children":579},{"className":578},[],[580],{"type":51,"value":553},{"type":51,"value":134},{"type":46,"tag":89,"props":583,"children":584},{},[585,591,593,598],{"type":46,"tag":64,"props":586,"children":588},{"className":587},[],[589],{"type":51,"value":590},"~",{"type":51,"value":592}," does not expand inside quoted docker args — use ",{"type":46,"tag":64,"props":594,"children":596},{"className":595},[],[597],{"type":51,"value":489},{"type":51,"value":134},{"type":46,"tag":73,"props":600,"children":602},{"id":601},"determining-the-java-version-maven-steps",[603],{"type":51,"value":604},"Determining the Java version (Maven steps)",{"type":46,"tag":47,"props":606,"children":607},{},[608,610,616,618,624,626,632],{"type":51,"value":609},"Build with the Java version required by the project's Sling parent POM (recent parents require Java\n17). If ",{"type":46,"tag":64,"props":611,"children":613},{"className":612},[],[614],{"type":51,"value":615},"mvnXX",{"type":51,"value":617}," wrappers are absent, set ",{"type":46,"tag":64,"props":619,"children":621},{"className":620},[],[622],{"type":51,"value":623},"JAVA_HOME",{"type":51,"value":625}," explicitly to an installed JDK\n(",{"type":46,"tag":64,"props":627,"children":629},{"className":628},[],[630],{"type":51,"value":631},"\u002Fusr\u002Flibexec\u002Fjava_home -V",{"type":51,"value":633}," to list).",{"type":46,"tag":73,"props":635,"children":637},{"id":636},"phase-1-stage-maven-in-the-project-being-released",[638],{"type":51,"value":639},"Phase 1: Stage (Maven, in the project being released)",{"type":46,"tag":85,"props":641,"children":642},{},[643,661,735,780],{"type":46,"tag":89,"props":644,"children":645},{},[646,651,653,659],{"type":46,"tag":54,"props":647,"children":648},{},[649],{"type":51,"value":650},"Parent POM current?",{"type":51,"value":652}," Confirm it's up to date and ",{"type":46,"tag":64,"props":654,"children":656},{"className":655},[],[657],{"type":51,"value":658},"mvn clean verify",{"type":51,"value":660}," is green.",{"type":46,"tag":89,"props":662,"children":663},{},[664,669,671,677,679,685,687,693,695],{"type":46,"tag":54,"props":665,"children":666},{},[667],{"type":51,"value":668},"Dry-run prepare",{"type":51,"value":670},", then clean. Verify only ",{"type":46,"tag":64,"props":672,"children":674},{"className":673},[],[675],{"type":51,"value":676},"\u003Cversion>",{"type":51,"value":678},"\u002F",{"type":46,"tag":64,"props":680,"children":682},{"className":681},[],[683],{"type":51,"value":684},"\u003Cscm>",{"type":51,"value":686}," differ in ",{"type":46,"tag":64,"props":688,"children":690},{"className":689},[],[691],{"type":51,"value":692},"pom.xml.tag",{"type":51,"value":694},":\n",{"type":46,"tag":175,"props":696,"children":698},{"className":453,"code":697,"language":455,"meta":183,"style":183},"mvn release:prepare -DdryRun=true && mvn release:clean\n",[699],{"type":46,"tag":64,"props":700,"children":701},{"__ignoreMap":183},[702],{"type":46,"tag":299,"props":703,"children":704},{"class":301,"line":302},[705,710,715,720,725,730],{"type":46,"tag":299,"props":706,"children":707},{"style":465},[708],{"type":51,"value":709},"mvn",{"type":46,"tag":299,"props":711,"children":712},{"style":470},[713],{"type":51,"value":714}," release:prepare",{"type":46,"tag":299,"props":716,"children":717},{"style":470},[718],{"type":51,"value":719}," -DdryRun=true",{"type":46,"tag":299,"props":721,"children":722},{"style":507},[723],{"type":51,"value":724}," &&",{"type":46,"tag":299,"props":726,"children":727},{"style":465},[728],{"type":51,"value":729}," mvn",{"type":46,"tag":299,"props":731,"children":732},{"style":470},[733],{"type":51,"value":734}," release:clean\n",{"type":46,"tag":89,"props":736,"children":737},{},[738,743,745,751,753,759,761],{"type":46,"tag":54,"props":739,"children":740},{},[741],{"type":51,"value":742},"Deploy snapshot",{"type":51,"value":744},"; confirm ",{"type":46,"tag":64,"props":746,"children":748},{"className":747},[],[749],{"type":51,"value":750},"META-INF\u002FLICENSE",{"type":51,"value":752}," + ",{"type":46,"tag":64,"props":754,"children":756},{"className":755},[],[757],{"type":51,"value":758},"META-INF\u002FNOTICE",{"type":51,"value":760}," are inside the jar:\n",{"type":46,"tag":175,"props":762,"children":764},{"className":453,"code":763,"language":455,"meta":183,"style":183},"mvn deploy\n",[765],{"type":46,"tag":64,"props":766,"children":767},{"__ignoreMap":183},[768],{"type":46,"tag":299,"props":769,"children":770},{"class":301,"line":302},[771,775],{"type":46,"tag":299,"props":772,"children":773},{"style":465},[774],{"type":51,"value":709},{"type":46,"tag":299,"props":776,"children":777},{"style":470},[778],{"type":51,"value":779}," deploy\n",{"type":46,"tag":89,"props":781,"children":782},{},[783,788,790,821,823,829,831,837],{"type":46,"tag":54,"props":784,"children":785},{},[786],{"type":51,"value":787},"Prepare + perform",{"type":51,"value":789}," (creates the tag, bumps to next SNAPSHOT, signs + stages to Nexus):\n",{"type":46,"tag":175,"props":791,"children":793},{"className":453,"code":792,"language":455,"meta":183,"style":183},"mvn release:prepare\nmvn release:perform\n",[794],{"type":46,"tag":64,"props":795,"children":796},{"__ignoreMap":183},[797,809],{"type":46,"tag":299,"props":798,"children":799},{"class":301,"line":302},[800,804],{"type":46,"tag":299,"props":801,"children":802},{"style":465},[803],{"type":51,"value":709},{"type":46,"tag":299,"props":805,"children":806},{"style":470},[807],{"type":51,"value":808}," release:prepare\n",{"type":46,"tag":299,"props":810,"children":811},{"class":301,"line":311},[812,816],{"type":46,"tag":299,"props":813,"children":814},{"style":465},[815],{"type":51,"value":709},{"type":46,"tag":299,"props":817,"children":818},{"style":470},[819],{"type":51,"value":820}," release:perform\n",{"type":51,"value":822},"\nCapture the staging repo id from a ",{"type":46,"tag":64,"props":824,"children":826},{"className":825},[],[827],{"type":51,"value":828},"…\u002Forgapachesling-NNNN",{"type":51,"value":830}," line. If it scrolled off, find it with\n",{"type":46,"tag":64,"props":832,"children":834},{"className":833},[],[835],{"type":51,"value":836},"release list",{"type":51,"value":838}," (below).",{"type":46,"tag":73,"props":840,"children":842},{"id":841},"phase-2-vote",[843],{"type":51,"value":844},"Phase 2: Vote",{"type":46,"tag":846,"props":847,"children":849},"h3",{"id":848},"_20-find-the-staging-repo-id-if-not-captured",[850],{"type":51,"value":851},"2.0 — Find the staging repo id (if not captured)",{"type":46,"tag":175,"props":853,"children":855},{"className":453,"code":854,"language":455,"meta":183,"style":183},"docker run --rm --env-file=$HOME\u002F.apache-committer apache\u002Fsling-cli release list\n",[856],{"type":46,"tag":64,"props":857,"children":858},{"__ignoreMap":183},[859],{"type":46,"tag":299,"props":860,"children":861},{"class":301,"line":302},[862,866,870,874,878,882,886,890,894],{"type":46,"tag":299,"props":863,"children":864},{"style":465},[865],{"type":51,"value":24},{"type":46,"tag":299,"props":867,"children":868},{"style":470},[869],{"type":51,"value":473},{"type":46,"tag":299,"props":871,"children":872},{"style":470},[873],{"type":51,"value":478},{"type":46,"tag":299,"props":875,"children":876},{"style":470},[877],{"type":51,"value":483},{"type":46,"tag":299,"props":879,"children":880},{"style":486},[881],{"type":51,"value":489},{"type":46,"tag":299,"props":883,"children":884},{"style":470},[885],{"type":51,"value":494},{"type":46,"tag":299,"props":887,"children":888},{"style":470},[889],{"type":51,"value":499},{"type":46,"tag":299,"props":891,"children":892},{"style":470},[893],{"type":51,"value":504},{"type":46,"tag":299,"props":895,"children":896},{"style":470},[897],{"type":51,"value":898}," list\n",{"type":46,"tag":47,"props":900,"children":901},{},[902,904,910,911,917,919,924,926,932,934,940],{"type":51,"value":903},"Lists every staging repo with its ",{"type":46,"tag":64,"props":905,"children":907},{"className":906},[],[908],{"type":51,"value":909},"[open]",{"type":51,"value":678},{"type":46,"tag":64,"props":912,"children":914},{"className":913},[],[915],{"type":51,"value":916},"[closed]",{"type":51,"value":918}," state. A freshly staged repo is ",{"type":46,"tag":64,"props":920,"children":922},{"className":921},[],[923],{"type":51,"value":909},{"type":51,"value":925},"; the\nnumeric suffix of ",{"type":46,"tag":64,"props":927,"children":929},{"className":928},[],[930],{"type":51,"value":931},"orgapachesling-NNNN",{"type":51,"value":933}," is the ",{"type":46,"tag":64,"props":935,"children":937},{"className":936},[],[938],{"type":51,"value":939},"REPO_ID",{"type":51,"value":134},{"type":46,"tag":846,"props":942,"children":944},{"id":943},"_21-close-the-staging-repository",[945],{"type":51,"value":946},"2.1 — Close the staging repository",{"type":46,"tag":175,"props":948,"children":950},{"className":453,"code":949,"language":455,"meta":183,"style":183},"docker run --rm --env-file=$HOME\u002F.apache-committer apache\u002Fsling-cli release close-staging -r \u003CREPO_ID> -x AUTO\n",[951],{"type":46,"tag":64,"props":952,"children":953},{"__ignoreMap":183},[954],{"type":46,"tag":299,"props":955,"children":956},{"class":301,"line":302},[957,961,965,969,973,977,981,985,989,994,999,1003,1008,1013,1017,1022],{"type":46,"tag":299,"props":958,"children":959},{"style":465},[960],{"type":51,"value":24},{"type":46,"tag":299,"props":962,"children":963},{"style":470},[964],{"type":51,"value":473},{"type":46,"tag":299,"props":966,"children":967},{"style":470},[968],{"type":51,"value":478},{"type":46,"tag":299,"props":970,"children":971},{"style":470},[972],{"type":51,"value":483},{"type":46,"tag":299,"props":974,"children":975},{"style":486},[976],{"type":51,"value":489},{"type":46,"tag":299,"props":978,"children":979},{"style":470},[980],{"type":51,"value":494},{"type":46,"tag":299,"props":982,"children":983},{"style":470},[984],{"type":51,"value":499},{"type":46,"tag":299,"props":986,"children":987},{"style":470},[988],{"type":51,"value":504},{"type":46,"tag":299,"props":990,"children":991},{"style":470},[992],{"type":51,"value":993}," close-staging",{"type":46,"tag":299,"props":995,"children":996},{"style":470},[997],{"type":51,"value":998}," -r",{"type":46,"tag":299,"props":1000,"children":1001},{"style":507},[1002],{"type":51,"value":510},{"type":46,"tag":299,"props":1004,"children":1005},{"style":470},[1006],{"type":51,"value":1007},"REPO_I",{"type":46,"tag":299,"props":1009,"children":1010},{"style":486},[1011],{"type":51,"value":1012},"D",{"type":46,"tag":299,"props":1014,"children":1015},{"style":507},[1016],{"type":51,"value":525},{"type":46,"tag":299,"props":1018,"children":1019},{"style":470},[1020],{"type":51,"value":1021}," -x",{"type":46,"tag":299,"props":1023,"children":1024},{"style":470},[1025],{"type":51,"value":1026}," AUTO\n",{"type":46,"tag":47,"props":1028,"children":1029},{},[1030,1032,1038,1040,1045],{"type":51,"value":1031},"The description is auto-derived from the staged POM's ",{"type":46,"tag":64,"props":1033,"children":1035},{"className":1034},[],[1036],{"type":51,"value":1037},"\u003Cname> \u003Cversion>",{"type":51,"value":1039}," (so it is correct even for an\nopen repo not yet in the Lucene index). After closing, the repo shows as ",{"type":46,"tag":64,"props":1041,"children":1043},{"className":1042},[],[1044],{"type":51,"value":916},{"type":51,"value":134},{"type":46,"tag":846,"props":1047,"children":1049},{"id":1048},"_22-verify-artifacts",[1050],{"type":51,"value":1051},"2.2 — Verify artifacts",{"type":46,"tag":175,"props":1053,"children":1055},{"className":453,"code":1054,"language":455,"meta":183,"style":183},"docker run --rm --env-file=$HOME\u002F.apache-committer apache\u002Fsling-cli release verify -r \u003CREPO_ID>\n",[1056],{"type":46,"tag":64,"props":1057,"children":1058},{"__ignoreMap":183},[1059],{"type":46,"tag":299,"props":1060,"children":1061},{"class":301,"line":302},[1062,1066,1070,1074,1078,1082,1086,1090,1094,1099,1103,1107,1111,1115],{"type":46,"tag":299,"props":1063,"children":1064},{"style":465},[1065],{"type":51,"value":24},{"type":46,"tag":299,"props":1067,"children":1068},{"style":470},[1069],{"type":51,"value":473},{"type":46,"tag":299,"props":1071,"children":1072},{"style":470},[1073],{"type":51,"value":478},{"type":46,"tag":299,"props":1075,"children":1076},{"style":470},[1077],{"type":51,"value":483},{"type":46,"tag":299,"props":1079,"children":1080},{"style":486},[1081],{"type":51,"value":489},{"type":46,"tag":299,"props":1083,"children":1084},{"style":470},[1085],{"type":51,"value":494},{"type":46,"tag":299,"props":1087,"children":1088},{"style":470},[1089],{"type":51,"value":499},{"type":46,"tag":299,"props":1091,"children":1092},{"style":470},[1093],{"type":51,"value":504},{"type":46,"tag":299,"props":1095,"children":1096},{"style":470},[1097],{"type":51,"value":1098}," verify",{"type":46,"tag":299,"props":1100,"children":1101},{"style":470},[1102],{"type":51,"value":998},{"type":46,"tag":299,"props":1104,"children":1105},{"style":507},[1106],{"type":51,"value":510},{"type":46,"tag":299,"props":1108,"children":1109},{"style":470},[1110],{"type":51,"value":1007},{"type":46,"tag":299,"props":1112,"children":1113},{"style":486},[1114],{"type":51,"value":1012},{"type":46,"tag":299,"props":1116,"children":1117},{"style":507},[1118],{"type":51,"value":1119},">\n",{"type":46,"tag":47,"props":1121,"children":1122},{},[1123],{"type":51,"value":1124},"Confirm PGP signatures, SHA-1, MD5, and CI status all pass before voting.",{"type":46,"tag":846,"props":1126,"children":1128},{"id":1127},"_23-send-the-vote-email-dry-run-first",[1129],{"type":51,"value":1130},"2.3 — Send the vote email (dry-run first!)",{"type":46,"tag":175,"props":1132,"children":1134},{"className":453,"code":1133,"language":455,"meta":183,"style":183},"docker run --rm --env-file=$HOME\u002F.apache-committer apache\u002Fsling-cli release prepare-email -r \u003CREPO_ID>          # review\ndocker run --rm --env-file=$HOME\u002F.apache-committer apache\u002Fsling-cli release prepare-email -r \u003CREPO_ID> -x AUTO  # send\n",[1135],{"type":46,"tag":64,"props":1136,"children":1137},{"__ignoreMap":183},[1138,1204],{"type":46,"tag":299,"props":1139,"children":1140},{"class":301,"line":302},[1141,1145,1149,1153,1157,1161,1165,1169,1173,1178,1182,1186,1190,1194,1198],{"type":46,"tag":299,"props":1142,"children":1143},{"style":465},[1144],{"type":51,"value":24},{"type":46,"tag":299,"props":1146,"children":1147},{"style":470},[1148],{"type":51,"value":473},{"type":46,"tag":299,"props":1150,"children":1151},{"style":470},[1152],{"type":51,"value":478},{"type":46,"tag":299,"props":1154,"children":1155},{"style":470},[1156],{"type":51,"value":483},{"type":46,"tag":299,"props":1158,"children":1159},{"style":486},[1160],{"type":51,"value":489},{"type":46,"tag":299,"props":1162,"children":1163},{"style":470},[1164],{"type":51,"value":494},{"type":46,"tag":299,"props":1166,"children":1167},{"style":470},[1168],{"type":51,"value":499},{"type":46,"tag":299,"props":1170,"children":1171},{"style":470},[1172],{"type":51,"value":504},{"type":46,"tag":299,"props":1174,"children":1175},{"style":470},[1176],{"type":51,"value":1177}," prepare-email",{"type":46,"tag":299,"props":1179,"children":1180},{"style":470},[1181],{"type":51,"value":998},{"type":46,"tag":299,"props":1183,"children":1184},{"style":507},[1185],{"type":51,"value":510},{"type":46,"tag":299,"props":1187,"children":1188},{"style":470},[1189],{"type":51,"value":1007},{"type":46,"tag":299,"props":1191,"children":1192},{"style":486},[1193],{"type":51,"value":1012},{"type":46,"tag":299,"props":1195,"children":1196},{"style":507},[1197],{"type":51,"value":525},{"type":46,"tag":299,"props":1199,"children":1201},{"style":1200},"--shiki-light:#90A4AE;--shiki-light-font-style:italic;--shiki-default:#546E7A;--shiki-default-font-style:italic;--shiki-dark:#676E95;--shiki-dark-font-style:italic",[1202],{"type":51,"value":1203},"          # review\n",{"type":46,"tag":299,"props":1205,"children":1206},{"class":301,"line":311},[1207,1211,1215,1219,1223,1227,1231,1235,1239,1243,1247,1251,1255,1259,1263,1267,1272],{"type":46,"tag":299,"props":1208,"children":1209},{"style":465},[1210],{"type":51,"value":24},{"type":46,"tag":299,"props":1212,"children":1213},{"style":470},[1214],{"type":51,"value":473},{"type":46,"tag":299,"props":1216,"children":1217},{"style":470},[1218],{"type":51,"value":478},{"type":46,"tag":299,"props":1220,"children":1221},{"style":470},[1222],{"type":51,"value":483},{"type":46,"tag":299,"props":1224,"children":1225},{"style":486},[1226],{"type":51,"value":489},{"type":46,"tag":299,"props":1228,"children":1229},{"style":470},[1230],{"type":51,"value":494},{"type":46,"tag":299,"props":1232,"children":1233},{"style":470},[1234],{"type":51,"value":499},{"type":46,"tag":299,"props":1236,"children":1237},{"style":470},[1238],{"type":51,"value":504},{"type":46,"tag":299,"props":1240,"children":1241},{"style":470},[1242],{"type":51,"value":1177},{"type":46,"tag":299,"props":1244,"children":1245},{"style":470},[1246],{"type":51,"value":998},{"type":46,"tag":299,"props":1248,"children":1249},{"style":507},[1250],{"type":51,"value":510},{"type":46,"tag":299,"props":1252,"children":1253},{"style":470},[1254],{"type":51,"value":1007},{"type":46,"tag":299,"props":1256,"children":1257},{"style":486},[1258],{"type":51,"value":1012},{"type":46,"tag":299,"props":1260,"children":1261},{"style":507},[1262],{"type":51,"value":525},{"type":46,"tag":299,"props":1264,"children":1265},{"style":470},[1266],{"type":51,"value":1021},{"type":46,"tag":299,"props":1268,"children":1269},{"style":470},[1270],{"type":51,"value":1271}," AUTO",{"type":46,"tag":299,"props":1273,"children":1274},{"style":1200},[1275],{"type":51,"value":1276},"  # send\n",{"type":46,"tag":846,"props":1278,"children":1280},{"id":1279},"_24-wait-72h-then-tally",[1281],{"type":51,"value":1282},"2.4 — Wait 72h, then tally",{"type":46,"tag":47,"props":1284,"children":1285},{},[1286,1288,1294],{"type":51,"value":1287},"At least 72 hours on ",{"type":46,"tag":213,"props":1289,"children":1291},{"href":1290},"mailto:dev@sling.apache.org",[1292],{"type":51,"value":1293},"dev@sling.apache.org",{"type":51,"value":1295}," and ≥3 binding (PMC) +1 votes are required.",{"type":46,"tag":175,"props":1297,"children":1299},{"className":453,"code":1298,"language":455,"meta":183,"style":183},"docker run --rm --env-file=$HOME\u002F.apache-committer apache\u002Fsling-cli release tally-votes -r \u003CREPO_ID>            # review\ndocker run --rm --env-file=$HOME\u002F.apache-committer apache\u002Fsling-cli release tally-votes -r \u003CREPO_ID> -x AUTO    # send [RESULT]\n",[1300],{"type":46,"tag":64,"props":1301,"children":1302},{"__ignoreMap":183},[1303,1368],{"type":46,"tag":299,"props":1304,"children":1305},{"class":301,"line":302},[1306,1310,1314,1318,1322,1326,1330,1334,1338,1343,1347,1351,1355,1359,1363],{"type":46,"tag":299,"props":1307,"children":1308},{"style":465},[1309],{"type":51,"value":24},{"type":46,"tag":299,"props":1311,"children":1312},{"style":470},[1313],{"type":51,"value":473},{"type":46,"tag":299,"props":1315,"children":1316},{"style":470},[1317],{"type":51,"value":478},{"type":46,"tag":299,"props":1319,"children":1320},{"style":470},[1321],{"type":51,"value":483},{"type":46,"tag":299,"props":1323,"children":1324},{"style":486},[1325],{"type":51,"value":489},{"type":46,"tag":299,"props":1327,"children":1328},{"style":470},[1329],{"type":51,"value":494},{"type":46,"tag":299,"props":1331,"children":1332},{"style":470},[1333],{"type":51,"value":499},{"type":46,"tag":299,"props":1335,"children":1336},{"style":470},[1337],{"type":51,"value":504},{"type":46,"tag":299,"props":1339,"children":1340},{"style":470},[1341],{"type":51,"value":1342}," tally-votes",{"type":46,"tag":299,"props":1344,"children":1345},{"style":470},[1346],{"type":51,"value":998},{"type":46,"tag":299,"props":1348,"children":1349},{"style":507},[1350],{"type":51,"value":510},{"type":46,"tag":299,"props":1352,"children":1353},{"style":470},[1354],{"type":51,"value":1007},{"type":46,"tag":299,"props":1356,"children":1357},{"style":486},[1358],{"type":51,"value":1012},{"type":46,"tag":299,"props":1360,"children":1361},{"style":507},[1362],{"type":51,"value":525},{"type":46,"tag":299,"props":1364,"children":1365},{"style":1200},[1366],{"type":51,"value":1367},"            # review\n",{"type":46,"tag":299,"props":1369,"children":1370},{"class":301,"line":311},[1371,1375,1379,1383,1387,1391,1395,1399,1403,1407,1411,1415,1419,1423,1427,1431,1435],{"type":46,"tag":299,"props":1372,"children":1373},{"style":465},[1374],{"type":51,"value":24},{"type":46,"tag":299,"props":1376,"children":1377},{"style":470},[1378],{"type":51,"value":473},{"type":46,"tag":299,"props":1380,"children":1381},{"style":470},[1382],{"type":51,"value":478},{"type":46,"tag":299,"props":1384,"children":1385},{"style":470},[1386],{"type":51,"value":483},{"type":46,"tag":299,"props":1388,"children":1389},{"style":486},[1390],{"type":51,"value":489},{"type":46,"tag":299,"props":1392,"children":1393},{"style":470},[1394],{"type":51,"value":494},{"type":46,"tag":299,"props":1396,"children":1397},{"style":470},[1398],{"type":51,"value":499},{"type":46,"tag":299,"props":1400,"children":1401},{"style":470},[1402],{"type":51,"value":504},{"type":46,"tag":299,"props":1404,"children":1405},{"style":470},[1406],{"type":51,"value":1342},{"type":46,"tag":299,"props":1408,"children":1409},{"style":470},[1410],{"type":51,"value":998},{"type":46,"tag":299,"props":1412,"children":1413},{"style":507},[1414],{"type":51,"value":510},{"type":46,"tag":299,"props":1416,"children":1417},{"style":470},[1418],{"type":51,"value":1007},{"type":46,"tag":299,"props":1420,"children":1421},{"style":486},[1422],{"type":51,"value":1012},{"type":46,"tag":299,"props":1424,"children":1425},{"style":507},[1426],{"type":51,"value":525},{"type":46,"tag":299,"props":1428,"children":1429},{"style":470},[1430],{"type":51,"value":1021},{"type":46,"tag":299,"props":1432,"children":1433},{"style":470},[1434],{"type":51,"value":1271},{"type":46,"tag":299,"props":1436,"children":1437},{"style":1200},[1438],{"type":51,"value":1439},"    # send [RESULT]\n",{"type":46,"tag":47,"props":1441,"children":1442},{},[1443,1448],{"type":46,"tag":54,"props":1444,"children":1445},{},[1446],{"type":51,"value":1447},"PMC membership is auto-detected from your ASF id",{"type":51,"value":1449}," — no flag needed. If you are a PMC member the\nresult email says you will copy the release to the dist directory yourself; otherwise it asks a PMC\nmember to do the dist upload.",{"type":46,"tag":846,"props":1451,"children":1453},{"id":1452},"if-the-vote-fails",[1454],{"type":51,"value":1455},"If the vote FAILS",{"type":46,"tag":175,"props":1457,"children":1459},{"className":453,"code":1458,"language":455,"meta":183,"style":183},"docker run --rm --env-file=$HOME\u002F.apache-committer apache\u002Fsling-cli release drop -r \u003CREPO_ID> -x AUTO\ngit push --delete origin \u003CTAG_NAME>   # e.g. org.apache.sling.feature.launcher-1.3.4\ngit tag -d \u003CTAG_NAME>\n# restart Phase 1 with a new version\n",[1460],{"type":46,"tag":64,"props":1461,"children":1462},{"__ignoreMap":183},[1463,1531,1577,1610],{"type":46,"tag":299,"props":1464,"children":1465},{"class":301,"line":302},[1466,1470,1474,1478,1482,1486,1490,1494,1498,1503,1507,1511,1515,1519,1523,1527],{"type":46,"tag":299,"props":1467,"children":1468},{"style":465},[1469],{"type":51,"value":24},{"type":46,"tag":299,"props":1471,"children":1472},{"style":470},[1473],{"type":51,"value":473},{"type":46,"tag":299,"props":1475,"children":1476},{"style":470},[1477],{"type":51,"value":478},{"type":46,"tag":299,"props":1479,"children":1480},{"style":470},[1481],{"type":51,"value":483},{"type":46,"tag":299,"props":1483,"children":1484},{"style":486},[1485],{"type":51,"value":489},{"type":46,"tag":299,"props":1487,"children":1488},{"style":470},[1489],{"type":51,"value":494},{"type":46,"tag":299,"props":1491,"children":1492},{"style":470},[1493],{"type":51,"value":499},{"type":46,"tag":299,"props":1495,"children":1496},{"style":470},[1497],{"type":51,"value":504},{"type":46,"tag":299,"props":1499,"children":1500},{"style":470},[1501],{"type":51,"value":1502}," drop",{"type":46,"tag":299,"props":1504,"children":1505},{"style":470},[1506],{"type":51,"value":998},{"type":46,"tag":299,"props":1508,"children":1509},{"style":507},[1510],{"type":51,"value":510},{"type":46,"tag":299,"props":1512,"children":1513},{"style":470},[1514],{"type":51,"value":1007},{"type":46,"tag":299,"props":1516,"children":1517},{"style":486},[1518],{"type":51,"value":1012},{"type":46,"tag":299,"props":1520,"children":1521},{"style":507},[1522],{"type":51,"value":525},{"type":46,"tag":299,"props":1524,"children":1525},{"style":470},[1526],{"type":51,"value":1021},{"type":46,"tag":299,"props":1528,"children":1529},{"style":470},[1530],{"type":51,"value":1026},{"type":46,"tag":299,"props":1532,"children":1533},{"class":301,"line":311},[1534,1539,1544,1549,1554,1558,1563,1568,1572],{"type":46,"tag":299,"props":1535,"children":1536},{"style":465},[1537],{"type":51,"value":1538},"git",{"type":46,"tag":299,"props":1540,"children":1541},{"style":470},[1542],{"type":51,"value":1543}," push",{"type":46,"tag":299,"props":1545,"children":1546},{"style":470},[1547],{"type":51,"value":1548}," --delete",{"type":46,"tag":299,"props":1550,"children":1551},{"style":470},[1552],{"type":51,"value":1553}," origin",{"type":46,"tag":299,"props":1555,"children":1556},{"style":507},[1557],{"type":51,"value":510},{"type":46,"tag":299,"props":1559,"children":1560},{"style":470},[1561],{"type":51,"value":1562},"TAG_NAM",{"type":46,"tag":299,"props":1564,"children":1565},{"style":486},[1566],{"type":51,"value":1567},"E",{"type":46,"tag":299,"props":1569,"children":1570},{"style":507},[1571],{"type":51,"value":525},{"type":46,"tag":299,"props":1573,"children":1574},{"style":1200},[1575],{"type":51,"value":1576},"   # e.g. org.apache.sling.feature.launcher-1.3.4\n",{"type":46,"tag":299,"props":1578,"children":1579},{"class":301,"line":320},[1580,1584,1589,1594,1598,1602,1606],{"type":46,"tag":299,"props":1581,"children":1582},{"style":465},[1583],{"type":51,"value":1538},{"type":46,"tag":299,"props":1585,"children":1586},{"style":470},[1587],{"type":51,"value":1588}," tag",{"type":46,"tag":299,"props":1590,"children":1591},{"style":470},[1592],{"type":51,"value":1593}," -d",{"type":46,"tag":299,"props":1595,"children":1596},{"style":507},[1597],{"type":51,"value":510},{"type":46,"tag":299,"props":1599,"children":1600},{"style":470},[1601],{"type":51,"value":1562},{"type":46,"tag":299,"props":1603,"children":1604},{"style":486},[1605],{"type":51,"value":1567},{"type":46,"tag":299,"props":1607,"children":1608},{"style":507},[1609],{"type":51,"value":1119},{"type":46,"tag":299,"props":1611,"children":1612},{"class":301,"line":329},[1613],{"type":46,"tag":299,"props":1614,"children":1615},{"style":1200},[1616],{"type":51,"value":1617},"# restart Phase 1 with a new version\n",{"type":46,"tag":73,"props":1619,"children":1621},{"id":1620},"phase-3-finalize-after-a-passing-vote",[1622],{"type":51,"value":1623},"Phase 3: Finalize (after a passing vote)",{"type":46,"tag":175,"props":1625,"children":1627},{"className":453,"code":1626,"language":455,"meta":183,"style":183},"docker run --rm --env-file=$HOME\u002F.apache-committer apache\u002Fsling-cli release finalize -r \u003CREPO_ID> -x AUTO\n",[1628],{"type":46,"tag":64,"props":1629,"children":1630},{"__ignoreMap":183},[1631],{"type":46,"tag":299,"props":1632,"children":1633},{"class":301,"line":302},[1634,1638,1642,1646,1650,1654,1658,1662,1666,1671,1675,1679,1683,1687,1691,1695],{"type":46,"tag":299,"props":1635,"children":1636},{"style":465},[1637],{"type":51,"value":24},{"type":46,"tag":299,"props":1639,"children":1640},{"style":470},[1641],{"type":51,"value":473},{"type":46,"tag":299,"props":1643,"children":1644},{"style":470},[1645],{"type":51,"value":478},{"type":46,"tag":299,"props":1647,"children":1648},{"style":470},[1649],{"type":51,"value":483},{"type":46,"tag":299,"props":1651,"children":1652},{"style":486},[1653],{"type":51,"value":489},{"type":46,"tag":299,"props":1655,"children":1656},{"style":470},[1657],{"type":51,"value":494},{"type":46,"tag":299,"props":1659,"children":1660},{"style":470},[1661],{"type":51,"value":499},{"type":46,"tag":299,"props":1663,"children":1664},{"style":470},[1665],{"type":51,"value":504},{"type":46,"tag":299,"props":1667,"children":1668},{"style":470},[1669],{"type":51,"value":1670}," finalize",{"type":46,"tag":299,"props":1672,"children":1673},{"style":470},[1674],{"type":51,"value":998},{"type":46,"tag":299,"props":1676,"children":1677},{"style":507},[1678],{"type":51,"value":510},{"type":46,"tag":299,"props":1680,"children":1681},{"style":470},[1682],{"type":51,"value":1007},{"type":46,"tag":299,"props":1684,"children":1685},{"style":486},[1686],{"type":51,"value":1012},{"type":46,"tag":299,"props":1688,"children":1689},{"style":507},[1690],{"type":51,"value":525},{"type":46,"tag":299,"props":1692,"children":1693},{"style":470},[1694],{"type":51,"value":1021},{"type":46,"tag":299,"props":1696,"children":1697},{"style":470},[1698],{"type":51,"value":1026},{"type":46,"tag":47,"props":1700,"children":1701},{},[1702,1704,1709],{"type":51,"value":1703},"Runs in order: promote to Maven Central → (if you are a PMC member) update ",{"type":46,"tag":64,"props":1705,"children":1707},{"className":1706},[],[1708],{"type":51,"value":132},{"type":51,"value":1710}," →\ncreate next JIRA version & move unresolved issues → mark JIRA version released → update Apache\nReporter.",{"type":46,"tag":532,"props":1712,"children":1713},{},[1714],{"type":46,"tag":89,"props":1715,"children":1716},{},[1717,1722,1724,1729,1731,1736,1738,1744,1746,1752],{"type":46,"tag":54,"props":1718,"children":1719},{},[1720],{"type":51,"value":1721},"PMC detection is automatic.",{"type":51,"value":1723}," A PMC member's run also publishes to ",{"type":46,"tag":64,"props":1725,"children":1727},{"className":1726},[],[1728],{"type":51,"value":132},{"type":51,"value":1730},"; the previous\nversion to remove is ",{"type":46,"tag":54,"props":1732,"children":1733},{},[1734],{"type":51,"value":1735},"deduced from the dist\u002Frelease directory",{"type":51,"value":1737},", so no ",{"type":46,"tag":64,"props":1739,"children":1741},{"className":1740},[],[1742],{"type":51,"value":1743},"--previous-version",{"type":51,"value":1745}," is\nneeded (override with ",{"type":46,"tag":64,"props":1747,"children":1749},{"className":1748},[],[1750],{"type":51,"value":1751},"--previous-version X.Y.Z",{"type":51,"value":1753}," only if necessary). A non-PMC run skips the dist\nstep (a PMC member handles it, as requested in the tally-votes email).",{"type":46,"tag":846,"props":1755,"children":1757},{"id":1756},"update-the-website-optional",[1758],{"type":51,"value":1759},"Update the website (optional)",{"type":46,"tag":175,"props":1761,"children":1763},{"className":453,"code":1762,"language":455,"meta":183,"style":183},"docker run --rm --env-file=$HOME\u002F.apache-committer apache\u002Fsling-cli release update-local-site -r \u003CREPO_ID>\n",[1764],{"type":46,"tag":64,"props":1765,"children":1766},{"__ignoreMap":183},[1767],{"type":46,"tag":299,"props":1768,"children":1769},{"class":301,"line":302},[1770,1774,1778,1782,1786,1790,1794,1798,1802,1807,1811,1815,1819,1823],{"type":46,"tag":299,"props":1771,"children":1772},{"style":465},[1773],{"type":51,"value":24},{"type":46,"tag":299,"props":1775,"children":1776},{"style":470},[1777],{"type":51,"value":473},{"type":46,"tag":299,"props":1779,"children":1780},{"style":470},[1781],{"type":51,"value":478},{"type":46,"tag":299,"props":1783,"children":1784},{"style":470},[1785],{"type":51,"value":483},{"type":46,"tag":299,"props":1787,"children":1788},{"style":486},[1789],{"type":51,"value":489},{"type":46,"tag":299,"props":1791,"children":1792},{"style":470},[1793],{"type":51,"value":494},{"type":46,"tag":299,"props":1795,"children":1796},{"style":470},[1797],{"type":51,"value":499},{"type":46,"tag":299,"props":1799,"children":1800},{"style":470},[1801],{"type":51,"value":504},{"type":46,"tag":299,"props":1803,"children":1804},{"style":470},[1805],{"type":51,"value":1806}," update-local-site",{"type":46,"tag":299,"props":1808,"children":1809},{"style":470},[1810],{"type":51,"value":998},{"type":46,"tag":299,"props":1812,"children":1813},{"style":507},[1814],{"type":51,"value":510},{"type":46,"tag":299,"props":1816,"children":1817},{"style":470},[1818],{"type":51,"value":1007},{"type":46,"tag":299,"props":1820,"children":1821},{"style":486},[1822],{"type":51,"value":1012},{"type":46,"tag":299,"props":1824,"children":1825},{"style":507},[1826],{"type":51,"value":1119},{"type":46,"tag":47,"props":1828,"children":1829},{},[1830],{"type":51,"value":1831},"Review the diff, then commit & push the sling-site changes separately.",{"type":46,"tag":73,"props":1833,"children":1835},{"id":1834},"quick-reference",[1836],{"type":51,"value":1837},"Quick reference",{"type":46,"tag":47,"props":1839,"children":1840},{},[1841,1847,1849],{"type":46,"tag":64,"props":1842,"children":1844},{"className":1843},[],[1845],{"type":51,"value":1846},"\u003Ccli>",{"type":51,"value":1848}," = ",{"type":46,"tag":64,"props":1850,"children":1852},{"className":1851},[],[1853],{"type":51,"value":1854},"docker run --rm --env-file=$HOME\u002F.apache-committer apache\u002Fsling-cli",{"type":46,"tag":1856,"props":1857,"children":1858},"table",{},[1859,1878],{"type":46,"tag":1860,"props":1861,"children":1862},"thead",{},[1863],{"type":46,"tag":1864,"props":1865,"children":1866},"tr",{},[1867,1873],{"type":46,"tag":1868,"props":1869,"children":1870},"th",{},[1871],{"type":51,"value":1872},"Command",{"type":46,"tag":1868,"props":1874,"children":1875},{},[1876],{"type":51,"value":1877},"When",{"type":46,"tag":1879,"props":1880,"children":1881},"tbody",{},[1882,1913,1936,1953,1977,1994,2011,2028,2045,2062,2079,2096,2113],{"type":46,"tag":1864,"props":1883,"children":1884},{},[1885,1895],{"type":46,"tag":1886,"props":1887,"children":1888},"td",{},[1889],{"type":46,"tag":64,"props":1890,"children":1892},{"className":1891},[],[1893],{"type":51,"value":1894},"\u003Ccli> release list",{"type":46,"tag":1886,"props":1896,"children":1897},{},[1898,1900,1905,1906,1911],{"type":51,"value":1899},"List staging repos with ",{"type":46,"tag":64,"props":1901,"children":1903},{"className":1902},[],[1904],{"type":51,"value":909},{"type":51,"value":678},{"type":46,"tag":64,"props":1907,"children":1909},{"className":1908},[],[1910],{"type":51,"value":916},{"type":51,"value":1912}," state + description",{"type":46,"tag":1864,"props":1914,"children":1915},{},[1916,1925],{"type":46,"tag":1886,"props":1917,"children":1918},{},[1919],{"type":46,"tag":64,"props":1920,"children":1922},{"className":1921},[],[1923],{"type":51,"value":1924},"\u003Ccli> release close-staging -r \u003CID> -x AUTO",{"type":46,"tag":1886,"props":1926,"children":1927},{},[1928,1930],{"type":51,"value":1929},"After ",{"type":46,"tag":64,"props":1931,"children":1933},{"className":1932},[],[1934],{"type":51,"value":1935},"mvn release:perform",{"type":46,"tag":1864,"props":1937,"children":1938},{},[1939,1948],{"type":46,"tag":1886,"props":1940,"children":1941},{},[1942],{"type":46,"tag":64,"props":1943,"children":1945},{"className":1944},[],[1946],{"type":51,"value":1947},"\u003Ccli> release verify -r \u003CID>",{"type":46,"tag":1886,"props":1949,"children":1950},{},[1951],{"type":51,"value":1952},"Before sending the vote email",{"type":46,"tag":1864,"props":1954,"children":1955},{},[1956,1965],{"type":46,"tag":1886,"props":1957,"children":1958},{},[1959],{"type":46,"tag":64,"props":1960,"children":1962},{"className":1961},[],[1963],{"type":51,"value":1964},"\u003Ccli> release prepare-email -r \u003CID> -x AUTO",{"type":46,"tag":1886,"props":1966,"children":1967},{},[1968,1970,1975],{"type":51,"value":1969},"Send the ",{"type":46,"tag":64,"props":1971,"children":1973},{"className":1972},[],[1974],{"type":51,"value":114},{"type":51,"value":1976}," email",{"type":46,"tag":1864,"props":1978,"children":1979},{},[1980,1989],{"type":46,"tag":1886,"props":1981,"children":1982},{},[1983],{"type":46,"tag":64,"props":1984,"children":1986},{"className":1985},[],[1987],{"type":51,"value":1988},"\u003Ccli> release tally-votes -r \u003CID> -x AUTO",{"type":46,"tag":1886,"props":1990,"children":1991},{},[1992],{"type":51,"value":1993},"After 72h with ≥3 binding votes (PMC auto-detected)",{"type":46,"tag":1864,"props":1995,"children":1996},{},[1997,2006],{"type":46,"tag":1886,"props":1998,"children":1999},{},[2000],{"type":46,"tag":64,"props":2001,"children":2003},{"className":2002},[],[2004],{"type":51,"value":2005},"\u003Ccli> release finalize -r \u003CID> -x AUTO",{"type":46,"tag":1886,"props":2007,"children":2008},{},[2009],{"type":51,"value":2010},"All post-vote steps (dist included automatically for PMC)",{"type":46,"tag":1864,"props":2012,"children":2013},{},[2014,2023],{"type":46,"tag":1886,"props":2015,"children":2016},{},[2017],{"type":46,"tag":64,"props":2018,"children":2020},{"className":2019},[],[2021],{"type":51,"value":2022},"\u003Ccli> release promote -r \u003CID> -x AUTO",{"type":46,"tag":1886,"props":2024,"children":2025},{},[2026],{"type":51,"value":2027},"Promote to Maven Central (individual step)",{"type":46,"tag":1864,"props":2029,"children":2030},{},[2031,2040],{"type":46,"tag":1886,"props":2032,"children":2033},{},[2034],{"type":46,"tag":64,"props":2035,"children":2037},{"className":2036},[],[2038],{"type":51,"value":2039},"\u003Ccli> release update-dist -r \u003CID> -x AUTO",{"type":46,"tag":1886,"props":2041,"children":2042},{},[2043],{"type":51,"value":2044},"Update dist.apache.org (PMC only; prev version auto-deduced)",{"type":46,"tag":1864,"props":2046,"children":2047},{},[2048,2057],{"type":46,"tag":1886,"props":2049,"children":2050},{},[2051],{"type":46,"tag":64,"props":2052,"children":2054},{"className":2053},[],[2055],{"type":51,"value":2056},"\u003Ccli> release drop -r \u003CID> -x AUTO",{"type":46,"tag":1886,"props":2058,"children":2059},{},[2060],{"type":51,"value":2061},"Drop staging (failed vote \u002F cleanup)",{"type":46,"tag":1864,"props":2063,"children":2064},{},[2065,2074],{"type":46,"tag":1886,"props":2066,"children":2067},{},[2068],{"type":46,"tag":64,"props":2069,"children":2071},{"className":2070},[],[2072],{"type":51,"value":2073},"\u003Ccli> release create-new-jira-version -r \u003CID> -x AUTO",{"type":46,"tag":1886,"props":2075,"children":2076},{},[2077],{"type":51,"value":2078},"Create next JIRA version",{"type":46,"tag":1864,"props":2080,"children":2081},{},[2082,2091],{"type":46,"tag":1886,"props":2083,"children":2084},{},[2085],{"type":46,"tag":64,"props":2086,"children":2088},{"className":2087},[],[2089],{"type":51,"value":2090},"\u003Ccli> release release-jira-version -r \u003CID> -x AUTO",{"type":46,"tag":1886,"props":2092,"children":2093},{},[2094],{"type":51,"value":2095},"Mark JIRA version released",{"type":46,"tag":1864,"props":2097,"children":2098},{},[2099,2108],{"type":46,"tag":1886,"props":2100,"children":2101},{},[2102],{"type":46,"tag":64,"props":2103,"children":2105},{"className":2104},[],[2106],{"type":51,"value":2107},"\u003Ccli> release update-reporter -r \u003CID> -x AUTO",{"type":46,"tag":1886,"props":2109,"children":2110},{},[2111],{"type":51,"value":2112},"Update Apache Reporter",{"type":46,"tag":1864,"props":2114,"children":2115},{},[2116,2125],{"type":46,"tag":1886,"props":2117,"children":2118},{},[2119],{"type":46,"tag":64,"props":2120,"children":2122},{"className":2121},[],[2123],{"type":51,"value":2124},"\u003Ccli> release update-local-site -r \u003CID>",{"type":46,"tag":1886,"props":2126,"children":2127},{},[2128],{"type":51,"value":2129},"Update JBake website content",{"type":46,"tag":73,"props":2131,"children":2133},{"id":2132},"execution-notes",[2134],{"type":51,"value":2135},"Execution notes",{"type":46,"tag":47,"props":2137,"children":2138},{},[2139],{"type":51,"value":2140},"When this skill is invoked:",{"type":46,"tag":85,"props":2142,"children":2143},{},[2144,2156,2161,2172,2184],{"type":46,"tag":89,"props":2145,"children":2146},{},[2147,2149,2154],{"type":51,"value":2148},"Confirm which phase the user is starting from (Stage \u002F Vote \u002F Finalize \u002F Cancel) and the ",{"type":46,"tag":64,"props":2150,"children":2152},{"className":2151},[],[2153],{"type":51,"value":939},{"type":51,"value":2155}," if past Phase 1.",{"type":46,"tag":89,"props":2157,"children":2158},{},[2159],{"type":51,"value":2160},"Verify the prerequisites above before any mutating step.",{"type":46,"tag":89,"props":2162,"children":2163},{},[2164,2166,2171],{"type":51,"value":2165},"For mail\u002FNexus\u002Fdist commands, run DRY_RUN first, show output, then ",{"type":46,"tag":64,"props":2167,"children":2169},{"className":2168},[],[2170],{"type":51,"value":553},{"type":51,"value":134},{"type":46,"tag":89,"props":2173,"children":2174},{},[2175,2177,2182],{"type":51,"value":2176},"On failure, diagnose (often a missing prereq or wrong ",{"type":46,"tag":64,"props":2178,"children":2180},{"className":2179},[],[2181],{"type":51,"value":939},{"type":51,"value":2183},") and suggest a fix before retrying.",{"type":46,"tag":89,"props":2185,"children":2186},{},[2187],{"type":51,"value":2188},"Do not touch git state beyond what the documented steps require.",{"type":46,"tag":2190,"props":2191,"children":2192},"style",{},[2193],{"type":51,"value":2194},"html .light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html.light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html .default .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}html.dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}",{"items":2196,"total":2350},[2197,2215,2231,2244,2257,2270,2287,2298,2308,2319,2329,2339],{"slug":2198,"name":2198,"fn":2199,"description":2200,"org":2201,"tags":2202,"stars":2212,"repoUrl":2213,"updatedAt":2214},"datafusion-python","write Apache DataFusion Python code","Use when the user is writing datafusion-python (Apache DataFusion Python bindings) DataFrame or SQL code. Covers imports, data loading, DataFrame operations, expression building, SQL-to-DataFrame mappings, idiomatic patterns, and common pitfalls.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2203,2206,2209],{"name":2204,"slug":2205,"type":15},"Data Analysis","data-analysis",{"name":2207,"slug":2208,"type":15},"Python","python",{"name":2210,"slug":2211,"type":15},"SQL","sql",593,"https:\u002F\u002Fgithub.com\u002Fapache\u002Fdatafusion-python","2026-07-12T08:36:04.957626",{"slug":2216,"name":2216,"fn":2217,"description":2218,"org":2219,"tags":2220,"stars":2228,"repoUrl":2229,"updatedAt":2230},"bydbql","generate and execute BanyanDB BydbQL queries","Generate, validate, and optionally execute read-only BanyanDB BydbQL for STREAM, MEASURE, TRACE, and PROPERTY resources. Use when the user asks to query BanyanDB, translate natural language to BydbQL, inspect BanyanDB schema or data, validate BydbQL, or fetch raw BanyanDB records.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2221,2224,2227],{"name":2222,"slug":2223,"type":15},"Analytics","analytics",{"name":2225,"slug":2226,"type":15},"Database","database",{"name":2210,"slug":2211,"type":15},344,"https:\u002F\u002Fgithub.com\u002Fapache\u002Fskywalking-banyandb","2026-07-12T08:31:01.294423",{"slug":2232,"name":2232,"fn":2233,"description":2234,"org":2235,"tags":2236,"stars":2228,"repoUrl":2229,"updatedAt":2243},"compiling","compile and build BanyanDB projects","Compile and build the SkyWalking BanyanDB project. Use when the user asks to compile, build, or generate code for this project.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2237,2240],{"name":2238,"slug":2239,"type":15},"Build","build",{"name":2241,"slug":2242,"type":15},"Engineering","engineering","2026-07-12T08:31:06.373309",{"slug":2245,"name":2245,"fn":2246,"description":2247,"org":2248,"tags":2249,"stars":2228,"repoUrl":2229,"updatedAt":2256},"gh-pull-request","create GitHub pull requests for BanyanDB","Create a GitHub pull request for SkyWalking BanyanDB. Use when the user asks to create a PR, submit changes, or open a pull request.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2250,2253],{"name":2251,"slug":2252,"type":15},"GitHub","github",{"name":2254,"slug":2255,"type":15},"Pull Requests","pull-requests","2026-07-12T08:31:03.792415",{"slug":2258,"name":2258,"fn":2259,"description":2260,"org":2261,"tags":2262,"stars":2228,"repoUrl":2229,"updatedAt":2269},"vendor-update","update Go and Node.js vendor dependencies","Upgrade Go\u002FNode.js vendor dependencies and sync tool versions. Use whenever the user says \"upgrade dependencies\", \"update vendors\", \"vendor update\", \"run vendor-upgrade\", \"bump dependencies\", \"update packages\", or asks to run the `vendor-update` Make target. This skill also checks `scripts\u002Fbuild\u002Fversion.mk` after upgrading to see if any tracked tool versions need updating too, and removes stale binaries from `bin\u002F` when versions change.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2263,2266],{"name":2264,"slug":2265,"type":15},"Go","go",{"name":2267,"slug":2268,"type":15},"Node.js","node-js","2026-07-12T08:31:02.555555",{"slug":2271,"name":2271,"fn":2272,"description":2273,"org":2274,"tags":2275,"stars":2284,"repoUrl":2285,"updatedAt":2286},"cayenne-cgen","generate Cayenne entity Java classes","Use this skill whenever the user wants to (re)generate Cayenne entity Java classes from a DataMap. Trigger on phrases like 'generate Java classes', 'regenerate entities', 'run cgen', 'create the entity classes', 'why is the Artist class missing fields', 'where did the `_Abstract*` classes come from', 'sync the entity classes with the model', or any request to materialize Java from the DataMap. Also trigger as a follow-up after modeling changes (someone added an entity, attribute, or relationship and now the Java side is stale). This skill exclusively uses the `mcp__cayenne__cgen_run` MCP tool — it does NOT use `mvn cayenne:cgen` or the Gradle cgen task.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2276,2279,2281],{"name":2277,"slug":2278,"type":15},"Data Modeling","data-modeling",{"name":2280,"slug":32,"type":15},"Java",{"name":2282,"slug":2283,"type":15},"ORM","orm",343,"https:\u002F\u002Fgithub.com\u002Fapache\u002Fcayenne","2026-07-12T08:32:33.575211",{"slug":2288,"name":2288,"fn":2289,"description":2290,"org":2291,"tags":2292,"stars":2284,"repoUrl":2285,"updatedAt":2297},"cayenne-db-import","import database schema into Cayenne DataMaps","Use this skill when the user wants to import database schema metadata into a Cayenne DataMap — the *model\u002Fmapping only*, not names or Java classes. Trigger on phrases like 'reverse engineer the database', 'import the schema', 'generate a DataMap from my DB', 'add the new tables from the DB into the model', 'import the customer table', 'create entities from these tables', or any request to read database metadata to populate or update a DataMap's XML. This is for *full schema* or *bulk table* import; one-off a-la-carte entity additions belong in the cayenne-modeling skill. IMPORTANT — scope: this imports the mapping ONLY; it does not clean up the Object-layer names or (re)generate Java classes. When the user wants their whole project brought in line with the DB ('sync my project with the database', 'my schema changed, update everything', 'update my entities\u002Fclasses from the DB'), that is the end-to-end `cayenne-full-db-sync` skill, which runs this import and then name cleanup and class generation. To regenerate classes alone use `cayenne-cgen`. The skill runs reverse engineering directly via the `mcp__cayenne__dbimport_run` MCP tool when a DBConnector is already configured; otherwise it opens the CayenneModeler GUI via `mcp__cayenne__open_project` to configure the connection first.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2293,2294,2295,2296],{"name":2225,"slug":2226,"type":15},{"name":2280,"slug":32,"type":15},{"name":2282,"slug":2283,"type":15},{"name":2210,"slug":2211,"type":15},"2026-07-19T05:40:33.655062",{"slug":2299,"name":2299,"fn":2300,"description":2301,"org":2302,"tags":2303,"stars":2284,"repoUrl":2285,"updatedAt":2307},"cayenne-full-db-sync","synchronize Cayenne projects with database","Use this skill when the user wants to bring their WHOLE Cayenne project in line with the database in one shot — the mapping, the Object-layer names, and the generated Java classes together. This is the end-to-end 'sync with the DB' workflow, and it orchestrates three skills in order: `cayenne-db-import` (import schema metadata into the DataMap) → `cayenne-model-naming` (polish the just-imported names) → `cayenne-cgen` (regenerate Java classes). Trigger on holistic phrases like 'sync my project with the database', 'sync with the DB', 'my schema changed, update everything', 'update my entities\u002Fclasses from the database', 'reverse engineer and regenerate the classes', 'import the new tables and rebuild the entities', 'full DB sync', 'bring the model and classes up to date with the DB'. The distinguishing signal is scope: the user wants the whole project (mapping + names + Java code), not just one stage. For the *model\u002Fmapping only* (no name cleanup, no class generation) use `cayenne-db-import`; to (re)generate classes alone use `cayenne-cgen`; to clean names alone use `cayenne-model-naming`. Uses the `mcp__cayenne__dbimport_run` and `mcp__cayenne__cgen_run` MCP tools via the sub-skills; does NOT use Maven or Gradle goals.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2304,2305,2306],{"name":2225,"slug":2226,"type":15},{"name":2280,"slug":32,"type":15},{"name":2282,"slug":2283,"type":15},"2026-07-19T06:03:49.112969",{"slug":2309,"name":2309,"fn":2310,"description":2311,"org":2312,"tags":2313,"stars":2284,"repoUrl":2285,"updatedAt":2318},"cayenne-model-naming","clean up Cayenne object-layer names","Use this skill to clean up Object-layer names in a Cayenne DataMap — ObjEntity, ObjAttribute, and ObjRelationship names, plus DbRelationship names (the first-class unit of relationship cleanup — every FK has one whether or not an ObjRelationship was generated; the ObjRelationship name is synced to it when one exists) — so they read as descriptive, consistent Java. Trigger on phrases like 'clean up the model names', 'fix the entity names', 'these names look ugly', 'make the names descriptive', 'normalize the ObjEntity\u002Fattribute\u002Frelationship names', 'why is this relationship called team1', 'rename entities to be consistent', 'the import produced Gametype instead of GameType'. Invoke it on an explicit user request, or as a manual follow-up after a `cayenne-db-import` to polish the just-imported additions — it is never triggered automatically. IMPORTANT: this is a LIGHT polish pass — CayenneModeler's reverse-engineering already produces good names for the common case; only improve the specific things its deterministic algorithm cannot (run-together names with no separators like `gametype`, meaningless numbered names like `team1` from multiple relationships between two tables, and a common entity prefix that leaks into relationship names like `aaOrders`). Do NOT rewrite names that are already correct. This is Obj-layer naming polish; for structural model edits use `cayenne-modeling`, and for regenerating classes afterward use `cayenne-cgen`.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2314,2315,2316,2317],{"name":2277,"slug":2278,"type":15},{"name":2225,"slug":2226,"type":15},{"name":2280,"slug":32,"type":15},{"name":2282,"slug":2283,"type":15},"2026-07-22T05:35:32.342548",{"slug":2320,"name":2320,"fn":2321,"description":2322,"org":2323,"tags":2324,"stars":2284,"repoUrl":2285,"updatedAt":2328},"cayenne-modeler","manage Cayenne projects with CayenneModeler","Use this skill when the user explicitly wants to open CayenneModeler (the GUI) on a Cayenne project, or when the modeling task is inherently visual — reverse engineering (delegated to cayenne-db-import), bulk relationship layout, multi-entity visual refactoring. Trigger on phrases like 'open the Modeler', 'open in CayenneModeler', 'launch the GUI', 'edit visually', 'show me the project in the Modeler'. Do NOT trigger as a fallback for ordinary a-la-carte XML edits — those belong in the cayenne-modeling skill, which is faster and doesn't require the user to context-switch.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2325,2326,2327],{"name":2277,"slug":2278,"type":15},{"name":2280,"slug":32,"type":15},{"name":2282,"slug":2283,"type":15},"2026-07-12T08:32:37.199428",{"slug":2330,"name":2330,"fn":2331,"description":2332,"org":2333,"tags":2334,"stars":2284,"repoUrl":2285,"updatedAt":2338},"cayenne-modeling","edit and extend Cayenne ORM models","Use this skill whenever the user wants to edit, inspect, or extend the Cayenne ORM model in a project — adding or modifying entities, attributes, relationships, embeddables, named queries, stored procedures, or DataNodes. Trigger on phrases like 'add an ObjEntity', 'add a DbEntity', 'add a relationship', 'expose this column as an attribute', 'create a new DataMap', 'add a named query', 'create an embeddable', 'add a stored procedure', 'change the attribute type', 'mark this column as nullable', 'rename this entity', or any mention of a Cayenne `*.map.xml` or `cayenne-*.xml` file. Also trigger when the user references modeling concepts (ObjEntity, DbEntity, ObjAttribute, DbAttribute, ObjRelationship, DbRelationship, Embeddable, dbEntityName, deleteRule, db-attribute-path, db-relationship-path, defaultPackage) in the context of a Cayenne-using app. This is the *primary* skill for a-la-carte ORM model manipulation — direct XML edits, not the Modeler GUI.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2335,2336,2337],{"name":2225,"slug":2226,"type":15},{"name":2280,"slug":32,"type":15},{"name":2282,"slug":2283,"type":15},"2026-07-19T05:40:32.6889",{"slug":2340,"name":2340,"fn":2341,"description":2342,"org":2343,"tags":2344,"stars":2284,"repoUrl":2285,"updatedAt":2349},"cayenne-query","write and modify Cayenne database queries","Use this skill whenever the user wants to write or modify a Cayenne query — fetching entities by criteria, joining, prefetching to avoid N+1, ordering, paginating, aggregating, or running raw SQL through Cayenne. Trigger on phrases like 'query for X', 'fetch all artists where ...', 'write an ObjectSelect', 'use SQLSelect', 'use SelectById', 'add a prefetch', 'get distinct values', 'count rows', 'find by ID', 'load by primary key', 'build a Cayenne expression', 'why am I getting N+1', 'how do I paginate', 'select a single column', 'select columns into a DTO', 'named query in the DataMap'. Do NOT trigger for modeling changes (use cayenne-modeling) or runtime bootstrap (use cayenne-runtime).",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2345,2346,2347,2348],{"name":2225,"slug":2226,"type":15},{"name":2280,"slug":32,"type":15},{"name":2282,"slug":2283,"type":15},{"name":2210,"slug":2211,"type":15},"2026-07-12T08:32:35.072322",108,{"items":2352,"total":320},[2353,2365,2372],{"slug":2354,"name":2354,"fn":2355,"description":2356,"org":2357,"tags":2358,"stars":25,"repoUrl":26,"updatedAt":2364},"osgi-scr-migrator","migrate OSGi projects to R6\u002FR7 annotations","Migrate OSGi-based Java projects from deprecated Felix SCR annotations to official OSGi R6\u002FR7 Component annotations. Use when migrating legacy OSGi bundles that use @Component, @Service, @Reference, @Property from org.apache.felix.scr.annotations to org.osgi.service.component.annotations. Handles both Java source code transformation and Maven POM updates (removing maven-scr-plugin, updating dependencies). Also supports Sling-specific annotations like @SlingServlet and @SlingFilter. Features full automation of property migration, metatype configuration generation, constructor injection optimization, validation, and comprehensive reporting. After basic migration, offers optional Step 7 to optimize code with constructor injection for immutable dependencies.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2359,2360,2361],{"name":2241,"slug":2242,"type":15},{"name":2280,"slug":32,"type":15},{"name":2362,"slug":2363,"type":15},"Migration","migration","2026-07-12T08:32:49.640805",{"slug":4,"name":4,"fn":5,"description":6,"org":2366,"tags":2367,"stars":25,"repoUrl":26,"updatedAt":27},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2368,2369,2370,2371],{"name":17,"slug":18,"type":15},{"name":20,"slug":21,"type":15},{"name":23,"slug":24,"type":15},{"name":13,"slug":14,"type":15},{"slug":2373,"name":2373,"fn":2374,"description":2375,"org":2376,"tags":2377,"stars":25,"repoUrl":26,"updatedAt":2381},"update-sling-parent-pom","upgrade Sling parent POM versions","Use when the user asks to upgrade the Sling parent POM version in their project",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2378,2379,2380],{"name":2241,"slug":2242,"type":15},{"name":2280,"slug":32,"type":15},{"name":13,"slug":14,"type":15},"2026-07-29T05:38:51.809245"]