This is an automated email from the ASF dual-hosted git repository.

mbuenger pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/maven-site.git


The following commit(s) were added to refs/heads/master by this push:
     new 7facf0ee Fix link on pom page (#1488)
7facf0ee is described below

commit 7facf0ee4258dc186e4184681a3d357c387c497d
Author: Matthias Bünger <[email protected]>
AuthorDate: Fri Dec 12 20:25:04 2025 +0100

    Fix link on pom page (#1488)
    
    closes #1486
---
 content/markdown/pom.md | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/content/markdown/pom.md b/content/markdown/pom.md
index 59011899..50e4c3a4 100644
--- a/content/markdown/pom.md
+++ b/content/markdown/pom.md
@@ -1355,7 +1355,7 @@ Report sets configure execution of a report plugin's 
goals.
 Does this sound familiar - deja-vu?
 The same thing was said about build's `execution` element with one difference: 
you cannot bind a report to another phase. Sorry.
 
-For example, suppose you wanted to configure the `javadoc:javadoc` goal to 
link to "[http://java.sun.com/j2se/1.5.0/docs/api/]";, but only the `javadoc` 
goal (not the goal `maven-javadoc-plugin:jar`).
+For example, suppose you wanted to configure the `javadoc:javadoc` goal to 
link to 
"[https://docs.oracle.com/javase/1.5.0/docs/api/](https://docs.oracle.com/javase/1.5.0/docs/api/)",
 but only the `javadoc` goal (not the goal `maven-javadoc-plugin:jar`).
 We would also like this configuration passed to its children, and set 
`inherited` to true.
 The `reportSet` would resemble the following:
 
@@ -1375,7 +1375,7 @@ The `reportSet` would resemble the following:
             <inherited>true</inherited>
             <configuration>
               <links>
-                <link>http://java.sun.com/j2se/1.5.0/docs/api/</link>
+                <link>https://docs.oracle.com/javase/1.5.0/docs/api/</link>
               </links>
             </configuration>
           </reportSet>

Reply via email to