You are viewing a plain text version of this content. The canonical link for it is here.
Posted to site-commits@maven.apache.org by hb...@apache.org on 2020/01/18 21:04:53 UTC

svn commit: r1872964 [20/20] - in /maven/website/components/plugins-archives/maven-remote-resources-plugin-LATEST: ./ apidocs/ apidocs/org/apache/maven/plugin/resources/remote/ apidocs/org/apache/maven/plugin/resources/remote/class-use/ apidocs/org/apa...

Modified: maven/website/components/plugins-archives/maven-remote-resources-plugin-LATEST/xref/org/apache/maven/plugin/resources/remote/RemoteResourcesBundle.html
==============================================================================
--- maven/website/components/plugins-archives/maven-remote-resources-plugin-LATEST/xref/org/apache/maven/plugin/resources/remote/RemoteResourcesBundle.html (original)
+++ maven/website/components/plugins-archives/maven-remote-resources-plugin-LATEST/xref/org/apache/maven/plugin/resources/remote/RemoteResourcesBundle.html Sat Jan 18 21:04:51 2020
@@ -141,6 +141,6 @@
 <a class="jxr_linenumber" name="L133" href="#L133">133</a> }
 </pre>
 <hr/>
-<div id="footer">Copyright &#169; 2002&#x2013;2018 <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.</div>
+<div id="footer">Copyright &#169; 2002&#x2013;2020 <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.</div>
 </body>
 </html>
\ No newline at end of file

Modified: maven/website/components/plugins-archives/maven-remote-resources-plugin-LATEST/xref/org/apache/maven/plugin/resources/remote/RemoteResourcesClassLoader.html
==============================================================================
--- maven/website/components/plugins-archives/maven-remote-resources-plugin-LATEST/xref/org/apache/maven/plugin/resources/remote/RemoteResourcesClassLoader.html (original)
+++ maven/website/components/plugins-archives/maven-remote-resources-plugin-LATEST/xref/org/apache/maven/plugin/resources/remote/RemoteResourcesClassLoader.html Sat Jan 18 21:04:51 2020
@@ -41,28 +41,30 @@
 <a class="jxr_linenumber" name="L33" href="#L33">33</a>          <strong class="jxr_keyword">super</strong>( <strong class="jxr_keyword">new</strong> URL[]{} , parent );
 <a class="jxr_linenumber" name="L34" href="#L34">34</a>      }
 <a class="jxr_linenumber" name="L35" href="#L35">35</a>  
