This is an automated email from the ASF dual-hosted git repository. rombert pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/sling-whiteboard.git
commit 0a3b639cc0494478b148ce7fd411f7e8032099de Author: Robert Munteanu <[email protected]> AuthorDate: Tue Apr 21 17:20:13 2026 +0200 skills(update-sling-parent-pom): stronger wording for rat workaround This works better for non-interactive tools. --- skills/update-sling-parent-pom/references/rat-disable.md | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/skills/update-sling-parent-pom/references/rat-disable.md b/skills/update-sling-parent-pom/references/rat-disable.md index 6b0e7022..a092d906 100644 --- a/skills/update-sling-parent-pom/references/rat-disable.md +++ b/skills/update-sling-parent-pom/references/rat-disable.md @@ -1,3 +1,9 @@ The RAT profile was enabled by default with SLING-4511. If this causes failures right after upgrade, you can temporarily disable by running Maven with '-Drat.skip=true'. -If this succeeds, ask the user if the property should be added to the pom.xml to permanently skip the check. +If this succeeds add the property to the pom.xml file: + +```xml +<properties> + <rat.skip>true</rat.skip> +</properties> +```
