This is an automated email from the ASF dual-hosted git repository. kwin pushed a commit to branch feature/github-ribbon in repository https://gitbox.apache.org/repos/asf/maven-parent.git
commit 171a4c51d693acc2b13bf3e55a9bdb0b03f9740b Author: Konrad Windszus <[email protected]> AuthorDate: Wed Sep 17 18:25:22 2025 +0200 Always render a GitHub ribbon on the right-hand side The GH project id is derived by default from the artifactId (but can be overwritten). This closes #494 --- maven-plugins/src/site/site.xml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/maven-plugins/src/site/site.xml b/maven-plugins/src/site/site.xml index da34bda..d68e376 100644 --- a/maven-plugins/src/site/site.xml +++ b/maven-plugins/src/site/site.xml @@ -21,6 +21,16 @@ under the License. <site xmlns="http://maven.apache.org/SITE/2.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/SITE/2.0.0 https://maven.apache.org/xsd/site-2.0.0.xsd"> + <custom> + <fluidoSkin> + <gitHub> + <projectId>apache/${project.artifactId}</projectId> + <ribbonOrientation>right</ribbonOrientation> + <ribbonColor>gray</ribbonColor> + </gitHub> + </fluidoSkin> + </custom> + <body> <breadcrumbs> <item name="Plugins" href="https://maven.apache.org/plugins/index.html" />