-<a class="jxr_linenumber" name="L36" href="#L36">36</a>      <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> addURL( URL url )
-<a class="jxr_linenumber" name="L37" href="#L37">37</a>      {
-<a class="jxr_linenumber" name="L38" href="#L38">38</a>          <strong class="jxr_keyword">super</strong>.addURL( url );
-<a class="jxr_linenumber" name="L39" href="#L39">39</a>      }
-<a class="jxr_linenumber" name="L40" href="#L40">40</a>  
-<a class="jxr_linenumber" name="L41" href="#L41">41</a>      <em class="jxr_comment">// don't check the parents for the resources.   Just check the jars</em>
-<a class="jxr_linenumber" name="L42" href="#L42">42</a>      <em class="jxr_comment">// that we have provided.   Thus, we don't pull junk from the</em>
-<a class="jxr_linenumber" name="L43" href="#L43">43</a>      <em class="jxr_comment">// system classpath jars and stuff instead of the jars</em>
-<a class="jxr_linenumber" name="L44" href="#L44">44</a>      <em class="jxr_comment">// we specifically provided</em>
-<a class="jxr_linenumber" name="L45" href="#L45">45</a>      <strong class="jxr_keyword">public</strong> URL getResource( String name ) 
-<a class="jxr_linenumber" name="L46" href="#L46">46</a>      {
-<a class="jxr_linenumber" name="L47" href="#L47">47</a>          URL url = findResource( name );
-<a class="jxr_linenumber" name="L48" href="#L48">48</a>          <strong class="jxr_keyword">if</strong> ( url == <strong class="jxr_keyword">null</strong> )
-<a class="jxr_linenumber" name="L49" href="#L49">49</a>          {
-<a class="jxr_linenumber" name="L50" href="#L50">50</a>              url = <strong class="jxr_keyword">super</strong>.getResource( name );
-<a class="jxr_linenumber" name="L51" href="#L51">51</a>          }
-<a class="jxr_linenumber" name="L52" href="#L52">52</a>          <strong class="jxr_keyword">return</strong> url;
-<a class="jxr_linenumber" name="L53" href="#L53">53</a>      }
-<a class="jxr_linenumber" name="L54" href="#L54">54</a>  
-<a class="jxr_linenumber" name="L55" href="#L55">55</a>  }
+<a class="jxr_linenumber" name="L36" href="#L36">36</a>      @Override
+<a class="jxr_linenumber" name="L37" href="#L37">37</a>      <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> addURL( URL url )
+<a class="jxr_linenumber" name="L38" href="#L38">38</a>      {
+<a class="jxr_linenumber" name="L39" href="#L39">39</a>          <strong class="jxr_keyword">super</strong>.addURL( url );
+<a class="jxr_linenumber" name="L40" href="#L40">40</a>      }
+<a class="jxr_linenumber" name="L41" href="#L41">41</a>  
+<a class="jxr_linenumber" name="L42" href="#L42">42</a>      <em class="jxr_comment">// don't check the parents for the resources.   Just check the jars</em>
+<a class="jxr_linenumber" name="L43" href="#L43">43</a>      <em class="jxr_comment">// that we have provided.   Thus, we don't pull junk from the</em>
+<a class="jxr_linenumber" name="L44" href="#L44">44</a>      <em class="jxr_comment">// system classpath jars and stuff instead of the jars</em>
+<a class="jxr_linenumber" name="L45" href="#L45">45</a>      <em class="jxr_comment">// we specifically provided</em>
+<a class="jxr_linenumber" name="L46" href="#L46">46</a>      @Override
+<a class="jxr_linenumber" name="L47" href="#L47">47</a>      <strong class="jxr_keyword">public</strong> URL getResource( String name ) 
+<a class="jxr_linenumber" name="L48" href="#L48">48</a>      {
+<a class="jxr_linenumber" name="L49" href="#L49">49</a>          URL url = findResource( name );
+<a class="jxr_linenumber" name="L50" href="#L50">50</a>          <strong class="jxr_keyword">if</strong> ( url == <strong class="jxr_keyword">null</strong> )
+<a class="jxr_linenumber" name="L51" href="#L51">51</a>          {
+<a class="jxr_linenumber" name="L52" href="#L52">52</a>              url = <strong class="jxr_keyword">super</strong>.getResource( name );
+<a class="jxr_linenumber" name="L53" href="#L53">53</a>          }
+<a class="jxr_linenumber" name="L54" href="#L54">54</a>          <strong class="jxr_keyword">return</strong> url;
+<a class="jxr_linenumber" name="L55" href="#L55">55</a>      }
+<a class="jxr_linenumber" name="L56" href="#L56">56</a>  
+<a class="jxr_linenumber" name="L57" href="#L57">57</a>  }
 </pre>
 <hr/>
-<div id="footer">Copyright &#169; 2002&#x2013;2018 <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.</div>
+<div id="footer">Copyright &#169; 2002&#x2013;2020 <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.</div>
 </body>
 </html>
\ No newline at end of file

Modified: maven/website/components/plugins-archives/maven-remote-resources-plugin-LATEST/xref/org/apache/maven/plugin/resources/remote/Supplement.html
==============================================================================
--- maven/website/components/plugins-archives/maven-remote-resources-plugin-LATEST/xref/org/apache/maven/plugin/resources/remote/Supplement.html (original)
+++ maven/website/components/plugins-archives/maven-remote-resources-plugin-LATEST/xref/org/apache/maven/plugin/resources/remote/Supplement.html Sat Jan 18 21:04:51 2020
@@ -62,6 +62,6 @@
 <a class="jxr_linenumber" name="L54" href="#L54">54</a>  }
 </pre>
 <hr/>
-<div id="footer">Copyright &#169; 2002&#x2013;2018 <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.</div>
+<div id="footer">Copyright &#169; 2002&#x2013;2020 <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.</div>
 </body>
 </html>
