Modified:
websites/production/maven/content/plugins-archives/maven-javadoc-plugin-LATEST/usage.html
==============================================================================
---
websites/production/maven/content/plugins-archives/maven-javadoc-plugin-LATEST/usage.html
(original)
+++
websites/production/maven/content/plugins-archives/maven-javadoc-plugin-LATEST/usage.html
Sat Mar 14 00:06:30 2015
@@ -1,11 +1,11 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<!--
- | Generated by Apache Maven Doxia at 2014-09-27
+ | Generated by Apache Maven Doxia at 2015-03-14
| Rendered using Apache Maven Stylus Skin 1.5
-->
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
- <title>Apache Maven Javadoc Plugin - Usage</title>
+ <title>Apache Maven Javadoc Plugin – Usage</title>
<style type="text/css" media="all">
@import url("./css/maven-base.css");
@import url("./css/maven-theme.css");
@@ -15,7 +15,7 @@
<meta name="author" content="Vincent Siveton
Maria Odea Ching" />
<meta name="Date-Creation-yyyymmdd" content="20090911" />
- <meta name="Date-Revision-yyyymmdd" content="20140927" />
+ <meta name="Date-Revision-yyyymmdd" content="20150314" />
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<script src="http://www.google-analytics.com/urchin.js"
type="text/javascript"></script>
@@ -50,8 +50,8 @@ Maria Odea Ching" />
</div>
<div class="xright"> <a
href="http://docs.oracle.com/javase/7/docs/technotes/guides/javadoc/"
class="externalLink">Javadoc Tool</a>
- | Last Published: 2014-09-27
- | Version: 2.10.1
+ | Last Published: 2015-03-14
+ | Version: 2.10.2
</div>
<div class="clear">
<hr/>
@@ -143,7 +143,7 @@ Maria Odea Ching" />
</ul>
<h5>Project Documentation</h5>
<ul>
-
<li
class="collapsed">
+
<li class="collapsed">
<a href="project-info.html">Project Information</a>
</li>
<li class="collapsed">
@@ -165,10 +165,7 @@ Maria Odea Ching" />
<a href="../../jxr/index.html">JXR</a>
</li>
<li class="none">
- <a href="../../maven-1.x/index.html">Maven 1.x</a>
- </li>
- <li class="none">
- <a href="../../index.html">Maven 2 & 3</a>
+ <a href="../../ref/current">Maven</a>
</li>
<li class="none">
<a href="../../pom/index.html">Parent POMs</a>
@@ -177,9 +174,15 @@ Maria Odea Ching" />
<a href="../index.html">Plugins</a>
</li>
<li class="none">
+ <a href="../../plugin-testing/index.html">Plugin Testing</a>
+ </li>
+ <li class="none">
<a href="../../plugin-tools/index.html">Plugin Tools</a>
</li>
<li class="none">
+ <a href="../../apache-resource-bundles/index.html">Resource
Bundles</a>
+ </li>
+ <li class="none">
<a href="../../scm/index.html">SCM</a>
</li>
<li class="none">
@@ -219,10 +222,10 @@ Maria Odea Ching" />
<div id="bodyColumn">
<div id="contentBox">
<!-- Licensed to the Apache Software Foundation (ASF) under one
--><!-- or more contributor license agreements. See the NOTICE file --><!--
distributed with this work for additional information --><!-- regarding
copyright ownership. The ASF licenses this file --><!-- to you under the
Apache License, Version 2.0 (the --><!-- "License"); you may not use this file
except in compliance --><!-- with the License. You may obtain a copy of the
License at --><!-- --><!-- http://www.apache.org/licenses/LICENSE-2.0 --><!--
--><!-- Unless required by applicable law or agreed to in writing, --><!--
software distributed under the License is distributed on an --><!-- "AS IS"
BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY --><!-- KIND, either express or
implied. See the License for the --><!-- specific language governing
permissions and limitations --><!-- under the License. --><!-- NOTE: For help
with the syntax of this file, see: --><!--
http://maven.apache.org/doxia/references/apt-
format.html --><div class="section">
-<h2>Usage<a name="Usage"></a></h2>
+<h2><a name="Usage"></a>Usage</h2>
<p>The Javadoc Plugin generates javadocs using the Javadoc tool. The following
examples describe the basic usage of the Plugin.</p>
<div class="section">
-<h3>Generate Javadocs As Part Of Project Reports<a
name="Generate_Javadocs_As_Part_Of_Project_Reports"></a></h3>
+<h3><a name="Generate_Javadocs_As_Part_Of_Project_Reports"></a>Generate
Javadocs As Part Of Project Reports</h3>
<p>To generate javadocs as part of the site generation, you should add the
Javadoc Plugin in the <reporting> section of your pom:</p>
<div class="source">
<pre><project>
@@ -232,7 +235,7 @@ Maria Odea Ching" />
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
- <version>2.10.1</version>
+ <version>2.10.2</version>
<configuration>
...
</configuration>
@@ -241,11 +244,10 @@ Maria Odea Ching" />
...
</reporting>
...
-</project>
-</pre></div>
+</project></pre></div>
<p>When you execute <tt>mvn site</tt>, the javadocs will be generated and
included in the generated site. A link to the javadocs will be added in the
Project Reports menu.</p></div>
<div class="section">
-<h3>Generate Standalone Javadocs<a
name="Generate_Standalone_Javadocs"></a></h3>
+<h3><a name="Generate_Standalone_Javadocs"></a>Generate Standalone
Javadocs</h3>
<p>To generate standalone javadocs for the project, you could add the Javadoc
Plugin in the <build> section of your pom (if no configuration defined,
the plugin uses default values):</p>
<div class="source">
<pre><project>
@@ -255,7 +257,7 @@ Maria Odea Ching" />
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
- <version>2.10.1</version>
+ <version>2.10.2</version>
<configuration>
...
</configuration>
@@ -264,8 +266,7 @@ Maria Odea Ching" />
...
</build>
...
-</project>
-</pre></div>
+</project></pre></div>
<p>And execute any of the following commands:</p>
<div class="source">
<pre>mvn javadoc:javadoc
@@ -275,11 +276,10 @@ mvn javadoc:aggregate-jar
mvn javadoc:test-javadoc
mvn javadoc:test-jar
mvn javadoc:test-aggregate
-mvn javadoc:test-aggregate-jar
-</pre></div>
+mvn javadoc:test-aggregate-jar</pre></div>
<p>For all <tt>jar</tt> goals, the javadocs are first generated and then
packaged into a jar file.</p></div>
<div class="section">
-<h3>Javadoc Configuration<a name="Javadoc_Configuration"></a></h3>
+<h3><a name="Javadoc_Configuration"></a>Javadoc Configuration</h3>
<p>The Javadoc Plugin supports a large number of configuration parameters.
Each configuration parameter turns into a tag name.</p>
<p>Please refer to the <a href="./javadoc-mojo.html">Javadoc Plugin
Documentation</a> for a listing of these parameters. Most of these parameters
are passed directly to the Javadoc tool itself.</p>
<p><b>IMPORTANT NOTE</b>: configuring the Javadoc plugin in the
<reporting/> or <build/> elements in the pom have <b>NOT</b> the
same behavior as described in the <a class="externalLink"
href="http://maven.apache.org/guides/mini/guide-configuring-plugins.html#Using_the_reporting_Tag_VS_build_Tag">Guide
to Configuring Plug-ins</a>.</p>
@@ -291,7 +291,7 @@ mvn javadoc:test-aggregate-jar
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
- <version>2.10.1</version>
+ <version>2.10.2</version>
<configuration>
<show>private</show>
<nohelp>true</nohelp>
@@ -305,7 +305,7 @@ mvn javadoc:test-aggregate-jar
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
- <version>2.10.1</version>
+ <version>2.10.2</version>
<configuration>
<stylesheetfile>${basedir}/src/main/javadoc/stylesheet.css</stylesheetfile>
<show>public</show>
@@ -313,8 +313,7 @@ mvn javadoc:test-aggregate-jar
</plugin>
</plugins>
</reporting>
- </build>
-</pre></div>
+ </build></pre></div>
<dl>
<dt><tt>mvn site</tt></dt>
<dd>It will generate the Javadoc for public members (defined in
<reporting/>) using the given stylesheet (defined in <reporting/>),
and with an help page (default value for <a
href="./javadoc-mojo.html#nohelp">nohelp</a> is true).</dd>
@@ -327,7 +326,7 @@ mvn javadoc:test-aggregate-jar
</div>
<div id="footer">
<div class="xright">
- © 2004-2014
+ © 2004-2015
The Apache Software Foundation
- <a
href="http://maven.apache.org/privacy-policy.html">Privacy Policy</a>.
Modified:
websites/production/maven/content/plugins-archives/maven-javadoc-plugin-LATEST/xref-test/index.html
==============================================================================
---
websites/production/maven/content/plugins-archives/maven-javadoc-plugin-LATEST/xref-test/index.html
(original)
+++
websites/production/maven/content/plugins-archives/maven-javadoc-plugin-LATEST/xref-test/index.html
Sat Mar 14 00:06:30 2015
@@ -4,7 +4,7 @@
<!-- this is a JXR report set -->
<head>
<meta http-equiv="content-type" content="text/html;
charset=UTF-8" />
- <title>Apache Maven Javadoc Plugin 2.10.1 Reference</title>
+ <title>Apache Maven Javadoc Plugin 2.10.2 Reference</title>
</head>
<frameset cols="20%,80%">
<frameset rows="30%,70%">
Modified:
websites/production/maven/content/plugins-archives/maven-javadoc-plugin-LATEST/xref-test/org/apache/maven/plugin/javadoc/AbstractFixJavadocMojoTest.html
==============================================================================
---
websites/production/maven/content/plugins-archives/maven-javadoc-plugin-LATEST/xref-test/org/apache/maven/plugin/javadoc/AbstractFixJavadocMojoTest.html
(original)
+++
websites/production/maven/content/plugins-archives/maven-javadoc-plugin-LATEST/xref-test/org/apache/maven/plugin/javadoc/AbstractFixJavadocMojoTest.html
Sat Mar 14 00:06:30 2015
@@ -215,6 +215,6 @@
<a class="jxr_linenumber" name="L207" href="#L207">207</a> }
</pre>
<hr/>
-<div id="footer">Copyright © 2004–2014 <a
href="http://www.apache.org/">The Apache Software Foundation</a>. All rights
reserved.</div>
+<div id="footer">Copyright © 2004–2015 <a
href="http://www.apache.org/">The Apache Software Foundation</a>. All rights
reserved.</div>
</body>
</html>
\ No newline at end of file
Modified:
websites/production/maven/content/plugins-archives/maven-javadoc-plugin-LATEST/xref-test/org/apache/maven/plugin/javadoc/FixJavadocMojoTest.html
==============================================================================
---
websites/production/maven/content/plugins-archives/maven-javadoc-plugin-LATEST/xref-test/org/apache/maven/plugin/javadoc/FixJavadocMojoTest.html
(original)
+++
websites/production/maven/content/plugins-archives/maven-javadoc-plugin-LATEST/xref-test/org/apache/maven/plugin/javadoc/FixJavadocMojoTest.html
Sat Mar 14 00:06:30 2015
@@ -739,6 +739,6 @@
<a class="jxr_linenumber" name="L731" href="#L731">731</a> }
</pre>
<hr/>
-<div id="footer">Copyright © 2004–2014 <a
href="http://www.apache.org/">The Apache Software Foundation</a>. All rights
reserved.</div>
+<div id="footer">Copyright © 2004–2015 <a
href="http://www.apache.org/">The Apache Software Foundation</a>. All rights
reserved.</div>
</body>
</html>
\ No newline at end of file
Modified:
websites/production/maven/content/plugins-archives/maven-javadoc-plugin-LATEST/xref-test/org/apache/maven/plugin/javadoc/JavadocJarTest.html
==============================================================================
---
websites/production/maven/content/plugins-archives/maven-javadoc-plugin-LATEST/xref-test/org/apache/maven/plugin/javadoc/JavadocJarTest.html
(original)
+++
websites/production/maven/content/plugins-archives/maven-javadoc-plugin-LATEST/xref-test/org/apache/maven/plugin/javadoc/JavadocJarTest.html
Sat Mar 14 00:06:30 2015
@@ -132,6 +132,6 @@
<a class="jxr_linenumber" name="L124" href="#L124">124</a> }
</pre>
<hr/>
-<div id="footer">Copyright © 2004–2014 <a
href="http://www.apache.org/">The Apache Software Foundation</a>. All rights
reserved.</div>
+<div id="footer">Copyright © 2004–2015 <a
href="http://www.apache.org/">The Apache Software Foundation</a>. All rights
reserved.</div>
</body>
</html>
\ No newline at end of file
Modified:
websites/production/maven/content/plugins-archives/maven-javadoc-plugin-LATEST/xref-test/org/apache/maven/plugin/javadoc/JavadocReportTest.html
==============================================================================
---
websites/production/maven/content/plugins-archives/maven-javadoc-plugin-LATEST/xref-test/org/apache/maven/plugin/javadoc/JavadocReportTest.html
(original)
+++
websites/production/maven/content/plugins-archives/maven-javadoc-plugin-LATEST/xref-test/org/apache/maven/plugin/javadoc/JavadocReportTest.html
Sat Mar 14 00:06:30 2015
@@ -1193,6 +1193,6 @@
<a class="jxr_linenumber" name="L1185" href="#L1185">1185</a> }
</pre>
<hr/>
-<div id="footer">Copyright © 2004–2014 <a
href="http://www.apache.org/">The Apache Software Foundation</a>. All rights
reserved.</div>
+<div id="footer">Copyright © 2004–2015 <a
href="http://www.apache.org/">The Apache Software Foundation</a>. All rights
reserved.</div>
</body>
</html>
\ No newline at end of file
Modified:
websites/production/maven/content/plugins-archives/maven-javadoc-plugin-LATEST/xref-test/org/apache/maven/plugin/javadoc/JavadocUtilTest.html
==============================================================================
---
websites/production/maven/content/plugins-archives/maven-javadoc-plugin-LATEST/xref-test/org/apache/maven/plugin/javadoc/JavadocUtilTest.html
(original)
+++
websites/production/maven/content/plugins-archives/maven-javadoc-plugin-LATEST/xref-test/org/apache/maven/plugin/javadoc/JavadocUtilTest.html
Sat Mar 14 00:06:30 2015
@@ -606,6 +606,6 @@
<a class="jxr_linenumber" name="L598" href="#L598">598</a> }
</pre>
<hr/>
-<div id="footer">Copyright © 2004–2014 <a
href="http://www.apache.org/">The Apache Software Foundation</a>. All rights
reserved.</div>
+<div id="footer">Copyright © 2004–2015 <a
href="http://www.apache.org/">The Apache Software Foundation</a>. All rights
reserved.</div>
</body>
</html>
\ No newline at end of file
Modified:
websites/production/maven/content/plugins-archives/maven-javadoc-plugin-LATEST/xref-test/org/apache/maven/plugin/javadoc/ProxyServer.html
==============================================================================
---
websites/production/maven/content/plugins-archives/maven-javadoc-plugin-LATEST/xref-test/org/apache/maven/plugin/javadoc/ProxyServer.html
(original)
+++
websites/production/maven/content/plugins-archives/maven-javadoc-plugin-LATEST/xref-test/org/apache/maven/plugin/javadoc/ProxyServer.html
Sat Mar 14 00:06:30 2015
@@ -250,6 +250,6 @@
<a class="jxr_linenumber" name="L242" href="#L242">242</a> }
</pre>
<hr/>
-<div id="footer">Copyright © 2004–2014 <a
href="http://www.apache.org/">The Apache Software Foundation</a>. All rights
reserved.</div>
+<div id="footer">Copyright © 2004–2015 <a
href="http://www.apache.org/">The Apache Software Foundation</a>. All rights
reserved.</div>
</body>
</html>
\ No newline at end of file
Modified:
websites/production/maven/content/plugins-archives/maven-javadoc-plugin-LATEST/xref-test/org/apache/maven/plugin/javadoc/TestJavadocReportTest.html
==============================================================================
---
websites/production/maven/content/plugins-archives/maven-javadoc-plugin-LATEST/xref-test/org/apache/maven/plugin/javadoc/TestJavadocReportTest.html
(original)
+++
websites/production/maven/content/plugins-archives/maven-javadoc-plugin-LATEST/xref-test/org/apache/maven/plugin/javadoc/TestJavadocReportTest.html
Sat Mar 14 00:06:30 2015
@@ -59,6 +59,6 @@
<a class="jxr_linenumber" name="L51" href="#L51">51</a> }
</pre>
<hr/>
-<div id="footer">Copyright © 2004–2014 <a
href="http://www.apache.org/">The Apache Software Foundation</a>. All rights
reserved.</div>
+<div id="footer">Copyright © 2004–2015 <a
href="http://www.apache.org/">The Apache Software Foundation</a>. All rights
reserved.</div>
</body>
</html>
\ No newline at end of file
Modified:
websites/production/maven/content/plugins-archives/maven-javadoc-plugin-LATEST/xref-test/org/apache/maven/plugin/javadoc/package-frame.html
==============================================================================
---
websites/production/maven/content/plugins-archives/maven-javadoc-plugin-LATEST/xref-test/org/apache/maven/plugin/javadoc/package-frame.html
(original)
+++
websites/production/maven/content/plugins-archives/maven-javadoc-plugin-LATEST/xref-test/org/apache/maven/plugin/javadoc/package-frame.html
Sat Mar 14 00:06:30 2015
@@ -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 Javadoc Plugin 2.10.1 Reference Package
org.apache.maven.plugin.javadoc</title>
+ <title>Apache Maven Javadoc Plugin 2.10.2 Reference Package
org.apache.maven.plugin.javadoc</title>
<link rel="stylesheet" type="text/css"
href="../../../../../stylesheet.css" title="style" />
</head>
<body>
Modified:
websites/production/maven/content/plugins-archives/maven-javadoc-plugin-LATEST/xref-test/org/apache/maven/plugin/javadoc/package-summary.html
==============================================================================
---
websites/production/maven/content/plugins-archives/maven-javadoc-plugin-LATEST/xref-test/org/apache/maven/plugin/javadoc/package-summary.html
(original)
+++
websites/production/maven/content/plugins-archives/maven-javadoc-plugin-LATEST/xref-test/org/apache/maven/plugin/javadoc/package-summary.html
Sat Mar 14 00:06:30 2015
@@ -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 Javadoc Plugin 2.10.1 Reference Package
org.apache.maven.plugin.javadoc</title>
+ <title>Apache Maven Javadoc Plugin 2.10.2 Reference Package
org.apache.maven.plugin.javadoc</title>
<link rel="stylesheet" type="text/css"
href="../../../../../stylesheet.css" title="style" />
</head>
<body>
@@ -103,7 +103,7 @@
</div>
<hr />
<div id="footer">
- Copyright © 2004–2014 <a
href="http://www.apache.org/">The Apache Software Foundation</a>. All rights
reserved.
+ Copyright © 2004–2015 <a
href="http://www.apache.org/">The Apache Software Foundation</a>. All rights
reserved.
</div>
</body>
</html>
\ No newline at end of file
Modified:
websites/production/maven/content/plugins-archives/maven-javadoc-plugin-LATEST/xref-test/org/apache/maven/plugin/javadoc/stubs/AggregateProject1TestMavenProjectStub.html
==============================================================================
---
websites/production/maven/content/plugins-archives/maven-javadoc-plugin-LATEST/xref-test/org/apache/maven/plugin/javadoc/stubs/AggregateProject1TestMavenProjectStub.html
(original)
+++
websites/production/maven/content/plugins-archives/maven-javadoc-plugin-LATEST/xref-test/org/apache/maven/plugin/javadoc/stubs/AggregateProject1TestMavenProjectStub.html
Sat Mar 14 00:06:30 2015
@@ -80,6 +80,6 @@
<a class="jxr_linenumber" name="L72" href="#L72">72</a> }
</pre>
<hr/>
-<div id="footer">Copyright © 2004–2014 <a
href="http://www.apache.org/">The Apache Software Foundation</a>. All rights
reserved.</div>
+<div id="footer">Copyright © 2004–2015 <a
href="http://www.apache.org/">The Apache Software Foundation</a>. All rights
reserved.</div>
</body>
</html>
\ No newline at end of file
Modified:
websites/production/maven/content/plugins-archives/maven-javadoc-plugin-LATEST/xref-test/org/apache/maven/plugin/javadoc/stubs/AggregateProject2TestMavenProjectStub.html
==============================================================================
---
websites/production/maven/content/plugins-archives/maven-javadoc-plugin-LATEST/xref-test/org/apache/maven/plugin/javadoc/stubs/AggregateProject2TestMavenProjectStub.html
(original)
+++
websites/production/maven/content/plugins-archives/maven-javadoc-plugin-LATEST/xref-test/org/apache/maven/plugin/javadoc/stubs/AggregateProject2TestMavenProjectStub.html
Sat Mar 14 00:06:30 2015
@@ -80,6 +80,6 @@
<a class="jxr_linenumber" name="L72" href="#L72">72</a> }
</pre>
<hr/>
-<div id="footer">Copyright © 2004–2014 <a
href="http://www.apache.org/">The Apache Software Foundation</a>. All rights
reserved.</div>
+<div id="footer">Copyright © 2004–2015 <a
href="http://www.apache.org/">The Apache Software Foundation</a>. All rights
reserved.</div>
</body>
</html>
\ No newline at end of file
Modified:
websites/production/maven/content/plugins-archives/maven-javadoc-plugin-LATEST/xref-test/org/apache/maven/plugin/javadoc/stubs/AggregateResourcesProject1TestMavenProjectStub.html
==============================================================================
---
websites/production/maven/content/plugins-archives/maven-javadoc-plugin-LATEST/xref-test/org/apache/maven/plugin/javadoc/stubs/AggregateResourcesProject1TestMavenProjectStub.html
(original)
+++
websites/production/maven/content/plugins-archives/maven-javadoc-plugin-LATEST/xref-test/org/apache/maven/plugin/javadoc/stubs/AggregateResourcesProject1TestMavenProjectStub.html
Sat Mar 14 00:06:30 2015
@@ -85,6 +85,6 @@
<a class="jxr_linenumber" name="L77" href="#L77">77</a> }
</pre>
<hr/>
-<div id="footer">Copyright © 2004–2014 <a
href="http://www.apache.org/">The Apache Software Foundation</a>. All rights
reserved.</div>
+<div id="footer">Copyright © 2004–2015 <a
href="http://www.apache.org/">The Apache Software Foundation</a>. All rights
reserved.</div>
</body>
</html>
\ No newline at end of file
Modified:
websites/production/maven/content/plugins-archives/maven-javadoc-plugin-LATEST/xref-test/org/apache/maven/plugin/javadoc/stubs/AggregateResourcesProject2TestMavenProjectStub.html
==============================================================================
---
websites/production/maven/content/plugins-archives/maven-javadoc-plugin-LATEST/xref-test/org/apache/maven/plugin/javadoc/stubs/AggregateResourcesProject2TestMavenProjectStub.html
(original)
+++
websites/production/maven/content/plugins-archives/maven-javadoc-plugin-LATEST/xref-test/org/apache/maven/plugin/javadoc/stubs/AggregateResourcesProject2TestMavenProjectStub.html
Sat Mar 14 00:06:30 2015
@@ -85,6 +85,6 @@
<a class="jxr_linenumber" name="L77" href="#L77">77</a> }
</pre>
<hr/>
-<div id="footer">Copyright © 2004–2014 <a
href="http://www.apache.org/">The Apache Software Foundation</a>. All rights
reserved.</div>
+<div id="footer">Copyright © 2004–2015 <a
href="http://www.apache.org/">The Apache Software Foundation</a>. All rights
reserved.</div>
</body>
</html>
\ No newline at end of file
Modified:
websites/production/maven/content/plugins-archives/maven-javadoc-plugin-LATEST/xref-test/org/apache/maven/plugin/javadoc/stubs/AggregateResourcesTestMavenProjectStub.html
==============================================================================
---
websites/production/maven/content/plugins-archives/maven-javadoc-plugin-LATEST/xref-test/org/apache/maven/plugin/javadoc/stubs/AggregateResourcesTestMavenProjectStub.html
(original)
+++
websites/production/maven/content/plugins-archives/maven-javadoc-plugin-LATEST/xref-test/org/apache/maven/plugin/javadoc/stubs/AggregateResourcesTestMavenProjectStub.html
Sat Mar 14 00:06:30 2015
@@ -79,6 +79,6 @@
<a class="jxr_linenumber" name="L71" href="#L71">71</a> }
</pre>
<hr/>
-<div id="footer">Copyright © 2004–2014 <a
href="http://www.apache.org/">The Apache Software Foundation</a>. All rights
reserved.</div>
+<div id="footer">Copyright © 2004–2015 <a
href="http://www.apache.org/">The Apache Software Foundation</a>. All rights
reserved.</div>
</body>
</html>
\ No newline at end of file
Modified:
websites/production/maven/content/plugins-archives/maven-javadoc-plugin-LATEST/xref-test/org/apache/maven/plugin/javadoc/stubs/AggregateTestMavenProjectStub.html
==============================================================================
---
websites/production/maven/content/plugins-archives/maven-javadoc-plugin-LATEST/xref-test/org/apache/maven/plugin/javadoc/stubs/AggregateTestMavenProjectStub.html
(original)
+++
websites/production/maven/content/plugins-archives/maven-javadoc-plugin-LATEST/xref-test/org/apache/maven/plugin/javadoc/stubs/AggregateTestMavenProjectStub.html
Sat Mar 14 00:06:30 2015
@@ -91,6 +91,6 @@
<a class="jxr_linenumber" name="L83" href="#L83">83</a> }
</pre>
<hr/>
-<div id="footer">Copyright © 2004–2014 <a
href="http://www.apache.org/">The Apache Software Foundation</a>. All rights
reserved.</div>
+<div id="footer">Copyright © 2004–2015 <a
href="http://www.apache.org/">The Apache Software Foundation</a>. All rights
reserved.</div>
</body>
</html>
\ No newline at end of file
Modified:
websites/production/maven/content/plugins-archives/maven-javadoc-plugin-LATEST/xref-test/org/apache/maven/plugin/javadoc/stubs/CustomConfigurationMavenProjectStub.html
==============================================================================
---
websites/production/maven/content/plugins-archives/maven-javadoc-plugin-LATEST/xref-test/org/apache/maven/plugin/javadoc/stubs/CustomConfigurationMavenProjectStub.html
(original)
+++
websites/production/maven/content/plugins-archives/maven-javadoc-plugin-LATEST/xref-test/org/apache/maven/plugin/javadoc/stubs/CustomConfigurationMavenProjectStub.html
Sat Mar 14 00:06:30 2015
@@ -111,6 +111,6 @@
<a class="jxr_linenumber" name="L103" href="#L103">103</a> }
</pre>
<hr/>
-<div id="footer">Copyright © 2004–2014 <a
href="http://www.apache.org/">The Apache Software Foundation</a>. All rights
reserved.</div>
+<div id="footer">Copyright © 2004–2015 <a
href="http://www.apache.org/">The Apache Software Foundation</a>. All rights
reserved.</div>
</body>
</html>
\ No newline at end of file
Modified:
websites/production/maven/content/plugins-archives/maven-javadoc-plugin-LATEST/xref-test/org/apache/maven/plugin/javadoc/stubs/DefaultArtifactHandlerStub.html
==============================================================================
---
websites/production/maven/content/plugins-archives/maven-javadoc-plugin-LATEST/xref-test/org/apache/maven/plugin/javadoc/stubs/DefaultArtifactHandlerStub.html
(original)
+++
websites/production/maven/content/plugins-archives/maven-javadoc-plugin-LATEST/xref-test/org/apache/maven/plugin/javadoc/stubs/DefaultArtifactHandlerStub.html
Sat Mar 14 00:06:30 2015
@@ -59,6 +59,6 @@
<a class="jxr_linenumber" name="L51" href="#L51">51</a> }
</pre>
<hr/>
-<div id="footer">Copyright © 2004–2014 <a
href="http://www.apache.org/">The Apache Software Foundation</a>. All rights
reserved.</div>
+<div id="footer">Copyright © 2004–2015 <a
href="http://www.apache.org/">The Apache Software Foundation</a>. All rights
reserved.</div>
</body>
</html>
\ No newline at end of file
Modified:
websites/production/maven/content/plugins-archives/maven-javadoc-plugin-LATEST/xref-test/org/apache/maven/plugin/javadoc/stubs/DefaultConfigurationMavenProjectStub.html
==============================================================================
---
websites/production/maven/content/plugins-archives/maven-javadoc-plugin-LATEST/xref-test/org/apache/maven/plugin/javadoc/stubs/DefaultConfigurationMavenProjectStub.html
(original)
+++
websites/production/maven/content/plugins-archives/maven-javadoc-plugin-LATEST/xref-test/org/apache/maven/plugin/javadoc/stubs/DefaultConfigurationMavenProjectStub.html
Sat Mar 14 00:06:30 2015
@@ -89,6 +89,6 @@
<a class="jxr_linenumber" name="L81" href="#L81">81</a> }
</pre>
<hr/>
-<div id="footer">Copyright © 2004–2014 <a
href="http://www.apache.org/">The Apache Software Foundation</a>. All rights
reserved.</div>
+<div id="footer">Copyright © 2004–2015 <a
href="http://www.apache.org/">The Apache Software Foundation</a>. All rights
reserved.</div>
</body>
</html>
\ No newline at end of file
Modified:
websites/production/maven/content/plugins-archives/maven-javadoc-plugin-LATEST/xref-test/org/apache/maven/plugin/javadoc/stubs/DocfilesTestMavenProjectStub.html
==============================================================================
---
websites/production/maven/content/plugins-archives/maven-javadoc-plugin-LATEST/xref-test/org/apache/maven/plugin/javadoc/stubs/DocfilesTestMavenProjectStub.html
(original)
+++
websites/production/maven/content/plugins-archives/maven-javadoc-plugin-LATEST/xref-test/org/apache/maven/plugin/javadoc/stubs/DocfilesTestMavenProjectStub.html
Sat Mar 14 00:06:30 2015
@@ -90,6 +90,6 @@
<a class="jxr_linenumber" name="L82" href="#L82">82</a> }
</pre>
<hr/>
-<div id="footer">Copyright © 2004–2014 <a
href="http://www.apache.org/">The Apache Software Foundation</a>. All rights
reserved.</div>
+<div id="footer">Copyright © 2004–2015 <a
href="http://www.apache.org/">The Apache Software Foundation</a>. All rights
reserved.</div>
</body>
</html>
\ No newline at end of file
Modified:
websites/production/maven/content/plugins-archives/maven-javadoc-plugin-LATEST/xref-test/org/apache/maven/plugin/javadoc/stubs/DocfilesWithJavaTestMavenProjectStub.html
==============================================================================
---
websites/production/maven/content/plugins-archives/maven-javadoc-plugin-LATEST/xref-test/org/apache/maven/plugin/javadoc/stubs/DocfilesWithJavaTestMavenProjectStub.html
(original)
+++
websites/production/maven/content/plugins-archives/maven-javadoc-plugin-LATEST/xref-test/org/apache/maven/plugin/javadoc/stubs/DocfilesWithJavaTestMavenProjectStub.html
Sat Mar 14 00:06:30 2015
@@ -68,6 +68,6 @@
<a class="jxr_linenumber" name="L60" href="#L60">60</a> }
</pre>
<hr/>
-<div id="footer">Copyright © 2004–2014 <a
href="http://www.apache.org/">The Apache Software Foundation</a>. All rights
reserved.</div>
+<div id="footer">Copyright © 2004–2015 <a
href="http://www.apache.org/">The Apache Software Foundation</a>. All rights
reserved.</div>
</body>
</html>
\ No newline at end of file
Modified:
websites/production/maven/content/plugins-archives/maven-javadoc-plugin-LATEST/xref-test/org/apache/maven/plugin/javadoc/stubs/DocletPathTestMavenProjectStub.html
==============================================================================
---
websites/production/maven/content/plugins-archives/maven-javadoc-plugin-LATEST/xref-test/org/apache/maven/plugin/javadoc/stubs/DocletPathTestMavenProjectStub.html
(original)
+++
websites/production/maven/content/plugins-archives/maven-javadoc-plugin-LATEST/xref-test/org/apache/maven/plugin/javadoc/stubs/DocletPathTestMavenProjectStub.html
Sat Mar 14 00:06:30 2015
@@ -89,6 +89,6 @@
<a class="jxr_linenumber" name="L81" href="#L81">81</a> }
</pre>
<hr/>
-<div id="footer">Copyright © 2004–2014 <a
href="http://www.apache.org/">The Apache Software Foundation</a>. All rights
reserved.</div>
+<div id="footer">Copyright © 2004–2015 <a
href="http://www.apache.org/">The Apache Software Foundation</a>. All rights
reserved.</div>
</body>
</html>
\ No newline at end of file
Modified:
websites/production/maven/content/plugins-archives/maven-javadoc-plugin-LATEST/xref-test/org/apache/maven/plugin/javadoc/stubs/DocletTestMavenProjectStub.html
==============================================================================
---
websites/production/maven/content/plugins-archives/maven-javadoc-plugin-LATEST/xref-test/org/apache/maven/plugin/javadoc/stubs/DocletTestMavenProjectStub.html
(original)
+++
websites/production/maven/content/plugins-archives/maven-javadoc-plugin-LATEST/xref-test/org/apache/maven/plugin/javadoc/stubs/DocletTestMavenProjectStub.html
Sat Mar 14 00:06:30 2015
@@ -90,6 +90,6 @@
<a class="jxr_linenumber" name="L82" href="#L82">82</a> }
</pre>
<hr/>
-<div id="footer">Copyright © 2004–2014 <a
href="http://www.apache.org/">The Apache Software Foundation</a>. All rights
reserved.</div>
+<div id="footer">Copyright © 2004–2015 <a
href="http://www.apache.org/">The Apache Software Foundation</a>. All rights
reserved.</div>
</body>
</html>
\ No newline at end of file
Modified:
websites/production/maven/content/plugins-archives/maven-javadoc-plugin-LATEST/xref-test/org/apache/maven/plugin/javadoc/stubs/FixJdk5MavenProjectStub.html
==============================================================================
---
websites/production/maven/content/plugins-archives/maven-javadoc-plugin-LATEST/xref-test/org/apache/maven/plugin/javadoc/stubs/FixJdk5MavenProjectStub.html
(original)
+++
websites/production/maven/content/plugins-archives/maven-javadoc-plugin-LATEST/xref-test/org/apache/maven/plugin/javadoc/stubs/FixJdk5MavenProjectStub.html
Sat Mar 14 00:06:30 2015
@@ -108,6 +108,6 @@
<a class="jxr_linenumber" name="L100" href="#L100">100</a> }
</pre>
<hr/>
-<div id="footer">Copyright © 2004–2014 <a
href="http://www.apache.org/">The Apache Software Foundation</a>. All rights
reserved.</div>
+<div id="footer">Copyright © 2004–2015 <a
href="http://www.apache.org/">The Apache Software Foundation</a>. All rights
reserved.</div>
</body>
</html>
\ No newline at end of file
Modified:
websites/production/maven/content/plugins-archives/maven-javadoc-plugin-LATEST/xref-test/org/apache/maven/plugin/javadoc/stubs/FixJdk6MavenProjectStub.html
==============================================================================
---
websites/production/maven/content/plugins-archives/maven-javadoc-plugin-LATEST/xref-test/org/apache/maven/plugin/javadoc/stubs/FixJdk6MavenProjectStub.html
(original)
+++
websites/production/maven/content/plugins-archives/maven-javadoc-plugin-LATEST/xref-test/org/apache/maven/plugin/javadoc/stubs/FixJdk6MavenProjectStub.html
Sat Mar 14 00:06:30 2015
@@ -108,6 +108,6 @@
<a class="jxr_linenumber" name="L100" href="#L100">100</a> }
</pre>
<hr/>
-<div id="footer">Copyright © 2004–2014 <a
href="http://www.apache.org/">The Apache Software Foundation</a>. All rights
reserved.</div>
+<div id="footer">Copyright © 2004–2015 <a
href="http://www.apache.org/">The Apache Software Foundation</a>. All rights
reserved.</div>
</body>
</html>
\ No newline at end of file
Modified:
websites/production/maven/content/plugins-archives/maven-javadoc-plugin-LATEST/xref-test/org/apache/maven/plugin/javadoc/stubs/FixMavenProjectStub.html
==============================================================================
---
websites/production/maven/content/plugins-archives/maven-javadoc-plugin-LATEST/xref-test/org/apache/maven/plugin/javadoc/stubs/FixMavenProjectStub.html
(original)
+++
websites/production/maven/content/plugins-archives/maven-javadoc-plugin-LATEST/xref-test/org/apache/maven/plugin/javadoc/stubs/FixMavenProjectStub.html
Sat Mar 14 00:06:30 2015
@@ -108,6 +108,6 @@
<a class="jxr_linenumber" name="L100" href="#L100">100</a> }
</pre>
<hr/>
-<div id="footer">Copyright © 2004–2014 <a
href="http://www.apache.org/">The Apache Software Foundation</a>. All rights
reserved.</div>
+<div id="footer">Copyright © 2004–2015 <a
href="http://www.apache.org/">The Apache Software Foundation</a>. All rights
reserved.</div>
</body>
</html>
\ No newline at end of file
Modified:
websites/production/maven/content/plugins-archives/maven-javadoc-plugin-LATEST/xref-test/org/apache/maven/plugin/javadoc/stubs/HeaderFooterTestMavenProjectStub.html
==============================================================================
---
websites/production/maven/content/plugins-archives/maven-javadoc-plugin-LATEST/xref-test/org/apache/maven/plugin/javadoc/stubs/HeaderFooterTestMavenProjectStub.html
(original)
+++
websites/production/maven/content/plugins-archives/maven-javadoc-plugin-LATEST/xref-test/org/apache/maven/plugin/javadoc/stubs/HeaderFooterTestMavenProjectStub.html
Sat Mar 14 00:06:30 2015
@@ -70,6 +70,6 @@
<a class="jxr_linenumber" name="L62" href="#L62">62</a> }
</pre>
<hr/>
-<div id="footer">Copyright © 2004–2014 <a
href="http://www.apache.org/">The Apache Software Foundation</a>. All rights
reserved.</div>
+<div id="footer">Copyright © 2004–2015 <a
href="http://www.apache.org/">The Apache Software Foundation</a>. All rights
reserved.</div>
</body>
</html>
\ No newline at end of file
Modified:
websites/production/maven/content/plugins-archives/maven-javadoc-plugin-LATEST/xref-test/org/apache/maven/plugin/javadoc/stubs/HelpFileMavenProjectStub.html
==============================================================================
---
websites/production/maven/content/plugins-archives/maven-javadoc-plugin-LATEST/xref-test/org/apache/maven/plugin/javadoc/stubs/HelpFileMavenProjectStub.html
(original)
+++
websites/production/maven/content/plugins-archives/maven-javadoc-plugin-LATEST/xref-test/org/apache/maven/plugin/javadoc/stubs/HelpFileMavenProjectStub.html
Sat Mar 14 00:06:30 2015
@@ -90,6 +90,6 @@
<a class="jxr_linenumber" name="L82" href="#L82">82</a> }
</pre>
<hr/>
-<div id="footer">Copyright © 2004–2014 <a
href="http://www.apache.org/">The Apache Software Foundation</a>. All rights
reserved.</div>
+<div id="footer">Copyright © 2004–2015 <a
href="http://www.apache.org/">The Apache Software Foundation</a>. All rights
reserved.</div>
</body>
</html>
\ No newline at end of file
Modified:
websites/production/maven/content/plugins-archives/maven-javadoc-plugin-LATEST/xref-test/org/apache/maven/plugin/javadoc/stubs/JavadocJarDefaultMavenProjectStub.html
==============================================================================
---
websites/production/maven/content/plugins-archives/maven-javadoc-plugin-LATEST/xref-test/org/apache/maven/plugin/javadoc/stubs/JavadocJarDefaultMavenProjectStub.html
(original)
+++
websites/production/maven/content/plugins-archives/maven-javadoc-plugin-LATEST/xref-test/org/apache/maven/plugin/javadoc/stubs/JavadocJarDefaultMavenProjectStub.html
Sat Mar 14 00:06:30 2015
@@ -96,6 +96,6 @@
<a class="jxr_linenumber" name="L88" href="#L88">88</a> }
</pre>
<hr/>
-<div id="footer">Copyright © 2004–2014 <a
href="http://www.apache.org/">The Apache Software Foundation</a>. All rights
reserved.</div>
+<div id="footer">Copyright © 2004–2015 <a
href="http://www.apache.org/">The Apache Software Foundation</a>. All rights
reserved.</div>
</body>
</html>
\ No newline at end of file
Modified:
websites/production/maven/content/plugins-archives/maven-javadoc-plugin-LATEST/xref-test/org/apache/maven/plugin/javadoc/stubs/JavadocJarInvalidDestdirMavenProjectStub.html
==============================================================================
---
websites/production/maven/content/plugins-archives/maven-javadoc-plugin-LATEST/xref-test/org/apache/maven/plugin/javadoc/stubs/JavadocJarInvalidDestdirMavenProjectStub.html
(original)
+++
websites/production/maven/content/plugins-archives/maven-javadoc-plugin-LATEST/xref-test/org/apache/maven/plugin/javadoc/stubs/JavadocJarInvalidDestdirMavenProjectStub.html
Sat Mar 14 00:06:30 2015
@@ -96,6 +96,6 @@
<a class="jxr_linenumber" name="L88" href="#L88">88</a> }
</pre>
<hr/>
-<div id="footer">Copyright © 2004–2014 <a
href="http://www.apache.org/">The Apache Software Foundation</a>. All rights
reserved.</div>
+<div id="footer">Copyright © 2004–2015 <a
href="http://www.apache.org/">The Apache Software Foundation</a>. All rights
reserved.</div>
</body>
</html>
\ No newline at end of file
Modified:
websites/production/maven/content/plugins-archives/maven-javadoc-plugin-LATEST/xref-test/org/apache/maven/plugin/javadoc/stubs/JavadocPluginArtifactStub.html
==============================================================================
---
websites/production/maven/content/plugins-archives/maven-javadoc-plugin-LATEST/xref-test/org/apache/maven/plugin/javadoc/stubs/JavadocPluginArtifactStub.html
(original)
+++
websites/production/maven/content/plugins-archives/maven-javadoc-plugin-LATEST/xref-test/org/apache/maven/plugin/javadoc/stubs/JavadocPluginArtifactStub.html
Sat Mar 14 00:06:30 2015
@@ -151,6 +151,6 @@
<a class="jxr_linenumber" name="L143" href="#L143">143</a> }
</pre>
<hr/>
-<div id="footer">Copyright © 2004–2014 <a
href="http://www.apache.org/">The Apache Software Foundation</a>. All rights
reserved.</div>
+<div id="footer">Copyright © 2004–2015 <a
href="http://www.apache.org/">The Apache Software Foundation</a>. All rights
reserved.</div>
</body>
</html>
\ No newline at end of file
Modified:
websites/production/maven/content/plugins-archives/maven-javadoc-plugin-LATEST/xref-test/org/apache/maven/plugin/javadoc/stubs/Jdk5TestMavenProjectStub.html
==============================================================================
---
websites/production/maven/content/plugins-archives/maven-javadoc-plugin-LATEST/xref-test/org/apache/maven/plugin/javadoc/stubs/Jdk5TestMavenProjectStub.html
(original)
+++
websites/production/maven/content/plugins-archives/maven-javadoc-plugin-LATEST/xref-test/org/apache/maven/plugin/javadoc/stubs/Jdk5TestMavenProjectStub.html
Sat Mar 14 00:06:30 2015
@@ -89,6 +89,6 @@
<a class="jxr_linenumber" name="L81" href="#L81">81</a> }
</pre>
<hr/>
-<div id="footer">Copyright © 2004–2014 <a
href="http://www.apache.org/">The Apache Software Foundation</a>. All rights
reserved.</div>
+<div id="footer">Copyright © 2004–2015 <a
href="http://www.apache.org/">The Apache Software Foundation</a>. All rights
reserved.</div>
</body>
</html>
\ No newline at end of file
Modified:
websites/production/maven/content/plugins-archives/maven-javadoc-plugin-LATEST/xref-test/org/apache/maven/plugin/javadoc/stubs/Jdk6TestMavenProjectStub.html
==============================================================================
---
websites/production/maven/content/plugins-archives/maven-javadoc-plugin-LATEST/xref-test/org/apache/maven/plugin/javadoc/stubs/Jdk6TestMavenProjectStub.html
(original)
+++
websites/production/maven/content/plugins-archives/maven-javadoc-plugin-LATEST/xref-test/org/apache/maven/plugin/javadoc/stubs/Jdk6TestMavenProjectStub.html
Sat Mar 14 00:06:30 2015
@@ -89,6 +89,6 @@
<a class="jxr_linenumber" name="L81" href="#L81">81</a> }
</pre>
<hr/>
-<div id="footer">Copyright © 2004–2014 <a
href="http://www.apache.org/">The Apache Software Foundation</a>. All rights
reserved.</div>
+<div id="footer">Copyright © 2004–2015 <a
href="http://www.apache.org/">The Apache Software Foundation</a>. All rights
reserved.</div>
</body>
</html>
\ No newline at end of file
Modified:
websites/production/maven/content/plugins-archives/maven-javadoc-plugin-LATEST/xref-test/org/apache/maven/plugin/javadoc/stubs/NewlineTestMavenProjectStub.html
==============================================================================
---
websites/production/maven/content/plugins-archives/maven-javadoc-plugin-LATEST/xref-test/org/apache/maven/plugin/javadoc/stubs/NewlineTestMavenProjectStub.html
(original)
+++
websites/production/maven/content/plugins-archives/maven-javadoc-plugin-LATEST/xref-test/org/apache/maven/plugin/javadoc/stubs/NewlineTestMavenProjectStub.html
Sat Mar 14 00:06:30 2015
@@ -70,6 +70,6 @@
<a class="jxr_linenumber" name="L62" href="#L62">62</a> }
</pre>
<hr/>
-<div id="footer">Copyright © 2004–2014 <a
href="http://www.apache.org/">The Apache Software Foundation</a>. All rights
reserved.</div>
+<div id="footer">Copyright © 2004–2015 <a
href="http://www.apache.org/">The Apache Software Foundation</a>. All rights
reserved.</div>
</body>
</html>
\ No newline at end of file
Modified:
websites/production/maven/content/plugins-archives/maven-javadoc-plugin-LATEST/xref-test/org/apache/maven/plugin/javadoc/stubs/PomMavenProjectStub.html
==============================================================================
---
websites/production/maven/content/plugins-archives/maven-javadoc-plugin-LATEST/xref-test/org/apache/maven/plugin/javadoc/stubs/PomMavenProjectStub.html
(original)
+++
websites/production/maven/content/plugins-archives/maven-javadoc-plugin-LATEST/xref-test/org/apache/maven/plugin/javadoc/stubs/PomMavenProjectStub.html
Sat Mar 14 00:06:30 2015
@@ -78,6 +78,6 @@
<a class="jxr_linenumber" name="L70" href="#L70">70</a> }
</pre>
<hr/>
-<div id="footer">Copyright © 2004–2014 <a
href="http://www.apache.org/">The Apache Software Foundation</a>. All rights
reserved.</div>
+<div id="footer">Copyright © 2004–2015 <a
href="http://www.apache.org/">The Apache Software Foundation</a>. All rights
reserved.</div>
</body>
</html>
\ No newline at end of file
Modified:
websites/production/maven/content/plugins-archives/maven-javadoc-plugin-LATEST/xref-test/org/apache/maven/plugin/javadoc/stubs/ProxyTestMavenProjectStub.html
==============================================================================
---
websites/production/maven/content/plugins-archives/maven-javadoc-plugin-LATEST/xref-test/org/apache/maven/plugin/javadoc/stubs/ProxyTestMavenProjectStub.html
(original)
+++
websites/production/maven/content/plugins-archives/maven-javadoc-plugin-LATEST/xref-test/org/apache/maven/plugin/javadoc/stubs/ProxyTestMavenProjectStub.html
Sat Mar 14 00:06:30 2015
@@ -92,6 +92,6 @@
<a class="jxr_linenumber" name="L84" href="#L84">84</a> }
</pre>
<hr/>
-<div id="footer">Copyright © 2004–2014 <a
href="http://www.apache.org/">The Apache Software Foundation</a>. All rights
reserved.</div>
+<div id="footer">Copyright © 2004–2015 <a
href="http://www.apache.org/">The Apache Software Foundation</a>. All rights
reserved.</div>
</body>
</html>
\ No newline at end of file
Modified:
websites/production/maven/content/plugins-archives/maven-javadoc-plugin-LATEST/xref-test/org/apache/maven/plugin/javadoc/stubs/QuotedPathMavenProjectStub.html
==============================================================================
---
websites/production/maven/content/plugins-archives/maven-javadoc-plugin-LATEST/xref-test/org/apache/maven/plugin/javadoc/stubs/QuotedPathMavenProjectStub.html
(original)
+++
websites/production/maven/content/plugins-archives/maven-javadoc-plugin-LATEST/xref-test/org/apache/maven/plugin/javadoc/stubs/QuotedPathMavenProjectStub.html
Sat Mar 14 00:06:30 2015
@@ -89,6 +89,6 @@
<a class="jxr_linenumber" name="L81" href="#L81">81</a> }
</pre>
<hr/>
-<div id="footer">Copyright © 2004–2014 <a
href="http://www.apache.org/">The Apache Software Foundation</a>. All rights
reserved.</div>
+<div id="footer">Copyright © 2004–2015 <a
href="http://www.apache.org/">The Apache Software Foundation</a>. All rights
reserved.</div>
</body>
</html>
\ No newline at end of file
Modified:
websites/production/maven/content/plugins-archives/maven-javadoc-plugin-LATEST/xref-test/org/apache/maven/plugin/javadoc/stubs/ResourcesTestMavenProjectStub.html
==============================================================================
---
websites/production/maven/content/plugins-archives/maven-javadoc-plugin-LATEST/xref-test/org/apache/maven/plugin/javadoc/stubs/ResourcesTestMavenProjectStub.html
(original)
+++
websites/production/maven/content/plugins-archives/maven-javadoc-plugin-LATEST/xref-test/org/apache/maven/plugin/javadoc/stubs/ResourcesTestMavenProjectStub.html
Sat Mar 14 00:06:30 2015
@@ -70,6 +70,6 @@
<a class="jxr_linenumber" name="L62" href="#L62">62</a> }
</pre>
<hr/>
-<div id="footer">Copyright © 2004–2014 <a
href="http://www.apache.org/">The Apache Software Foundation</a>. All rights
reserved.</div>
+<div id="footer">Copyright © 2004–2015 <a
href="http://www.apache.org/">The Apache Software Foundation</a>. All rights
reserved.</div>
</body>
</html>
\ No newline at end of file
Modified:
websites/production/maven/content/plugins-archives/maven-javadoc-plugin-LATEST/xref-test/org/apache/maven/plugin/javadoc/stubs/ResourcesWithExcludesTestMavenProjectStub.html
==============================================================================
---
websites/production/maven/content/plugins-archives/maven-javadoc-plugin-LATEST/xref-test/org/apache/maven/plugin/javadoc/stubs/ResourcesWithExcludesTestMavenProjectStub.html
(original)
+++
websites/production/maven/content/plugins-archives/maven-javadoc-plugin-LATEST/xref-test/org/apache/maven/plugin/javadoc/stubs/ResourcesWithExcludesTestMavenProjectStub.html
Sat Mar 14 00:06:30 2015
@@ -70,6 +70,6 @@
<a class="jxr_linenumber" name="L62" href="#L62">62</a> }
</pre>
<hr/>
-<div id="footer">Copyright © 2004–2014 <a
href="http://www.apache.org/">The Apache Software Foundation</a>. All rights
reserved.</div>
+<div id="footer">Copyright © 2004–2015 <a
href="http://www.apache.org/">The Apache Software Foundation</a>. All rights
reserved.</div>
</body>
</html>
\ No newline at end of file
Modified:
websites/production/maven/content/plugins-archives/maven-javadoc-plugin-LATEST/xref-test/org/apache/maven/plugin/javadoc/stubs/SettingsStub.html
==============================================================================
---
websites/production/maven/content/plugins-archives/maven-javadoc-plugin-LATEST/xref-test/org/apache/maven/plugin/javadoc/stubs/SettingsStub.html
(original)
+++
websites/production/maven/content/plugins-archives/maven-javadoc-plugin-LATEST/xref-test/org/apache/maven/plugin/javadoc/stubs/SettingsStub.html
Sat Mar 14 00:06:30 2015
@@ -62,6 +62,6 @@
<a class="jxr_linenumber" name="L54" href="#L54">54</a> }
</pre>
<hr/>
-<div id="footer">Copyright © 2004–2014 <a
href="http://www.apache.org/">The Apache Software Foundation</a>. All rights
reserved.</div>
+<div id="footer">Copyright © 2004–2015 <a
href="http://www.apache.org/">The Apache Software Foundation</a>. All rights
reserved.</div>
</body>
</html>
\ No newline at end of file
Modified:
websites/production/maven/content/plugins-archives/maven-javadoc-plugin-LATEST/xref-test/org/apache/maven/plugin/javadoc/stubs/StandardDocletConflictOptionsTestMavenProjectStub.html
==============================================================================
---
websites/production/maven/content/plugins-archives/maven-javadoc-plugin-LATEST/xref-test/org/apache/maven/plugin/javadoc/stubs/StandardDocletConflictOptionsTestMavenProjectStub.html
(original)
+++
websites/production/maven/content/plugins-archives/maven-javadoc-plugin-LATEST/xref-test/org/apache/maven/plugin/javadoc/stubs/StandardDocletConflictOptionsTestMavenProjectStub.html
Sat Mar 14 00:06:30 2015
@@ -70,6 +70,6 @@
<a class="jxr_linenumber" name="L62" href="#L62">62</a> }
</pre>
<hr/>
-<div id="footer">Copyright © 2004–2014 <a
href="http://www.apache.org/">The Apache Software Foundation</a>. All rights
reserved.</div>
+<div id="footer">Copyright © 2004–2015 <a
href="http://www.apache.org/">The Apache Software Foundation</a>. All rights
reserved.</div>
</body>
</html>
\ No newline at end of file
Modified:
websites/production/maven/content/plugins-archives/maven-javadoc-plugin-LATEST/xref-test/org/apache/maven/plugin/javadoc/stubs/StylesheetFileMavenProjectStub.html
==============================================================================
---
websites/production/maven/content/plugins-archives/maven-javadoc-plugin-LATEST/xref-test/org/apache/maven/plugin/javadoc/stubs/StylesheetFileMavenProjectStub.html
(original)
+++
websites/production/maven/content/plugins-archives/maven-javadoc-plugin-LATEST/xref-test/org/apache/maven/plugin/javadoc/stubs/StylesheetFileMavenProjectStub.html
Sat Mar 14 00:06:30 2015
@@ -90,6 +90,6 @@
<a class="jxr_linenumber" name="L82" href="#L82">82</a> }
</pre>
<hr/>
-<div id="footer">Copyright © 2004–2014 <a
href="http://www.apache.org/">The Apache Software Foundation</a>. All rights
reserved.</div>
+<div id="footer">Copyright © 2004–2015 <a
href="http://www.apache.org/">The Apache Software Foundation</a>. All rights
reserved.</div>
</body>
</html>
\ No newline at end of file
Modified:
websites/production/maven/content/plugins-archives/maven-javadoc-plugin-LATEST/xref-test/org/apache/maven/plugin/javadoc/stubs/SubpackagesTestMavenProjectStub.html
==============================================================================
---
websites/production/maven/content/plugins-archives/maven-javadoc-plugin-LATEST/xref-test/org/apache/maven/plugin/javadoc/stubs/SubpackagesTestMavenProjectStub.html
(original)
+++
websites/production/maven/content/plugins-archives/maven-javadoc-plugin-LATEST/xref-test/org/apache/maven/plugin/javadoc/stubs/SubpackagesTestMavenProjectStub.html
Sat Mar 14 00:06:30 2015
@@ -89,6 +89,6 @@
<a class="jxr_linenumber" name="L81" href="#L81">81</a> }
</pre>
<hr/>
-<div id="footer">Copyright © 2004–2014 <a
href="http://www.apache.org/">The Apache Software Foundation</a>. All rights
reserved.</div>
+<div id="footer">Copyright © 2004–2015 <a
href="http://www.apache.org/">The Apache Software Foundation</a>. All rights
reserved.</div>
</body>
</html>
\ No newline at end of file
Modified:
websites/production/maven/content/plugins-archives/maven-javadoc-plugin-LATEST/xref-test/org/apache/maven/plugin/javadoc/stubs/TagTestMavenProjectStub.html
==============================================================================
---
websites/production/maven/content/plugins-archives/maven-javadoc-plugin-LATEST/xref-test/org/apache/maven/plugin/javadoc/stubs/TagTestMavenProjectStub.html
(original)
+++
websites/production/maven/content/plugins-archives/maven-javadoc-plugin-LATEST/xref-test/org/apache/maven/plugin/javadoc/stubs/TagTestMavenProjectStub.html
Sat Mar 14 00:06:30 2015
@@ -70,6 +70,6 @@
<a class="jxr_linenumber" name="L62" href="#L62">62</a> }
</pre>
<hr/>
-<div id="footer">Copyright © 2004–2014 <a
href="http://www.apache.org/">The Apache Software Foundation</a>. All rights
reserved.</div>
+<div id="footer">Copyright © 2004–2015 <a
href="http://www.apache.org/">The Apache Software Foundation</a>. All rights
reserved.</div>
</body>
</html>
\ No newline at end of file
Modified:
websites/production/maven/content/plugins-archives/maven-javadoc-plugin-LATEST/xref-test/org/apache/maven/plugin/javadoc/stubs/TagletArtifactsMavenProjectStub.html
==============================================================================
---
websites/production/maven/content/plugins-archives/maven-javadoc-plugin-LATEST/xref-test/org/apache/maven/plugin/javadoc/stubs/TagletArtifactsMavenProjectStub.html
(original)
+++
websites/production/maven/content/plugins-archives/maven-javadoc-plugin-LATEST/xref-test/org/apache/maven/plugin/javadoc/stubs/TagletArtifactsMavenProjectStub.html
Sat Mar 14 00:06:30 2015
@@ -88,6 +88,6 @@
<a class="jxr_linenumber" name="L80" href="#L80">80</a> }
</pre>
<hr/>
-<div id="footer">Copyright © 2004–2014 <a
href="http://www.apache.org/">The Apache Software Foundation</a>. All rights
reserved.</div>
+<div id="footer">Copyright © 2004–2015 <a
href="http://www.apache.org/">The Apache Software Foundation</a>. All rights
reserved.</div>
</body>
</html>
\ No newline at end of file
Modified:
websites/production/maven/content/plugins-archives/maven-javadoc-plugin-LATEST/xref-test/org/apache/maven/plugin/javadoc/stubs/TagletTestMavenProjectStub.html
==============================================================================
---
websites/production/maven/content/plugins-archives/maven-javadoc-plugin-LATEST/xref-test/org/apache/maven/plugin/javadoc/stubs/TagletTestMavenProjectStub.html
(original)
+++
websites/production/maven/content/plugins-archives/maven-javadoc-plugin-LATEST/xref-test/org/apache/maven/plugin/javadoc/stubs/TagletTestMavenProjectStub.html
Sat Mar 14 00:06:30 2015
@@ -89,6 +89,6 @@
<a class="jxr_linenumber" name="L81" href="#L81">81</a> }
</pre>
<hr/>
-<div id="footer">Copyright © 2004–2014 <a
href="http://www.apache.org/">The Apache Software Foundation</a>. All rights
reserved.</div>
+<div id="footer">Copyright © 2004–2015 <a
href="http://www.apache.org/">The Apache Software Foundation</a>. All rights
reserved.</div>
</body>
</html>
\ No newline at end of file
Modified:
websites/production/maven/content/plugins-archives/maven-javadoc-plugin-LATEST/xref-test/org/apache/maven/plugin/javadoc/stubs/TestJavadocMavenProjectStub.html
==============================================================================
---
websites/production/maven/content/plugins-archives/maven-javadoc-plugin-LATEST/xref-test/org/apache/maven/plugin/javadoc/stubs/TestJavadocMavenProjectStub.html
(original)
+++
websites/production/maven/content/plugins-archives/maven-javadoc-plugin-LATEST/xref-test/org/apache/maven/plugin/javadoc/stubs/TestJavadocMavenProjectStub.html
Sat Mar 14 00:06:30 2015
@@ -96,6 +96,6 @@
<a class="jxr_linenumber" name="L88" href="#L88">88</a> }
</pre>
<hr/>
-<div id="footer">Copyright © 2004–2014 <a
href="http://www.apache.org/">The Apache Software Foundation</a>. All rights
reserved.</div>
+<div id="footer">Copyright © 2004–2015 <a
href="http://www.apache.org/">The Apache Software Foundation</a>. All rights
reserved.</div>
</body>
</html>
\ No newline at end of file
Modified:
websites/production/maven/content/plugins-archives/maven-javadoc-plugin-LATEST/xref-test/org/apache/maven/plugin/javadoc/stubs/WrongEncodingOptionsTestMavenProjectStub.html
==============================================================================
---
websites/production/maven/content/plugins-archives/maven-javadoc-plugin-LATEST/xref-test/org/apache/maven/plugin/javadoc/stubs/WrongEncodingOptionsTestMavenProjectStub.html
(original)
+++
websites/production/maven/content/plugins-archives/maven-javadoc-plugin-LATEST/xref-test/org/apache/maven/plugin/javadoc/stubs/WrongEncodingOptionsTestMavenProjectStub.html
Sat Mar 14 00:06:30 2015
@@ -70,6 +70,6 @@
<a class="jxr_linenumber" name="L62" href="#L62">62</a> }
</pre>
<hr/>
-<div id="footer">Copyright © 2004–2014 <a
href="http://www.apache.org/">The Apache Software Foundation</a>. All rights
reserved.</div>
+<div id="footer">Copyright © 2004–2015 <a
href="http://www.apache.org/">The Apache Software Foundation</a>. All rights
reserved.</div>
</body>
</html>
\ No newline at end of file
Modified:
websites/production/maven/content/plugins-archives/maven-javadoc-plugin-LATEST/xref-test/org/apache/maven/plugin/javadoc/stubs/package-frame.html
==============================================================================
---
websites/production/maven/content/plugins-archives/maven-javadoc-plugin-LATEST/xref-test/org/apache/maven/plugin/javadoc/stubs/package-frame.html
(original)
+++
websites/production/maven/content/plugins-archives/maven-javadoc-plugin-LATEST/xref-test/org/apache/maven/plugin/javadoc/stubs/package-frame.html
Sat Mar 14 00:06:30 2015
@@ -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 Javadoc Plugin 2.10.1 Reference Package
org.apache.maven.plugin.javadoc.stubs</title>
+ <title>Apache Maven Javadoc Plugin 2.10.2 Reference Package
org.apache.maven.plugin.javadoc.stubs</title>
<link rel="stylesheet" type="text/css"
href="../../../../../../stylesheet.css" title="style" />
</head>
<body>
Modified:
websites/production/maven/content/plugins-archives/maven-javadoc-plugin-LATEST/xref-test/org/apache/maven/plugin/javadoc/stubs/package-summary.html
==============================================================================
---
websites/production/maven/content/plugins-archives/maven-javadoc-plugin-LATEST/xref-test/org/apache/maven/plugin/javadoc/stubs/package-summary.html
(original)
+++
websites/production/maven/content/plugins-archives/maven-javadoc-plugin-LATEST/xref-test/org/apache/maven/plugin/javadoc/stubs/package-summary.html
Sat Mar 14 00:06:30 2015
@@ -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 Javadoc Plugin 2.10.1 Reference Package
org.apache.maven.plugin.javadoc.stubs</title>
+ <title>Apache Maven Javadoc Plugin 2.10.2 Reference Package
org.apache.maven.plugin.javadoc.stubs</title>
<link rel="stylesheet" type="text/css"
href="../../../../../../stylesheet.css" title="style" />
</head>
<body>
@@ -248,7 +248,7 @@
</div>
<hr />
<div id="footer">
- Copyright © 2004–2014 <a
href="http://www.apache.org/">The Apache Software Foundation</a>. All rights
reserved.
+ Copyright © 2004–2015 <a
href="http://www.apache.org/">The Apache Software Foundation</a>. All rights
reserved.
</div>
</body>
</html>
\ No newline at end of file
Modified:
websites/production/maven/content/plugins-archives/maven-javadoc-plugin-LATEST/xref-test/overview-frame.html
==============================================================================
---
websites/production/maven/content/plugins-archives/maven-javadoc-plugin-LATEST/xref-test/overview-frame.html
(original)
+++
websites/production/maven/content/plugins-archives/maven-javadoc-plugin-LATEST/xref-test/overview-frame.html
Sat Mar 14 00:06:30 2015
@@ -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 Javadoc Plugin 2.10.1 Reference</title>
+ <title>Apache Maven Javadoc Plugin 2.10.2 Reference</title>
<link rel="stylesheet" type="text/css" href="stylesheet.css"
title="style" />
</head>
<body>
Modified:
websites/production/maven/content/plugins-archives/maven-javadoc-plugin-LATEST/xref-test/overview-summary.html
==============================================================================
---
websites/production/maven/content/plugins-archives/maven-javadoc-plugin-LATEST/xref-test/overview-summary.html
(original)
+++
websites/production/maven/content/plugins-archives/maven-javadoc-plugin-LATEST/xref-test/overview-summary.html
Sat Mar 14 00:06:30 2015
@@ -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 Javadoc Plugin 2.10.1 Reference</title>
+ <title>Apache Maven Javadoc Plugin 2.10.2 Reference</title>
<link rel="stylesheet" type="text/css" href="stylesheet.css"
title="style" />
</head>
<body>
@@ -24,7 +24,7 @@
</ul>
</div>
- <h2>Apache Maven Javadoc Plugin 2.10.1 Reference</h2>
+ <h2>Apache Maven Javadoc Plugin 2.10.2 Reference</h2>
<table class="summary">
<thead>
@@ -65,7 +65,7 @@
<hr />
<div id="footer">
- Copyright © 2004–2014 <a
href="http://www.apache.org/">The Apache Software Foundation</a>. All rights
reserved.
+ Copyright © 2004–2015 <a
href="http://www.apache.org/">The Apache Software Foundation</a>. All rights
reserved.
</div>
</body>
</html>
\ No newline at end of file
Modified:
websites/production/maven/content/plugins-archives/maven-javadoc-plugin-LATEST/xref/index.html
==============================================================================
---
websites/production/maven/content/plugins-archives/maven-javadoc-plugin-LATEST/xref/index.html
(original)
+++
websites/production/maven/content/plugins-archives/maven-javadoc-plugin-LATEST/xref/index.html
Sat Mar 14 00:06:30 2015
@@ -4,7 +4,7 @@
<!-- this is a JXR report set -->
<head>
<meta http-equiv="content-type" content="text/html;
charset=UTF-8" />
- <title>Apache Maven Javadoc Plugin 2.10.1 Reference</title>
+ <title>Apache Maven Javadoc Plugin 2.10.2 Reference</title>
</head>
<frameset cols="20%,80%">
<frameset rows="30%,70%">