This is an automated email from the ASF dual-hosted git repository. kwin pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/maven.git
The following commit(s) were added to refs/heads/master by this push: new 81ca649a2e [MNG-8620] Fix links in SVG 81ca649a2e is described below commit 81ca649a2e62b2c9380e4563bea42cecfe0a0d31 Author: Konrad Windszus <k...@apache.org> AuthorDate: Sat Mar 8 15:06:19 2025 +0100 [MNG-8620] Fix links in SVG Assign correct link prefixes for impl and compat --- src/graph/ReactorGraph.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/graph/ReactorGraph.java b/src/graph/ReactorGraph.java index 817359b9ca..34f03be755 100755 --- a/src/graph/ReactorGraph.java +++ b/src/graph/ReactorGraph.java @@ -195,8 +195,8 @@ private static MutableGraph generateHighLevelGraph(MutableGraph clusteredGraph, String prefix = null; switch (clusterName) { case "MavenAPI": prefix = "../api/"; break; - case "MavenImplementation": - case "MavenCompatibility": prefix = "../"; break; + case "MavenImplementation": prefix = "../maven-impl-modules/"; break; + case "MavenCompatibility": prefix = "../maven-compat-modules/"; break; case "MavenResolver": prefix = "https://maven.apache.org/resolver/"; break; } if (prefix != null) {