\ No newline at end of file

Modified: maven/website/components/plugins-archives/maven-remote-resources-plugin-LATEST/xref/org/apache/maven/plugin/resources/remote/SupplementalDataModel.html
==============================================================================
--- maven/website/components/plugins-archives/maven-remote-resources-plugin-LATEST/xref/org/apache/maven/plugin/resources/remote/SupplementalDataModel.html (original)
+++ maven/website/components/plugins-archives/maven-remote-resources-plugin-LATEST/xref/org/apache/maven/plugin/resources/remote/SupplementalDataModel.html Sat Jan 18 21:04:51 2020
@@ -111,6 +111,6 @@
 <a class="jxr_linenumber" name="L103" href="#L103">103</a> }
 </pre>
 <hr/>
-<div id="footer">Copyright &#169; 2002&#x2013;2018 <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.</div>
+<div id="footer">Copyright &#169; 2002&#x2013;2020 <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.</div>
 </body>
 </html>
\ No newline at end of file

Modified: maven/website/components/plugins-archives/maven-remote-resources-plugin-LATEST/xref/org/apache/maven/plugin/resources/remote/io/xpp3/RemoteResourcesBundleXpp3Reader.html
==============================================================================
--- maven/website/components/plugins-archives/maven-remote-resources-plugin-LATEST/xref/org/apache/maven/plugin/resources/remote/io/xpp3/RemoteResourcesBundleXpp3Reader.html (original)
+++ maven/website/components/plugins-archives/maven-remote-resources-plugin-LATEST/xref/org/apache/maven/plugin/resources/remote/io/xpp3/RemoteResourcesBundleXpp3Reader.html Sat Jan 18 21:04:51 2020
@@ -733,6 +733,6 @@
 <a class="jxr_linenumber" name="L725" href="#L725">725</a> }
 </pre>
 <hr/>
-<div id="footer">Copyright &#169; 2002&#x2013;2018 <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.</div>
+<div id="footer">Copyright &#169; 2002&#x2013;2020 <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.</div>
 </body>
 </html>
\ No newline at end of file

Modified: maven/website/components/plugins-archives/maven-remote-resources-plugin-LATEST/xref/org/apache/maven/plugin/resources/remote/io/xpp3/RemoteResourcesBundleXpp3Writer.html
==============================================================================
--- maven/website/components/plugins-archives/maven-remote-resources-plugin-LATEST/xref/org/apache/maven/plugin/resources/remote/io/xpp3/RemoteResourcesBundleXpp3Writer.html (original)
+++ maven/website/components/plugins-archives/maven-remote-resources-plugin-LATEST/xref/org/apache/maven/plugin/resources/remote/io/xpp3/RemoteResourcesBundleXpp3Writer.html Sat Jan 18 21:04:51 2020
@@ -139,6 +139,6 @@
 <a class="jxr_linenumber" name="L131" href="#L131">131</a> }
 </pre>
 <hr/>
-<div id="footer">Copyright &#169; 2002&#x2013;2018 <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.</div>
+<div id="footer">Copyright &#169; 2002&#x2013;2020 <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.</div>
 </body>
 </html>
\ No newline at end of file

Modified: maven/website/components/plugins-archives/maven-remote-resources-plugin-LATEST/xref/org/apache/maven/plugin/resources/remote/io/xpp3/SupplementalDataModelXpp3Reader.html
==============================================================================
--- maven/website/components/plugins-archives/maven-remote-resources-plugin-LATEST/xref/org/apache/maven/plugin/resources/remote/io/xpp3/SupplementalDataModelXpp3Reader.html (original)
+++ maven/website/components/plugins-archives/maven-remote-resources-plugin-LATEST/xref/org/apache/maven/plugin/resources/remote/io/xpp3/SupplementalDataModelXpp3Reader.html Sat Jan 18 21:04:51 2020
@@ -767,6 +767,6 @@
 <a class="jxr_linenumber" name="L759" href="#L759">759</a> }
 </pre>
 <hr/>
-<div id="footer">Copyright &#169; 2002&#x2013;2018 <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.</div>
+<div id="footer">Copyright &#169; 2002&#x2013;2020 <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.</div>
 </body>
 </html>
