Author: svn-site-role
Date: Fri Dec 12 19:27:24 2025
New Revision: 1930475

Log:
Site checkin for project Apache Maven Site

Modified:
   
maven/website/content/guides/introduction/introduction-to-dependency-mechanism.html
   maven/website/content/pom.html

Modified: 
maven/website/content/guides/introduction/introduction-to-dependency-mechanism.html
==============================================================================
--- 
maven/website/content/guides/introduction/introduction-to-dependency-mechanism.html
 Fri Dec 12 19:01:34 2025        (r1930474)
+++ 
maven/website/content/guides/introduction/introduction-to-dependency-mechanism.html
 Fri Dec 12 19:27:24 2025        (r1930475)
@@ -915,7 +915,6 @@ If the cell is empty, it means the depen
 
 </code></pre></section></section><section><a id="System_Dependencies"></a>
 <h2>System Dependencies</h2>
-<p><code>Important note: Using this scope is not recommended!</code></p>
 <p>In rare occurrences it's necessary to use a dependency which is not 
available in any repository, but only on local machine; For example, a jar of 
some commercial application.
 To include such a dependency in the build, the <em>system</em> scope can be 
used.
 Dependencies with the scope <em>system</em> are not looked up in the Maven 
repository system.

Modified: maven/website/content/pom.html
==============================================================================
--- maven/website/content/pom.html      Fri Dec 12 19:01:34 2025        
(r1930474)
+++ maven/website/content/pom.html      Fri Dec 12 19:27:24 2025        
(r1930475)
@@ -1493,7 +1493,7 @@ Each goal may have a separate configurat
 Report sets configure execution of a report plugin's goals.
 Does this sound familiar - deja-vu?
 The same thing was said about build's <code>execution</code> element with one 
difference: you cannot bind a report to another phase. Sorry.</p>
-<p>For example, suppose you wanted to configure the 
<code>javadoc:javadoc</code> goal to link to 
&#x201c;[http://java.sun.com/j2se/1.5.0/docs/api/]&#x201d;, but only the 
<code>javadoc</code> goal (not the goal <code>maven-javadoc-plugin:jar</code>).
+<p>For example, suppose you wanted to configure the 
<code>javadoc:javadoc</code> goal to link to &#x201c;<a 
href="https://docs.oracle.com/javase/1.5.0/docs/api/"; 
class="externalLink">https://docs.oracle.com/javase/1.5.0/docs/api/</a>&#x201d;,
 but only the <code>javadoc</code> goal (not the goal 
<code>maven-javadoc-plugin:jar</code>).
 We would also like this configuration passed to its children, and set 
<code>inherited</code> to true.
 The <code>reportSet</code> would resemble the following:</p>
 
@@ -1512,7 +1512,7 @@ The <code>reportSet</code> would resembl
             &lt;inherited&gt;true&lt;/inherited&gt;
             &lt;configuration&gt;
               &lt;links&gt;
-                
&lt;link&gt;http://java.sun.com/j2se/1.5.0/docs/api/&lt;/link&gt;
+                
&lt;link&gt;https://docs.oracle.com/javase/1.5.0/docs/api/&lt;/link&gt;
               &lt;/links&gt;
             &lt;/configuration&gt;
           &lt;/reportSet&gt;

Reply via email to