Skip to content

Commit 33c2223

Browse files
authored
Fix broken reference links in site.xml for Maven 4.x (#11617)
The Reference menu links were using incorrect paths (impl/ and compat/) instead of the deployed site structure (maven-impl-modules/ and maven-compat-modules/), causing 404 errors on the production site. Fixed URLs: - Lifecycles: ./maven-impl-modules/maven-core/lifecycles.html - Plugin Bindings: ./maven-impl-modules/maven-core/default-bindings.html - Artifact Handlers: ./maven-impl-modules/maven-core/artifact-handlers.html - CLI options: ./maven-compat-modules/maven-embedder/cli.html - Super POM: ./maven-compat-modules/maven-model-builder/super-pom.html
1 parent f97bac3 commit 33c2223

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

src/site/site.xml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -59,11 +59,11 @@ under the License.
5959
</menu>
6060

6161
<menu inherit="bottom" name="Reference">
62-
<item name="Lifecycles" href="./impl/maven-core/lifecycles.html"/>
63-
<item name="Plugin Bindings to Default Lifecycle" href="./impl/maven-core/default-bindings.html"/>
64-
<item name="Artifact Handlers" href="./impl/maven-core/artifact-handlers.html"/>
65-
<item name="CLI options" href="./compat/maven-embedder/cli.html"/>
66-
<item name="Super POM" href="./compat/maven-model-builder/super-pom.html"/>
62+
<item name="Lifecycles" href="./maven-impl-modules/maven-core/lifecycles.html"/>
63+
<item name="Plugin Bindings to Default Lifecycle" href="./maven-impl-modules/maven-core/default-bindings.html"/>
64+
<item name="Artifact Handlers" href="./maven-impl-modules/maven-core/artifact-handlers.html"/>
65+
<item name="CLI options" href="./maven-compat-modules/maven-embedder/cli.html"/>
66+
<item name="Super POM" href="./maven-compat-modules/maven-model-builder/super-pom.html"/>
6767
</menu>
6868

6969
<menu inherit="bottom" name="Development">

0 commit comments

Comments
 (0)