\ No newline at end of file

Modified: maven/website/components/plugins-archives/maven-remote-resources-plugin-LATEST/xref/org/apache/maven/plugin/resources/remote/io/xpp3/SupplementalDataModelXpp3Writer.html
==============================================================================
--- maven/website/components/plugins-archives/maven-remote-resources-plugin-LATEST/xref/org/apache/maven/plugin/resources/remote/io/xpp3/SupplementalDataModelXpp3Writer.html (original)
+++ maven/website/components/plugins-archives/maven-remote-resources-plugin-LATEST/xref/org/apache/maven/plugin/resources/remote/io/xpp3/SupplementalDataModelXpp3Writer.html Sat Jan 18 21:04:51 2020
@@ -154,6 +154,6 @@
 <a class="jxr_linenumber" name="L146" href="#L146">146</a> }
 </pre>
 <hr/>
-<div id="footer">Copyright &#169; 2002&#x2013;2018 <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.</div>
+<div id="footer">Copyright &#169; 2002&#x2013;2020 <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.</div>
 </body>
 </html>
\ No newline at end of file

Modified: maven/website/components/plugins-archives/maven-remote-resources-plugin-LATEST/xref/org/apache/maven/plugin/resources/remote/io/xpp3/package-frame.html
==============================================================================
--- maven/website/components/plugins-archives/maven-remote-resources-plugin-LATEST/xref/org/apache/maven/plugin/resources/remote/io/xpp3/package-frame.html (original)
+++ maven/website/components/plugins-archives/maven-remote-resources-plugin-LATEST/xref/org/apache/maven/plugin/resources/remote/io/xpp3/package-frame.html Sat Jan 18 21:04:51 2020
@@ -3,7 +3,7 @@
 <html xml:lang="en" lang="en">
 	<head>
 		<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
-		<title>Apache Maven Remote Resources Plugin 1.6.0 Reference Package org.apache.maven.plugin.resources.remote.io.xpp3</title>
+		<title>Apache Maven Remote Resources Plugin 1.7.0 Reference Package org.apache.maven.plugin.resources.remote.io.xpp3</title>
 		<link rel="stylesheet" type="text/css" href="../../../../../../../../stylesheet.css" title="style" />
 	</head>
 	<body>

Modified: maven/website/components/plugins-archives/maven-remote-resources-plugin-LATEST/xref/org/apache/maven/plugin/resources/remote/io/xpp3/package-summary.html
==============================================================================
--- maven/website/components/plugins-archives/maven-remote-resources-plugin-LATEST/xref/org/apache/maven/plugin/resources/remote/io/xpp3/package-summary.html (original)
+++ maven/website/components/plugins-archives/maven-remote-resources-plugin-LATEST/xref/org/apache/maven/plugin/resources/remote/io/xpp3/package-summary.html Sat Jan 18 21:04:51 2020
@@ -3,7 +3,7 @@
 <html xml:lang="en" lang="en">
 	<head>
 		<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
-		<title>Apache Maven Remote Resources Plugin 1.6.0 Reference Package org.apache.maven.plugin.resources.remote.io.xpp3</title>
+		<title>Apache Maven Remote Resources Plugin 1.7.0 Reference Package org.apache.maven.plugin.resources.remote.io.xpp3</title>
 		<link rel="stylesheet" type="text/css" href="../../../../../../../../stylesheet.css" title="style" />
 	</head>
 	<body>
@@ -83,7 +83,7 @@
       	</div>
 				<hr />
 		<div id="footer">
-			Copyright &#169; 2002&#x2013;2018 <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.
+			Copyright &#169; 2002&#x2013;2020 <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.
 		</div>
 	</body>
 </html>
\ No newline at end of file

Modified: maven/website/components/plugins-archives/maven-remote-resources-plugin-LATEST/xref/org/apache/maven/plugin/resources/remote/package-frame.html
==============================================================================
--- maven/website/components/plugins-archives/maven-remote-resources-plugin-LATEST/xref/org/apache/maven/plugin/resources/remote/package-frame.html (original)
+++ maven/website/components/plugins-archives/maven-remote-resources-plugin-LATEST/xref/org/apache/maven/plugin/resources/remote/package-frame.html Sat Jan 18 21:04:51 2020
@@ -3,7 +3,7 @@
 <html xml:lang="en" lang="en">
 	<head>
 		<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
