From 639fac84d660a3e4f1661f4e90d72be2fb7008d1 Mon Sep 17 00:00:00 2001 From: Kai Moritz Date: Wed, 17 Jun 2026 19:40:17 +0000 Subject: [PATCH] Use StILi itself as its own Maven site skin (dogfooding) site.xml now references ${project.groupId}:${project.artifactId}:${project.version} instead of maven-fluido-skin. Removes the now-unused maven-fluido-skin.version property from pom.xml. Build requires ./mvnw clean install site so the skin is installed to the local repository before the site phase resolves it as a dependency. --- pom.xml | 2 -- src/site/site.xml | 6 +++--- 2 files changed, 3 insertions(+), 5 deletions(-) diff --git a/pom.xml b/pom.xml index 1a9ac6e..617c0b7 100644 --- a/pom.xml +++ b/pom.xml @@ -67,8 +67,6 @@ 1.11.1 - 1.12.0 - diff --git a/src/site/site.xml b/src/site/site.xml index 3fac5b8..0268529 100644 --- a/src/site/site.xml +++ b/src/site/site.xml @@ -8,9 +8,9 @@ name="${project.name}"> - org.apache.maven.skins - maven-fluido-skin - ${maven-fluido-skin.version} + ${project.groupId} + ${project.artifactId} + ${project.version} -- 2.39.5