From d7d8578b1355937a1cdc601bcd189bff387a66a2 Mon Sep 17 00:00:00 2001 From: Kevin Veen-Birkenbach Date: Fri, 12 Sep 2025 16:21:23 +0200 Subject: [PATCH] fix(xwiki): correct extension.repositories format to id:type:url Changed repository definition from 'maven:xwiki-public ...' to 'xwiki-public:maven:...' so that the XWiki Extension Manager can correctly register Maven repositories. This resolves the 'Unsupported repository type [central]' error and allows OIDC extension installation. Details: https://chatgpt.com/share/68c42c4f-fda4-800f-a003-c16bcc9bd2a3 --- roles/web-app-xwiki/templates/xwiki.properties.j2 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/roles/web-app-xwiki/templates/xwiki.properties.j2 b/roles/web-app-xwiki/templates/xwiki.properties.j2 index 356a6d4e..d2204c34 100644 --- a/roles/web-app-xwiki/templates/xwiki.properties.j2 +++ b/roles/web-app-xwiki/templates/xwiki.properties.j2 @@ -30,5 +30,5 @@ distribution.defaultUI=org.xwiki.platform:xwiki-platform-distribution-flavor-mai environment.permanentDirectory=/usr/local/xwiki/data # Make sure Extension Manager can fetch artifacts -extension.repositories=maven:xwiki-public https://nexus.xwiki.org/nexus/content/groups/public/,\ -maven:central https://repo1.maven.org/maven2/ \ No newline at end of file +extension.repositories=xwiki-public:maven:https://nexus.xwiki.org/nexus/content/groups/public/ +extension.repositories=central:maven:https://repo1.maven.org/maven2/ \ No newline at end of file