-		<title>Apache Maven Remote Resources Plugin 1.6.0 Reference Package org.apache.maven.plugin.resources.remote</title>
+		<title>Apache Maven Remote Resources Plugin 1.7.0 Reference Package org.apache.maven.plugin.resources.remote</title>
 		<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="style" />
 	</head>
 	<body>

Modified: maven/website/components/plugins-archives/maven-remote-resources-plugin-LATEST/xref/org/apache/maven/plugin/resources/remote/package-summary.html
==============================================================================
--- maven/website/components/plugins-archives/maven-remote-resources-plugin-LATEST/xref/org/apache/maven/plugin/resources/remote/package-summary.html (original)
+++ maven/website/components/plugins-archives/maven-remote-resources-plugin-LATEST/xref/org/apache/maven/plugin/resources/remote/package-summary.html Sat Jan 18 21:04:51 2020
@@ -3,7 +3,7 @@
 <html xml:lang="en" lang="en">
 	<head>
 		<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
-		<title>Apache Maven Remote Resources Plugin 1.6.0 Reference Package org.apache.maven.plugin.resources.remote</title>
+		<title>Apache Maven Remote Resources Plugin 1.7.0 Reference Package org.apache.maven.plugin.resources.remote</title>
 		<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="style" />
 	</head>
 	<body>
@@ -103,7 +103,7 @@
       	</div>
 				<hr />
 		<div id="footer">
-			Copyright &#169; 2002&#x2013;2018 <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.
+			Copyright &#169; 2002&#x2013;2020 <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.
 		</div>
 	</body>
 </html>
\ No newline at end of file

Modified: maven/website/components/plugins-archives/maven-remote-resources-plugin-LATEST/xref/overview-frame.html
==============================================================================
--- maven/website/components/plugins-archives/maven-remote-resources-plugin-LATEST/xref/overview-frame.html (original)
+++ maven/website/components/plugins-archives/maven-remote-resources-plugin-LATEST/xref/overview-frame.html Sat Jan 18 21:04:51 2020
@@ -3,7 +3,7 @@
 <html xml:lang="en" lang="en">
 	<head>
 		<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
-		<title>Apache Maven Remote Resources Plugin 1.6.0 Reference</title>
+		<title>Apache Maven Remote Resources Plugin 1.7.0 Reference</title>
 		<link rel="stylesheet" type="text/css" href="stylesheet.css" title="style" />
 	</head>
 	<body>

Modified: maven/website/components/plugins-archives/maven-remote-resources-plugin-LATEST/xref/overview-summary.html
==============================================================================
--- maven/website/components/plugins-archives/maven-remote-resources-plugin-LATEST/xref/overview-summary.html (original)
+++ maven/website/components/plugins-archives/maven-remote-resources-plugin-LATEST/xref/overview-summary.html Sat Jan 18 21:04:51 2020
@@ -3,7 +3,7 @@
 <html xml:lang="en" lang="en">
 	<head>
 		<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
-		<title>Apache Maven Remote Resources Plugin 1.6.0 Reference</title>
+		<title>Apache Maven Remote Resources Plugin 1.7.0 Reference</title>
 		<link rel="stylesheet" type="text/css" href="stylesheet.css" title="style" />
 	</head>
 	<body>
@@ -24,7 +24,7 @@
 	        </ul>
       	</div>
 		
-		      	<h2>Apache Maven Remote Resources Plugin 1.6.0 Reference</h2>
+		      	<h2>Apache Maven Remote Resources Plugin 1.7.0 Reference</h2>
 
 		<table class="summary">
         	<thead>
@@ -65,7 +65,7 @@
 		
 		<hr />
 		<div id="footer">
-			Copyright &#169; 2002&#x2013;2018 <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.
+			Copyright &#169; 2002&#x2013;2020 <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.
 		</div>
 	</body>
 </html>
\ No newline at end of file