http://git-wip-us.apache.org/repos/asf/creadur-site/blob/9736b609/rat/apache-rat-tasks/xref/org/apache/rat/anttasks/ResourceCollectionContainer.html
----------------------------------------------------------------------
diff --git 
a/rat/apache-rat-tasks/xref/org/apache/rat/anttasks/ResourceCollectionContainer.html
 
b/rat/apache-rat-tasks/xref/org/apache/rat/anttasks/ResourceCollectionContainer.html
index 7bba2f3..0cd60a8 100644
--- 
a/rat/apache-rat-tasks/xref/org/apache/rat/anttasks/ResourceCollectionContainer.html
+++ 
b/rat/apache-rat-tasks/xref/org/apache/rat/anttasks/ResourceCollectionContainer.html
@@ -56,63 +56,61 @@
 <a class="jxr_linenumber" name="L48" href="#L48">48</a>  
 <a class="jxr_linenumber" name="L49" href="#L49">49</a>      <strong 
class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> 
run(RatReport report) <strong class="jxr_keyword">throws</strong> RatException {
 <a class="jxr_linenumber" name="L50" href="#L50">50</a>          <a 
href="../../../../org/apache/rat/anttasks/ResourceCollectionContainer.html">ResourceDocument</a>
 document = <strong class="jxr_keyword">new</strong> <a 
href="../../../../org/apache/rat/anttasks/ResourceCollectionContainer.html">ResourceDocument</a>();
-<a class="jxr_linenumber" name="L51" href="#L51">51</a>          <strong 
class="jxr_keyword">for</strong> (Iterator&lt;?&gt; iter = rc.iterator(); 
iter.hasNext(); ) {
-<a class="jxr_linenumber" name="L52" href="#L52">52</a>              Resource 
r = (Resource) iter.next();
-<a class="jxr_linenumber" name="L53" href="#L53">53</a>              <strong 
class="jxr_keyword">if</strong> (!r.isDirectory()) {
-<a class="jxr_linenumber" name="L54" href="#L54">54</a>                  
document.setResource(r);
-<a class="jxr_linenumber" name="L55" href="#L55">55</a>                  
document.getMetaData().clear();
-<a class="jxr_linenumber" name="L56" href="#L56">56</a>                  
report.report(document);
-<a class="jxr_linenumber" name="L57" href="#L57">57</a>              }
-<a class="jxr_linenumber" name="L58" href="#L58">58</a>          }
-<a class="jxr_linenumber" name="L59" href="#L59">59</a>      }
-<a class="jxr_linenumber" name="L60" href="#L60">60</a>      <strong 
class="jxr_keyword">private</strong> <strong class="jxr_keyword">class</strong> 
<a 
href="../../../../org/apache/rat/anttasks/ResourceCollectionContainer.html">ResourceDocument</a>
 <strong class="jxr_keyword">implements</strong> Document {
-<a class="jxr_linenumber" name="L61" href="#L61">61</a>  
-<a class="jxr_linenumber" name="L62" href="#L62">62</a>          <strong 
class="jxr_keyword">private</strong> Resource resource;
-<a class="jxr_linenumber" name="L63" href="#L63">63</a>          <strong 
class="jxr_keyword">private</strong> <strong class="jxr_keyword">final</strong> 
MetaData metaData = <strong class="jxr_keyword">new</strong> MetaData();
-<a class="jxr_linenumber" name="L64" href="#L64">64</a>  
-<a class="jxr_linenumber" name="L65" href="#L65">65</a>          <strong 
class="jxr_keyword">private</strong> <strong class="jxr_keyword">void</strong> 
setResource(Resource resource) {
-<a class="jxr_linenumber" name="L66" href="#L66">66</a>              <strong 
class="jxr_keyword">this</strong>.resource = resource;
-<a class="jxr_linenumber" name="L67" href="#L67">67</a>          }
-<a class="jxr_linenumber" name="L68" href="#L68">68</a>          
-<a class="jxr_linenumber" name="L69" href="#L69">69</a>          <strong 
class="jxr_keyword">public</strong> Reader reader() <strong 
class="jxr_keyword">throws</strong> IOException {
-<a class="jxr_linenumber" name="L70" href="#L70">70</a>              <strong 
class="jxr_keyword">final</strong> InputStream in = resource.getInputStream();
-<a class="jxr_linenumber" name="L71" href="#L71">71</a>              <strong 
class="jxr_keyword">final</strong> Reader result = <strong 
class="jxr_keyword">new</strong> InputStreamReader(in);
-<a class="jxr_linenumber" name="L72" href="#L72">72</a>              <strong 
class="jxr_keyword">return</strong> result;
-<a class="jxr_linenumber" name="L73" href="#L73">73</a>          }
-<a class="jxr_linenumber" name="L74" href="#L74">74</a>  
-<a class="jxr_linenumber" name="L75" href="#L75">75</a>          <strong 
class="jxr_keyword">public</strong> String getName() {
-<a class="jxr_linenumber" name="L76" href="#L76">76</a>              <em 
class="jxr_comment">// TODO: reconsider names</em>
-<a class="jxr_linenumber" name="L77" href="#L77">77</a>              String 
result = <strong class="jxr_keyword">null</strong>;
-<a class="jxr_linenumber" name="L78" href="#L78">78</a>              <strong 
class="jxr_keyword">if</strong> (resource instanceof FileResource) {
-<a class="jxr_linenumber" name="L79" href="#L79">79</a>                  
<strong class="jxr_keyword">final</strong> FileResource fileResource = 
(FileResource) resource;
-<a class="jxr_linenumber" name="L80" href="#L80">80</a>                  
<strong class="jxr_keyword">final</strong> File file = fileResource.getFile();
-<a class="jxr_linenumber" name="L81" href="#L81">81</a>                  
result = DocumentImplUtils.toName(file);
-<a class="jxr_linenumber" name="L82" href="#L82">82</a>              } <strong 
class="jxr_keyword">else</strong> {
-<a class="jxr_linenumber" name="L83" href="#L83">83</a>                  
result = resource.getName();
-<a class="jxr_linenumber" name="L84" href="#L84">84</a>              }
-<a class="jxr_linenumber" name="L85" href="#L85">85</a>              <strong 
class="jxr_keyword">return</strong> result;
-<a class="jxr_linenumber" name="L86" href="#L86">86</a>          }
-<a class="jxr_linenumber" name="L87" href="#L87">87</a>  
-<a class="jxr_linenumber" name="L88" href="#L88">88</a>          <strong 
class="jxr_keyword">public</strong> <strong 
class="jxr_keyword">boolean</strong> isComposite() {
-<a class="jxr_linenumber" name="L89" href="#L89">89</a>              <strong 
class="jxr_keyword">if</strong> (resource instanceof FileResource) {
-<a class="jxr_linenumber" name="L90" href="#L90">90</a>                  
<strong class="jxr_keyword">final</strong> FileResource fileResource = 
(FileResource) resource;
-<a class="jxr_linenumber" name="L91" href="#L91">91</a>                  
<strong class="jxr_keyword">final</strong> File file = fileResource.getFile();
-<a class="jxr_linenumber" name="L92" href="#L92">92</a>                  
<strong class="jxr_keyword">return</strong> DocumentImplUtils.isZip(file);
-<a class="jxr_linenumber" name="L93" href="#L93">93</a>              }
-<a class="jxr_linenumber" name="L94" href="#L94">94</a>              <strong 
class="jxr_keyword">return</strong> false;
-<a class="jxr_linenumber" name="L95" href="#L95">95</a>          }
-<a class="jxr_linenumber" name="L96" href="#L96">96</a>          
-<a class="jxr_linenumber" name="L97" href="#L97">97</a>          <strong 
class="jxr_keyword">public</strong> MetaData getMetaData() {
-<a class="jxr_linenumber" name="L98" href="#L98">98</a>              <strong 
class="jxr_keyword">return</strong> metaData;
-<a class="jxr_linenumber" name="L99" href="#L99">99</a>          }
-<a class="jxr_linenumber" name="L100" href="#L100">100</a>         
-<a class="jxr_linenumber" name="L101" href="#L101">101</a>         <strong 
class="jxr_keyword">public</strong> InputStream inputStream() <strong 
class="jxr_keyword">throws</strong> IOException {
-<a class="jxr_linenumber" name="L102" href="#L102">102</a>             <strong 
class="jxr_keyword">return</strong> resource.getInputStream();
-<a class="jxr_linenumber" name="L103" href="#L103">103</a>         }
-<a class="jxr_linenumber" name="L104" href="#L104">104</a>     }
-<a class="jxr_linenumber" name="L105" href="#L105">105</a> }
+<a class="jxr_linenumber" name="L51" href="#L51">51</a>          <strong 
class="jxr_keyword">for</strong> (Resource r : rc) {
+<a class="jxr_linenumber" name="L52" href="#L52">52</a>              <strong 
class="jxr_keyword">if</strong> (!r.isDirectory()) {
+<a class="jxr_linenumber" name="L53" href="#L53">53</a>                  
document.setResource(r);
+<a class="jxr_linenumber" name="L54" href="#L54">54</a>                  
document.getMetaData().clear();
+<a class="jxr_linenumber" name="L55" href="#L55">55</a>                  
report.report(document);
+<a class="jxr_linenumber" name="L56" href="#L56">56</a>              }
+<a class="jxr_linenumber" name="L57" href="#L57">57</a>          }
+<a class="jxr_linenumber" name="L58" href="#L58">58</a>      }
+<a class="jxr_linenumber" name="L59" href="#L59">59</a>      <strong 
class="jxr_keyword">private</strong> <strong class="jxr_keyword">class</strong> 
<a 
href="../../../../org/apache/rat/anttasks/ResourceCollectionContainer.html">ResourceDocument</a>
 <strong class="jxr_keyword">implements</strong> Document {
+<a class="jxr_linenumber" name="L60" href="#L60">60</a>  
+<a class="jxr_linenumber" name="L61" href="#L61">61</a>          <strong 
class="jxr_keyword">private</strong> Resource resource;
+<a class="jxr_linenumber" name="L62" href="#L62">62</a>          <strong 
class="jxr_keyword">private</strong> <strong class="jxr_keyword">final</strong> 
MetaData metaData = <strong class="jxr_keyword">new</strong> MetaData();
+<a class="jxr_linenumber" name="L63" href="#L63">63</a>  
+<a class="jxr_linenumber" name="L64" href="#L64">64</a>          <strong 
class="jxr_keyword">private</strong> <strong class="jxr_keyword">void</strong> 
setResource(Resource resource) {
+<a class="jxr_linenumber" name="L65" href="#L65">65</a>              <strong 
class="jxr_keyword">this</strong>.resource = resource;
+<a class="jxr_linenumber" name="L66" href="#L66">66</a>          }
+<a class="jxr_linenumber" name="L67" href="#L67">67</a>          
+<a class="jxr_linenumber" name="L68" href="#L68">68</a>          <strong 
class="jxr_keyword">public</strong> Reader reader() <strong 
class="jxr_keyword">throws</strong> IOException {
+<a class="jxr_linenumber" name="L69" href="#L69">69</a>              <strong 
class="jxr_keyword">final</strong> InputStream in = resource.getInputStream();
+<a class="jxr_linenumber" name="L70" href="#L70">70</a>              <strong 
class="jxr_keyword">return</strong> <strong class="jxr_keyword">new</strong> 
InputStreamReader(in);
+<a class="jxr_linenumber" name="L71" href="#L71">71</a>          }
+<a class="jxr_linenumber" name="L72" href="#L72">72</a>  
+<a class="jxr_linenumber" name="L73" href="#L73">73</a>          <strong 
class="jxr_keyword">public</strong> String getName() {
+<a class="jxr_linenumber" name="L74" href="#L74">74</a>              <em 
class="jxr_comment">// TODO: reconsider names</em>
+<a class="jxr_linenumber" name="L75" href="#L75">75</a>              String 
result = <strong class="jxr_keyword">null</strong>;
+<a class="jxr_linenumber" name="L76" href="#L76">76</a>              <strong 
class="jxr_keyword">if</strong> (resource instanceof FileResource) {
+<a class="jxr_linenumber" name="L77" href="#L77">77</a>                  
<strong class="jxr_keyword">final</strong> FileResource fileResource = 
(FileResource) resource;
+<a class="jxr_linenumber" name="L78" href="#L78">78</a>                  
<strong class="jxr_keyword">final</strong> File file = fileResource.getFile();
+<a class="jxr_linenumber" name="L79" href="#L79">79</a>                  
result = DocumentImplUtils.toName(file);
+<a class="jxr_linenumber" name="L80" href="#L80">80</a>              } <strong 
class="jxr_keyword">else</strong> {
+<a class="jxr_linenumber" name="L81" href="#L81">81</a>                  
result = resource.getName();
+<a class="jxr_linenumber" name="L82" href="#L82">82</a>              }
+<a class="jxr_linenumber" name="L83" href="#L83">83</a>              <strong 
class="jxr_keyword">return</strong> result;
+<a class="jxr_linenumber" name="L84" href="#L84">84</a>          }
+<a class="jxr_linenumber" name="L85" href="#L85">85</a>  
+<a class="jxr_linenumber" name="L86" href="#L86">86</a>          <strong 
class="jxr_keyword">public</strong> <strong 
class="jxr_keyword">boolean</strong> isComposite() {
+<a class="jxr_linenumber" name="L87" href="#L87">87</a>              <strong 
class="jxr_keyword">if</strong> (resource instanceof FileResource) {
+<a class="jxr_linenumber" name="L88" href="#L88">88</a>                  
<strong class="jxr_keyword">final</strong> FileResource fileResource = 
(FileResource) resource;
+<a class="jxr_linenumber" name="L89" href="#L89">89</a>                  
<strong class="jxr_keyword">final</strong> File file = fileResource.getFile();
+<a class="jxr_linenumber" name="L90" href="#L90">90</a>                  
<strong class="jxr_keyword">return</strong> DocumentImplUtils.isZip(file);
+<a class="jxr_linenumber" name="L91" href="#L91">91</a>              }
+<a class="jxr_linenumber" name="L92" href="#L92">92</a>              <strong 
class="jxr_keyword">return</strong> false;
+<a class="jxr_linenumber" name="L93" href="#L93">93</a>          }
+<a class="jxr_linenumber" name="L94" href="#L94">94</a>          
+<a class="jxr_linenumber" name="L95" href="#L95">95</a>          <strong 
class="jxr_keyword">public</strong> MetaData getMetaData() {
+<a class="jxr_linenumber" name="L96" href="#L96">96</a>              <strong 
class="jxr_keyword">return</strong> metaData;
+<a class="jxr_linenumber" name="L97" href="#L97">97</a>          }
+<a class="jxr_linenumber" name="L98" href="#L98">98</a>          
+<a class="jxr_linenumber" name="L99" href="#L99">99</a>          <strong 
class="jxr_keyword">public</strong> InputStream inputStream() <strong 
class="jxr_keyword">throws</strong> IOException {
+<a class="jxr_linenumber" name="L100" href="#L100">100</a>             <strong 
class="jxr_keyword">return</strong> resource.getInputStream();
+<a class="jxr_linenumber" name="L101" href="#L101">101</a>         }
+<a class="jxr_linenumber" name="L102" href="#L102">102</a>     }
+<a class="jxr_linenumber" name="L103" href="#L103">103</a> }
 </pre>
 <hr/>
-<div id="footer">Copyright &#169; 2006&#x2013;2016 <a 
href="http://www.apache.org";>Apache Software Foundation</a>. All rights 
reserved.</div>
+<div id="footer">Copyright &#169; 2006&#x2013;2018 <a 
href="https://www.apache.org";>Apache Software Foundation</a>. All rights 
reserved.</div>
 </body>
 </html>

http://git-wip-us.apache.org/repos/asf/creadur-site/blob/9736b609/rat/apache-rat-tasks/xref/org/apache/rat/anttasks/SubstringLicenseMatcher.html
----------------------------------------------------------------------
diff --git 
a/rat/apache-rat-tasks/xref/org/apache/rat/anttasks/SubstringLicenseMatcher.html
 
b/rat/apache-rat-tasks/xref/org/apache/rat/anttasks/SubstringLicenseMatcher.html
index e69f736..859ad82 100644
--- 
a/rat/apache-rat-tasks/xref/org/apache/rat/anttasks/SubstringLicenseMatcher.html
+++ 
b/rat/apache-rat-tasks/xref/org/apache/rat/anttasks/SubstringLicenseMatcher.html
@@ -80,6 +80,6 @@
 <a class="jxr_linenumber" name="L72" href="#L72">72</a>  }
 </pre>
 <hr/>
-<div id="footer">Copyright &#169; 2006&#x2013;2016 <a 
href="http://www.apache.org";>Apache Software Foundation</a>. All rights 
reserved.</div>
+<div id="footer">Copyright &#169; 2006&#x2013;2018 <a 
href="https://www.apache.org";>Apache Software Foundation</a>. All rights 
reserved.</div>
 </body>
 </html>

http://git-wip-us.apache.org/repos/asf/creadur-site/blob/9736b609/rat/apache-rat-tasks/xref/org/apache/rat/anttasks/package-frame.html
----------------------------------------------------------------------
diff --git 
a/rat/apache-rat-tasks/xref/org/apache/rat/anttasks/package-frame.html 
b/rat/apache-rat-tasks/xref/org/apache/rat/anttasks/package-frame.html
index c1b29d4..ab2b973 100644
--- a/rat/apache-rat-tasks/xref/org/apache/rat/anttasks/package-frame.html
+++ b/rat/apache-rat-tasks/xref/org/apache/rat/anttasks/package-frame.html
@@ -3,7 +3,7 @@
 <html xml:lang="en" lang="en">
        <head>
                <meta http-equiv="content-type" content="text/html; 
charset=UTF-8" />
-               <title>Apache Creadur Rat::Tasks4Ant 0.13-SNAPSHOT Reference 
Package org.apache.rat.anttasks</title>
+               <title>Apache Creadur Rat::Tasks4Ant 0.13 Reference Package 
org.apache.rat.anttasks</title>
                <link rel="stylesheet" type="text/css" 
href="../../../../stylesheet.css" title="style" />
        </head>
        <body>

http://git-wip-us.apache.org/repos/asf/creadur-site/blob/9736b609/rat/apache-rat-tasks/xref/org/apache/rat/anttasks/package-summary.html
----------------------------------------------------------------------
diff --git 
a/rat/apache-rat-tasks/xref/org/apache/rat/anttasks/package-summary.html 
b/rat/apache-rat-tasks/xref/org/apache/rat/anttasks/package-summary.html
index 5b6afcd..af4b1ff 100644
--- a/rat/apache-rat-tasks/xref/org/apache/rat/anttasks/package-summary.html
+++ b/rat/apache-rat-tasks/xref/org/apache/rat/anttasks/package-summary.html
@@ -3,7 +3,7 @@
 <html xml:lang="en" lang="en">
        <head>
                <meta http-equiv="content-type" content="text/html; 
charset=UTF-8" />
-               <title>Apache Creadur Rat::Tasks4Ant 0.13-SNAPSHOT Reference 
Package org.apache.rat.anttasks</title>
+               <title>Apache Creadur Rat::Tasks4Ant 0.13 Reference Package 
org.apache.rat.anttasks</title>
                <link rel="stylesheet" type="text/css" 
href="../../../../stylesheet.css" title="style" />
        </head>
        <body>
@@ -98,7 +98,7 @@
        </div>
                                <hr />
                <div id="footer">
-                       Copyright &#169; 2006&#x2013;2016 <a 
href="http://www.apache.org";>Apache Software Foundation</a>. All rights 
reserved.
+                       Copyright &#169; 2006&#x2013;2018 <a 
href="https://www.apache.org";>Apache Software Foundation</a>. All rights 
reserved.
                </div>
        </body>
 </html>
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/creadur-site/blob/9736b609/rat/apache-rat-tasks/xref/overview-frame.html
----------------------------------------------------------------------
diff --git a/rat/apache-rat-tasks/xref/overview-frame.html 
b/rat/apache-rat-tasks/xref/overview-frame.html
index a09fbd8..13f6b88 100644
--- a/rat/apache-rat-tasks/xref/overview-frame.html
+++ b/rat/apache-rat-tasks/xref/overview-frame.html
@@ -3,7 +3,7 @@
 <html xml:lang="en" lang="en">
        <head>
                <meta http-equiv="content-type" content="text/html; 
charset=UTF-8" />
-               <title>Apache Creadur Rat::Tasks4Ant 0.13-SNAPSHOT 
Reference</title>
+               <title>Apache Creadur Rat::Tasks4Ant 0.13 Reference</title>
                <link rel="stylesheet" type="text/css" href="stylesheet.css" 
title="style" />
        </head>
        <body>

http://git-wip-us.apache.org/repos/asf/creadur-site/blob/9736b609/rat/apache-rat-tasks/xref/overview-summary.html
----------------------------------------------------------------------
diff --git a/rat/apache-rat-tasks/xref/overview-summary.html 
b/rat/apache-rat-tasks/xref/overview-summary.html
index d13a3b9..701cec2 100644
--- a/rat/apache-rat-tasks/xref/overview-summary.html
+++ b/rat/apache-rat-tasks/xref/overview-summary.html
@@ -3,7 +3,7 @@
 <html xml:lang="en" lang="en">
        <head>
                <meta http-equiv="content-type" content="text/html; 
charset=UTF-8" />
-               <title>Apache Creadur Rat::Tasks4Ant 0.13-SNAPSHOT 
Reference</title>
+               <title>Apache Creadur Rat::Tasks4Ant 0.13 Reference</title>
                <link rel="stylesheet" type="text/css" href="stylesheet.css" 
title="style" />
        </head>
        <body>
@@ -24,7 +24,7 @@
                </ul>
        </div>
                
-                       <h2>Apache Creadur Rat::Tasks4Ant 0.13-SNAPSHOT 
Reference</h2>
+                       <h2>Apache Creadur Rat::Tasks4Ant 0.13 Reference</h2>
 
                <table class="summary">
                <thead>
@@ -60,7 +60,7 @@
                
                <hr />
                <div id="footer">
-                       Copyright &#169; 2006&#x2013;2016 <a 
href="http://www.apache.org";>Apache Software Foundation</a>. All rights 
reserved.
+                       Copyright &#169; 2006&#x2013;2018 <a 
href="https://www.apache.org";>Apache Software Foundation</a>. All rights 
reserved.
                </div>
        </body>
 </html>
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/creadur-site/blob/9736b609/rat/apidocs/allclasses-frame.html
----------------------------------------------------------------------
diff --git a/rat/apidocs/allclasses-frame.html 
b/rat/apidocs/allclasses-frame.html
index c66e85c..b5b34a3 100644
--- a/rat/apidocs/allclasses-frame.html
+++ b/rat/apidocs/allclasses-frame.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>All Classes (Apache Creadur Rat 0.13-SNAPSHOT API)</title>
+<title>All Classes (Apache Creadur Rat 0.13 API)</title>
 <link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
 <script type="text/javascript" src="script.js"></script>
 </head>
@@ -63,7 +63,7 @@
 <li><a href="org/apache/rat/header/HeaderMatcher.html" title="class in 
org.apache.rat.header" target="classFrame">HeaderMatcher</a></li>
 <li><a href="org/apache/rat/analysis/util/HeaderMatcherMultiplexer.html" 
title="class in org.apache.rat.analysis.util" 
target="classFrame">HeaderMatcherMultiplexer</a></li>
 <li><a href="org/apache/rat/mp/HeaderMatcherSpecification.html" title="class 
in org.apache.rat.mp" target="classFrame">HeaderMatcherSpecification</a></li>
-<li><a href="org/apache/rat/mp/HelpMojo.html" title="class in 
org.apache.rat.mp" target="classFrame">HelpMojo</a></li>
+<li><a href="HelpMojo.html" title="class in &lt;Unnamed&gt;" 
target="classFrame">HelpMojo</a></li>
 <li><a href="org/apache/rat/document/IDocumentAnalyser.html" title="interface 
in org.apache.rat.document" target="classFrame"><span 
class="interfaceName">IDocumentAnalyser</span></a></li>
 <li><a href="org/apache/rat/analysis/IHeaderMatcher.html" title="interface in 
org.apache.rat.analysis" target="classFrame"><span 
class="interfaceName">IHeaderMatcher</span></a></li>
 <li><a href="org/apache/rat/license/ILicenseFamily.html" title="interface in 
org.apache.rat.license" target="classFrame"><span 
class="interfaceName">ILicenseFamily</span></a></li>

http://git-wip-us.apache.org/repos/asf/creadur-site/blob/9736b609/rat/apidocs/allclasses-noframe.html
----------------------------------------------------------------------
diff --git a/rat/apidocs/allclasses-noframe.html 
b/rat/apidocs/allclasses-noframe.html
index 3eba95e..e491a26 100644
--- a/rat/apidocs/allclasses-noframe.html
+++ b/rat/apidocs/allclasses-noframe.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>All Classes (Apache Creadur Rat 0.13-SNAPSHOT API)</title>
+<title>All Classes (Apache Creadur Rat 0.13 API)</title>
 <link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
 <script type="text/javascript" src="script.js"></script>
 </head>
@@ -63,7 +63,7 @@
 <li><a href="org/apache/rat/header/HeaderMatcher.html" title="class in 
org.apache.rat.header">HeaderMatcher</a></li>
 <li><a href="org/apache/rat/analysis/util/HeaderMatcherMultiplexer.html" 
title="class in org.apache.rat.analysis.util">HeaderMatcherMultiplexer</a></li>
 <li><a href="org/apache/rat/mp/HeaderMatcherSpecification.html" title="class 
in org.apache.rat.mp">HeaderMatcherSpecification</a></li>
-<li><a href="org/apache/rat/mp/HelpMojo.html" title="class in 
org.apache.rat.mp">HelpMojo</a></li>
+<li><a href="HelpMojo.html" title="class in &lt;Unnamed&gt;">HelpMojo</a></li>
 <li><a href="org/apache/rat/document/IDocumentAnalyser.html" title="interface 
in org.apache.rat.document"><span 
class="interfaceName">IDocumentAnalyser</span></a></li>
 <li><a href="org/apache/rat/analysis/IHeaderMatcher.html" title="interface in 
org.apache.rat.analysis"><span 
class="interfaceName">IHeaderMatcher</span></a></li>
 <li><a href="org/apache/rat/license/ILicenseFamily.html" title="interface in 
org.apache.rat.license"><span 
class="interfaceName">ILicenseFamily</span></a></li>

http://git-wip-us.apache.org/repos/asf/creadur-site/blob/9736b609/rat/apidocs/constant-values.html
----------------------------------------------------------------------
diff --git a/rat/apidocs/constant-values.html b/rat/apidocs/constant-values.html
index 879c467..68e141d 100644
--- a/rat/apidocs/constant-values.html
+++ b/rat/apidocs/constant-values.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>Constant Field Values (Apache Creadur Rat 0.13-SNAPSHOT API)</title>
+<title>Constant Field Values (Apache Creadur Rat 0.13 API)</title>
 <link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
 <script type="text/javascript" src="script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="Constant Field Values (Apache Creadur Rat 
0.13-SNAPSHOT API)";
+            parent.document.title="Constant Field Values (Apache Creadur Rat 
0.13 API)";
         }
     }
     catch(err) {
@@ -126,6 +126,13 @@
 <td class="colLast"><code>"Licensed under the Apache License, Version 2.0 (the 
\"License\")"</code></td>
 </tr>
 <tr class="rowColor">
+<td class="colFirst"><a 
name="org.apache.rat.analysis.license.ApacheSoftwareLicense20.FIRST_LICENSE_LINE_SHORT">
+<!--   -->
+</a><code>public&nbsp;static&nbsp;final&nbsp;<a 
href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String</a></code></td>
+<td><code><a 
href="org/apache/rat/analysis/license/ApacheSoftwareLicense20.html#FIRST_LICENSE_LINE_SHORT">FIRST_LICENSE_LINE_SHORT</a></code></td>
+<td class="colLast"><code>"Licensed to the Apache Software Foundation (ASF) 
under one or more contributor license agreements; and to You under the Apache 
License, Version 2.0."</code></td>
+</tr>
+<tr class="altColor">
 <td class="colFirst"><a 
name="org.apache.rat.analysis.license.ApacheSoftwareLicense20.LICENSE_REFERENCE_LINE">
 <!--   -->
 </a><code>public&nbsp;static&nbsp;final&nbsp;<a 
href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String</a></code></td>
@@ -581,10 +588,10 @@
 </tr>
 <tbody>
 <tr class="altColor">
-<td class="colFirst"><a 
name="org.apache.rat.document.impl.guesser.BinaryGuesser.ASCII_CHAR_THREASHOLD">
+<td class="colFirst"><a 
name="org.apache.rat.document.impl.guesser.BinaryGuesser.ASCII_CHAR_THRESHOLD">
 <!--   -->
 </a><code>public&nbsp;static&nbsp;final&nbsp;int</code></td>
-<td><code><a 
href="org/apache/rat/document/impl/guesser/BinaryGuesser.html#ASCII_CHAR_THREASHOLD">ASCII_CHAR_THREASHOLD</a></code></td>
+<td><code><a 
href="org/apache/rat/document/impl/guesser/BinaryGuesser.html#ASCII_CHAR_THRESHOLD">ASCII_CHAR_THRESHOLD</a></code></td>
 <td class="colLast"><code>8</code></td>
 </tr>
 <tr class="rowColor">
@@ -609,10 +616,10 @@
 <td class="colLast"><code>"JAVA"</code></td>
 </tr>
 <tr class="altColor">
-<td class="colFirst"><a 
name="org.apache.rat.document.impl.guesser.BinaryGuesser.NON_ASCII_THREASHOLD">
+<td class="colFirst"><a 
name="org.apache.rat.document.impl.guesser.BinaryGuesser.NON_ASCII_THRESHOLD">
 <!--   -->
 </a><code>public&nbsp;static&nbsp;final&nbsp;int</code></td>
-<td><code><a 
href="org/apache/rat/document/impl/guesser/BinaryGuesser.html#NON_ASCII_THREASHOLD">NON_ASCII_THREASHOLD</a></code></td>
+<td><code><a 
href="org/apache/rat/document/impl/guesser/BinaryGuesser.html#NON_ASCII_THRESHOLD">NON_ASCII_THRESHOLD</a></code></td>
 <td class="colLast"><code>256</code></td>
 </tr>
 <tr class="rowColor">
@@ -779,6 +786,6 @@
 <!--   -->
 </a></div>
 <!-- ======== END OF BOTTOM NAVBAR ======= -->
-<p class="legalCopy"><small>Copyright &#169; 2006&#x2013;2016 <a 
href="http://www.apache.org";>Apache Software Foundation</a>. All rights 
reserved.</small></p>
+<p class="legalCopy"><small>Copyright &#169; 2006&#x2013;2018 <a 
href="https://www.apache.org";>Apache Software Foundation</a>. All rights 
reserved.</small></p>
 </body>
 </html>

http://git-wip-us.apache.org/repos/asf/creadur-site/blob/9736b609/rat/apidocs/deprecated-list.html
----------------------------------------------------------------------
diff --git a/rat/apidocs/deprecated-list.html b/rat/apidocs/deprecated-list.html
index 59cb867..bc9569a 100644
--- a/rat/apidocs/deprecated-list.html
+++ b/rat/apidocs/deprecated-list.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>Deprecated List (Apache Creadur Rat 0.13-SNAPSHOT API)</title>
+<title>Deprecated List (Apache Creadur Rat 0.13 API)</title>
 <link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
 <script type="text/javascript" src="script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="Deprecated List (Apache Creadur Rat 
0.13-SNAPSHOT API)";
+            parent.document.title="Deprecated List (Apache Creadur Rat 0.13 
API)";
         }
     }
     catch(err) {
@@ -149,6 +149,6 @@
 <!--   -->
 </a></div>
 <!-- ======== END OF BOTTOM NAVBAR ======= -->
-<p class="legalCopy"><small>Copyright &#169; 2006&#x2013;2016 <a 
href="http://www.apache.org";>Apache Software Foundation</a>. All rights 
reserved.</small></p>
+<p class="legalCopy"><small>Copyright &#169; 2006&#x2013;2018 <a 
href="https://www.apache.org";>Apache Software Foundation</a>. All rights 
reserved.</small></p>
 </body>
 </html>

http://git-wip-us.apache.org/repos/asf/creadur-site/blob/9736b609/rat/apidocs/help-doc.html
----------------------------------------------------------------------
diff --git a/rat/apidocs/help-doc.html b/rat/apidocs/help-doc.html
index dd26bb8..4ef9fb7 100644
--- a/rat/apidocs/help-doc.html
+++ b/rat/apidocs/help-doc.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>API Help (Apache Creadur Rat 0.13-SNAPSHOT API)</title>
+<title>API Help (Apache Creadur Rat 0.13 API)</title>
 <link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
 <script type="text/javascript" src="script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="API Help (Apache Creadur Rat 0.13-SNAPSHOT 
API)";
+            parent.document.title="API Help (Apache Creadur Rat 0.13 API)";
         }
     }
     catch(err) {
@@ -225,6 +225,6 @@
 <!--   -->
 </a></div>
 <!-- ======== END OF BOTTOM NAVBAR ======= -->
-<p class="legalCopy"><small>Copyright &#169; 2006&#x2013;2016 <a 
href="http://www.apache.org";>Apache Software Foundation</a>. All rights 
reserved.</small></p>
+<p class="legalCopy"><small>Copyright &#169; 2006&#x2013;2018 <a 
href="https://www.apache.org";>Apache Software Foundation</a>. All rights 
reserved.</small></p>
 </body>
 </html>

http://git-wip-us.apache.org/repos/asf/creadur-site/blob/9736b609/rat/apidocs/index-all.html
----------------------------------------------------------------------
diff --git a/rat/apidocs/index-all.html b/rat/apidocs/index-all.html
index 187a8e3..24d2b75 100644
--- a/rat/apidocs/index-all.html
+++ b/rat/apidocs/index-all.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>Index (Apache Creadur Rat 0.13-SNAPSHOT API)</title>
+<title>Index (Apache Creadur Rat 0.13 API)</title>
 <link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
 <script type="text/javascript" src="script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="Index (Apache Creadur Rat 0.13-SNAPSHOT 
API)";
+            parent.document.title="Index (Apache Creadur Rat 0.13 API)";
         }
     }
     catch(err) {
@@ -186,7 +186,7 @@
 <dt><a 
href="org/apache/rat/analysis/license/AppliedApacheSoftwareLicense20.html" 
title="class in org.apache.rat.analysis.license"><span 
class="typeNameLink">AppliedApacheSoftwareLicense20</span></a> - Class in <a 
href="org/apache/rat/analysis/license/package-summary.html">org.apache.rat.analysis.license</a></dt>
 <dd>
 <div class="block">Matches an applied AL 2.0 License header, including a 
<em>required</em>
- initial copyright header line, conforming the <a 
href="http://apache.org/licenses/LICENSE-2.0.html#apply";>template</a>
+ initial copyright header line, conforming the <a 
href="https://apache.org/licenses/LICENSE-2.0.html#apply";>template</a>
  from the AL 2.0 license itself.</div>
 </dd>
 <dt><span class="memberNameLink"><a 
href="org/apache/rat/analysis/license/AppliedApacheSoftwareLicense20.html#AppliedApacheSoftwareLicense20--">AppliedApacheSoftwareLicense20()</a></span>
 - Constructor for class org.apache.rat.analysis.license.<a 
href="org/apache/rat/analysis/license/AppliedApacheSoftwareLicense20.html" 
title="class in 
org.apache.rat.analysis.license">AppliedApacheSoftwareLicense20</a></dt>
@@ -217,7 +217,7 @@
 </dd>
 <dt><span class="memberNameLink"><a 
href="org/apache/rat/analysis/license/MITLicense.html#AS_IS_LICENSE_LINE">AS_IS_LICENSE_LINE</a></span>
 - Static variable in class org.apache.rat.analysis.license.<a 
href="org/apache/rat/analysis/license/MITLicense.html" title="class in 
org.apache.rat.analysis.license">MITLicense</a></dt>
 <dd>&nbsp;</dd>
-<dt><span class="memberNameLink"><a 
href="org/apache/rat/document/impl/guesser/BinaryGuesser.html#ASCII_CHAR_THREASHOLD">ASCII_CHAR_THREASHOLD</a></span>
 - Static variable in class org.apache.rat.document.impl.guesser.<a 
href="org/apache/rat/document/impl/guesser/BinaryGuesser.html" title="class in 
org.apache.rat.document.impl.guesser">BinaryGuesser</a></dt>
+<dt><span class="memberNameLink"><a 
href="org/apache/rat/document/impl/guesser/BinaryGuesser.html#ASCII_CHAR_THRESHOLD">ASCII_CHAR_THRESHOLD</a></span>
 - Static variable in class org.apache.rat.document.impl.guesser.<a 
href="org/apache/rat/document/impl/guesser/BinaryGuesser.html" title="class in 
org.apache.rat.document.impl.guesser">BinaryGuesser</a></dt>
 <dd>&nbsp;</dd>
 <dt><span class="memberNameLink"><a 
href="org/apache/rat/analysis/license/AppliedApacheSoftwareLicense20.html#ASL20_LICENSE_DEFN">ASL20_LICENSE_DEFN</a></span>
 - Static variable in class org.apache.rat.analysis.license.<a 
href="org/apache/rat/analysis/license/AppliedApacheSoftwareLicense20.html" 
title="class in 
org.apache.rat.analysis.license">AppliedApacheSoftwareLicense20</a></dt>
 <dd>&nbsp;</dd>
@@ -471,11 +471,11 @@
 </dd>
 <dt><span class="memberNameLink"><a 
href="org/apache/rat/mp/util/ExclusionHelper.html#ExclusionHelper--">ExclusionHelper()</a></span>
 - Constructor for class org.apache.rat.mp.util.<a 
href="org/apache/rat/mp/util/ExclusionHelper.html" title="class in 
org.apache.rat.mp.util">ExclusionHelper</a></dt>
 <dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a 
href="HelpMojo.html#execute--">execute()</a></span> - Method in class <a 
href="HelpMojo.html" title="class in &lt;Unnamed&gt;">HelpMojo</a></dt>
 <dt><span class="memberNameLink"><a 
href="org/apache/rat/anttasks/Report.html#execute--">execute()</a></span> - 
Method in class org.apache.rat.anttasks.<a 
href="org/apache/rat/anttasks/Report.html" title="class in 
org.apache.rat.anttasks">Report</a></dt>
 <dd>
 <div class="block">Generates the report.</div>
 </dd>
-<dt><span class="memberNameLink"><a 
href="org/apache/rat/mp/HelpMojo.html#execute--">execute()</a></span> - Method 
in class org.apache.rat.mp.<a href="org/apache/rat/mp/HelpMojo.html" 
title="class in org.apache.rat.mp">HelpMojo</a></dt>
 <dt><span class="memberNameLink"><a 
href="org/apache/rat/mp/RatCheckMojo.html#execute--">execute()</a></span> - 
Method in class org.apache.rat.mp.<a href="org/apache/rat/mp/RatCheckMojo.html" 
title="class in org.apache.rat.mp">RatCheckMojo</a></dt>
 <dd>
 <div class="block">Invoked by Maven to execute the Mojo.</div>
@@ -516,6 +516,8 @@
 <dd>&nbsp;</dd>
 <dt><span class="memberNameLink"><a 
href="org/apache/rat/analysis/license/MITLicense.html#FIRST_LICENSE_LINE">FIRST_LICENSE_LINE</a></span>
 - Static variable in class org.apache.rat.analysis.license.<a 
href="org/apache/rat/analysis/license/MITLicense.html" title="class in 
org.apache.rat.analysis.license">MITLicense</a></dt>
 <dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a 
href="org/apache/rat/analysis/license/ApacheSoftwareLicense20.html#FIRST_LICENSE_LINE_SHORT">FIRST_LICENSE_LINE_SHORT</a></span>
 - Static variable in class org.apache.rat.analysis.license.<a 
href="org/apache/rat/analysis/license/ApacheSoftwareLicense20.html" 
title="class in 
org.apache.rat.analysis.license">ApacheSoftwareLicense20</a></dt>
+<dd>&nbsp;</dd>
 <dt><span class="memberNameLink"><a 
href="org/apache/rat/anttasks/Report.Format.html#Format--">Format()</a></span> 
- Constructor for class org.apache.rat.anttasks.<a 
href="org/apache/rat/anttasks/Report.Format.html" title="class in 
org.apache.rat.anttasks">Report.Format</a></dt>
 <dd>&nbsp;</dd>
 <dt><a href="org/apache/rat/anttasks/FullTextLicenseMatcher.html" title="class 
in org.apache.rat.anttasks"><span 
class="typeNameLink">FullTextLicenseMatcher</span></a> - Class in <a 
href="org/apache/rat/anttasks/package-summary.html">org.apache.rat.anttasks</a></dt>
@@ -645,10 +647,6 @@
 <dd>
 <div class="block">Maybe <code>null</code>, check before with</div>
 </dd>
-<dt><span class="memberNameLink"><a 
href="org/apache/rat/Report.html#getInputFileFilter--">getInputFileFilter()</a></span>
 - Method in class org.apache.rat.<a href="org/apache/rat/Report.html" 
title="class in org.apache.rat">Report</a></dt>
-<dd>
-<div class="block">Gets the current filter used to select files.</div>
-</dd>
 <dt><span class="memberNameLink"><a 
href="org/apache/rat/annotation/AbstractLicenseAppender.html#getLastLine-int-">getLastLine(int)</a></span>
 - Method in class org.apache.rat.annotation.<a 
href="org/apache/rat/annotation/AbstractLicenseAppender.html" title="class in 
org.apache.rat.annotation">AbstractLicenseAppender</a></dt>
 <dd>
 <div class="block">Get the last line of the license header formatted
@@ -876,11 +874,11 @@
 </dd>
 <dt><span class="memberNameLink"><a 
href="org/apache/rat/mp/HeaderMatcherSpecification.html#HeaderMatcherSpecification--">HeaderMatcherSpecification()</a></span>
 - Constructor for class org.apache.rat.mp.<a 
href="org/apache/rat/mp/HeaderMatcherSpecification.html" title="class in 
org.apache.rat.mp">HeaderMatcherSpecification</a></dt>
 <dd>&nbsp;</dd>
-<dt><a href="org/apache/rat/mp/HelpMojo.html" title="class in 
org.apache.rat.mp"><span class="typeNameLink">HelpMojo</span></a> - Class in <a 
href="org/apache/rat/mp/package-summary.html">org.apache.rat.mp</a></dt>
+<dt><a href="HelpMojo.html" title="class in &lt;Unnamed&gt;"><span 
class="typeNameLink">HelpMojo</span></a> - Class in <a 
href="package-summary.html">&lt;Unnamed&gt;</a></dt>
 <dd>
 <div class="block">Display help information on apache-rat-plugin.</div>
 </dd>
-<dt><span class="memberNameLink"><a 
href="org/apache/rat/mp/HelpMojo.html#HelpMojo--">HelpMojo()</a></span> - 
Constructor for class org.apache.rat.mp.<a 
href="org/apache/rat/mp/HelpMojo.html" title="class in 
org.apache.rat.mp">HelpMojo</a></dt>
+<dt><span class="memberNameLink"><a 
href="HelpMojo.html#HelpMojo--">HelpMojo()</a></span> - Constructor for class 
<a href="HelpMojo.html" title="class in &lt;Unnamed&gt;">HelpMojo</a></dt>
 <dd>&nbsp;</dd>
 <dt><span class="memberNameLink"><a 
href="org/apache/rat/document/impl/guesser/BinaryGuesser.html#HIGH_BYTES_RATIO">HIGH_BYTES_RATIO</a></span>
 - Static variable in class org.apache.rat.document.impl.guesser.<a 
href="org/apache/rat/document/impl/guesser/BinaryGuesser.html" title="class in 
org.apache.rat.document.impl.guesser">BinaryGuesser</a></dt>
 <dd>&nbsp;</dd>
@@ -892,8 +890,6 @@
 <dl>
 <dt><a href="org/apache/rat/document/IDocumentAnalyser.html" title="interface 
in org.apache.rat.document"><span 
class="typeNameLink">IDocumentAnalyser</span></a> - Interface in <a 
href="org/apache/rat/document/package-summary.html">org.apache.rat.document</a></dt>
 <dd>&nbsp;</dd>
-<dt><span class="memberNameLink"><a 
href="org/apache/rat/walker/Walker.html#ignored-java.io.File-">ignored(File)</a></span>
 - Method in class org.apache.rat.walker.<a 
href="org/apache/rat/walker/Walker.html" title="class in 
org.apache.rat.walker">Walker</a></dt>
-<dd>&nbsp;</dd>
 <dt><a href="org/apache/rat/analysis/IHeaderMatcher.html" title="interface in 
org.apache.rat.analysis"><span class="typeNameLink">IHeaderMatcher</span></a> - 
Interface in <a 
href="org/apache/rat/analysis/package-summary.html">org.apache.rat.analysis</a></dt>
 <dd>
 <div class="block">Matches text headers to known licenses.</div>
@@ -930,6 +926,8 @@
 <dd>&nbsp;</dd>
 <dt><span class="memberNameLink"><a 
href="org/apache/rat/document/impl/guesser/ArchiveGuesser.html#isArchive-java.lang.String-">isArchive(String)</a></span>
 - Static method in class org.apache.rat.document.impl.guesser.<a 
href="org/apache/rat/document/impl/guesser/ArchiveGuesser.html" title="class in 
org.apache.rat.document.impl.guesser">ArchiveGuesser</a></dt>
 <dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a 
href="org/apache/rat/document/impl/guesser/BinaryGuesser.html#isAudio-java.lang.String-">isAudio(String)</a></span>
 - Static method in class org.apache.rat.document.impl.guesser.<a 
href="org/apache/rat/document/impl/guesser/BinaryGuesser.html" title="class in 
org.apache.rat.document.impl.guesser">BinaryGuesser</a></dt>
+<dd>&nbsp;</dd>
 <dt><span class="memberNameLink"><a 
href="org/apache/rat/document/impl/guesser/BinaryGuesser.html#isBinary-java.io.Reader-">isBinary(Reader)</a></span>
 - Static method in class org.apache.rat.document.impl.guesser.<a 
href="org/apache/rat/document/impl/guesser/BinaryGuesser.html" title="class in 
org.apache.rat.document.impl.guesser">BinaryGuesser</a></dt>
 <dd>&nbsp;</dd>
 <dt><span class="memberNameLink"><a 
href="org/apache/rat/document/impl/guesser/BinaryGuesser.html#isBinary-java.io.InputStream-">isBinary(InputStream)</a></span>
 - Static method in class org.apache.rat.document.impl.guesser.<a 
href="org/apache/rat/document/impl/guesser/BinaryGuesser.html" title="class in 
org.apache.rat.document.impl.guesser">BinaryGuesser</a></dt>
@@ -972,6 +970,8 @@
 <dd>&nbsp;</dd>
 <dt><span class="memberNameLink"><a 
href="org/apache/rat/document/impl/guesser/NoteGuesser.html#isNote-org.apache.rat.api.Document-">isNote(Document)</a></span>
 - Static method in class org.apache.rat.document.impl.guesser.<a 
href="org/apache/rat/document/impl/guesser/NoteGuesser.html" title="class in 
org.apache.rat.document.impl.guesser">NoteGuesser</a></dt>
 <dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a 
href="org/apache/rat/walker/Walker.html#isNotIgnored-java.io.File-">isNotIgnored(File)</a></span>
 - Method in class org.apache.rat.walker.<a 
href="org/apache/rat/walker/Walker.html" title="class in 
org.apache.rat.walker">Walker</a></dt>
+<dd>&nbsp;</dd>
 <dt><span class="memberNameLink"><a 
href="org/apache/rat/walker/DirectoryWalker.html#isRestricted--">isRestricted()</a></span>
 - Method in class org.apache.rat.walker.<a 
href="org/apache/rat/walker/DirectoryWalker.html" title="class in 
org.apache.rat.walker">DirectoryWalker</a></dt>
 <dd>&nbsp;</dd>
 <dt><span class="memberNameLink"><a 
href="org/apache/rat/walker/Walker.html#isRestricted-java.io.File-">isRestricted(File)</a></span>
 - Method in class org.apache.rat.walker.<a 
href="org/apache/rat/walker/Walker.html" title="class in 
org.apache.rat.walker">Walker</a></dt>
@@ -1132,7 +1132,7 @@
 <dd>&nbsp;</dd>
 <dt><span class="memberNameLink"><a 
href="org/apache/rat/mp/util/ConfigurationHelper.html#newInstance-java.lang.Class-java.lang.String-">newInstance(Class&lt;T&gt;,
 String)</a></span> - Static method in class org.apache.rat.mp.util.<a 
href="org/apache/rat/mp/util/ConfigurationHelper.html" title="class in 
org.apache.rat.mp.util">ConfigurationHelper</a></dt>
 <dd>&nbsp;</dd>
-<dt><span class="memberNameLink"><a 
href="org/apache/rat/document/impl/guesser/BinaryGuesser.html#NON_ASCII_THREASHOLD">NON_ASCII_THREASHOLD</a></span>
 - Static variable in class org.apache.rat.document.impl.guesser.<a 
href="org/apache/rat/document/impl/guesser/BinaryGuesser.html" title="class in 
org.apache.rat.document.impl.guesser">BinaryGuesser</a></dt>
+<dt><span class="memberNameLink"><a 
href="org/apache/rat/document/impl/guesser/BinaryGuesser.html#NON_ASCII_THRESHOLD">NON_ASCII_THRESHOLD</a></span>
 - Static variable in class org.apache.rat.document.impl.guesser.<a 
href="org/apache/rat/document/impl/guesser/BinaryGuesser.html" title="class in 
org.apache.rat.document.impl.guesser">BinaryGuesser</a></dt>
 <dd>&nbsp;</dd>
 <dt><span class="memberNameLink"><a 
href="org/apache/rat/document/impl/guesser/GuessUtils.html#normalise-java.lang.String-">normalise(String)</a></span>
 - Static method in class org.apache.rat.document.impl.guesser.<a 
href="org/apache/rat/document/impl/guesser/GuessUtils.html" title="class in 
org.apache.rat.document.impl.guesser">GuessUtils</a></dt>
 <dd>
@@ -1210,10 +1210,7 @@
 <dt><a 
href="org/apache/rat/license/package-summary.html">org.apache.rat.license</a> - 
package org.apache.rat.license</dt>
 <dd>&nbsp;</dd>
 <dt><a href="org/apache/rat/mp/package-summary.html">org.apache.rat.mp</a> - 
package org.apache.rat.mp</dt>
-<dd>
-<div class="block">This package contains the Rat plugins for
-<a href="http://maven.apache.org";>Maven 2</a>.</div>
-</dd>
+<dd>&nbsp;</dd>
 <dt><a 
href="org/apache/rat/mp/util/package-summary.html">org.apache.rat.mp.util</a> - 
package org.apache.rat.mp.util</dt>
 <dd>&nbsp;</dd>
 <dt><a 
href="org/apache/rat/policy/package-summary.html">org.apache.rat.policy</a> - 
package org.apache.rat.policy</dt>
@@ -1999,6 +1996,6 @@ the order they are declared.</div>
 <!--   -->
 </a></div>
 <!-- ======== END OF BOTTOM NAVBAR ======= -->
-<p class="legalCopy"><small>Copyright &#169; 2006&#x2013;2016 <a 
href="http://www.apache.org";>Apache Software Foundation</a>. All rights 
reserved.</small></p>
+<p class="legalCopy"><small>Copyright &#169; 2006&#x2013;2018 <a 
href="https://www.apache.org";>Apache Software Foundation</a>. All rights 
reserved.</small></p>
 </body>
 </html>

http://git-wip-us.apache.org/repos/asf/creadur-site/blob/9736b609/rat/apidocs/index.html
----------------------------------------------------------------------
diff --git a/rat/apidocs/index.html b/rat/apidocs/index.html
index c3746c9..6669192 100644
--- a/rat/apidocs/index.html
+++ b/rat/apidocs/index.html
@@ -4,13 +4,14 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>Apache Creadur Rat 0.13-SNAPSHOT API</title>
+<title>Apache Creadur Rat 0.13 API</title>
 <script type="text/javascript">
-    targetPage = "" + window.location.search;
-    if (targetPage != "" && targetPage != "undefined")
-        targetPage = targetPage.substring(1);
-    if (targetPage.indexOf(":") != -1 || (targetPage != "" && 
!validURL(targetPage)))
-        targetPage = "undefined";
+    tmpTargetPage = "" + window.location.search;
+    if (tmpTargetPage != "" && tmpTargetPage != "undefined")
+        tmpTargetPage = tmpTargetPage.substring(1);
+    if (tmpTargetPage.indexOf(":") != -1 || (tmpTargetPage != "" && 
!validURL(tmpTargetPage)))
+        tmpTargetPage = "undefined";
+    targetPage = tmpTargetPage;
     function validURL(url) {
         try {
             url = decodeURIComponent(url);

http://git-wip-us.apache.org/repos/asf/creadur-site/blob/9736b609/rat/apidocs/org/apache/rat/Defaults.html
----------------------------------------------------------------------
diff --git a/rat/apidocs/org/apache/rat/Defaults.html 
b/rat/apidocs/org/apache/rat/Defaults.html
index ce16459..b2092cb 100644
--- a/rat/apidocs/org/apache/rat/Defaults.html
+++ b/rat/apidocs/org/apache/rat/Defaults.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>Defaults (Apache Creadur Rat 0.13-SNAPSHOT API)</title>
+<title>Defaults (Apache Creadur Rat 0.13 API)</title>
 <link rel="stylesheet" type="text/css" href="../../../stylesheet.css" 
title="Style">
 <script type="text/javascript" src="../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="Defaults (Apache Creadur Rat 0.13-SNAPSHOT 
API)";
+            parent.document.title="Defaults (Apache Creadur Rat 0.13 API)";
         }
     }
     catch(err) {
@@ -360,6 +360,6 @@ extends <a 
href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
 <!--   -->
 </a></div>
 <!-- ======== END OF BOTTOM NAVBAR ======= -->
-<p class="legalCopy"><small>Copyright &#169; 2006&#x2013;2016 <a 
href="http://www.apache.org";>Apache Software Foundation</a>. All rights 
reserved.</small></p>
+<p class="legalCopy"><small>Copyright &#169; 2006&#x2013;2018 <a 
href="https://www.apache.org";>Apache Software Foundation</a>. All rights 
reserved.</small></p>
 </body>
 </html>

http://git-wip-us.apache.org/repos/asf/creadur-site/blob/9736b609/rat/apidocs/org/apache/rat/Report.html
----------------------------------------------------------------------
diff --git a/rat/apidocs/org/apache/rat/Report.html 
b/rat/apidocs/org/apache/rat/Report.html
index daf3024..3e79af9 100644
--- a/rat/apidocs/org/apache/rat/Report.html
+++ b/rat/apidocs/org/apache/rat/Report.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>Report (Apache Creadur Rat 0.13-SNAPSHOT API)</title>
+<title>Report (Apache Creadur Rat 0.13 API)</title>
 <link rel="stylesheet" type="text/css" href="../../../stylesheet.css" 
title="Style">
 <script type="text/javascript" src="../../../script.js"></script>
 </head>
@@ -12,13 +12,13 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="Report (Apache Creadur Rat 0.13-SNAPSHOT 
API)";
+            parent.document.title="Report (Apache Creadur Rat 0.13 API)";
         }
     }
     catch(err) {
     }
 //-->
-var methods = 
{"i0":10,"i1":9,"i2":9,"i3":42,"i4":9,"i5":10,"i6":9,"i7":10,"i8":42,"i9":10};
+var methods = 
{"i0":9,"i1":9,"i2":42,"i3":9,"i4":10,"i5":9,"i6":10,"i7":42,"i8":10};
 var tabs = {65535:["t0","All Methods"],1:["t1","Static 
Methods"],2:["t2","Instance Methods"],8:["t4","Concrete 
Methods"],32:["t6","Deprecated Methods"]};
 var altColor = "altColor";
 var rowColor = "rowColor";
@@ -130,22 +130,16 @@ extends <a 
href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
 <th class="colLast" scope="col">Method and Description</th>
 </tr>
 <tr id="i0" class="altColor">
-<td class="colFirst"><code><a 
href="http://docs.oracle.com/javase/8/docs/api/java/io/FilenameFilter.html?is-external=true";
 title="class or interface in java.io">FilenameFilter</a></code></td>
-<td class="colLast"><code><span class="memberNameLink"><a 
href="../../../org/apache/rat/Report.html#getInputFileFilter--">getInputFileFilter</a></span>()</code>
-<div class="block">Gets the current filter used to select files.</div>
-</td>
-</tr>
-<tr id="i1" class="rowColor">
 <td class="colFirst"><code>static void</code></td>
 <td class="colLast"><code><span class="memberNameLink"><a 
href="../../../org/apache/rat/Report.html#main-java.lang.String:A-">main</a></span>(<a
 
href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in 
java.lang">String</a>[]&nbsp;args)</code>&nbsp;</td>
 </tr>
-<tr id="i2" class="altColor">
+<tr id="i1" class="rowColor">
 <td class="colFirst"><code>static <a 
href="../../../org/apache/rat/report/claim/ClaimStatistic.html" title="class in 
org.apache.rat.report.claim">ClaimStatistic</a></code></td>
 <td class="colLast"><code><span class="memberNameLink"><a 
href="../../../org/apache/rat/Report.html#report-org.apache.rat.report.IReportable-java.io.Writer-org.apache.rat.ReportConfiguration-">report</a></span>(<a
 href="../../../org/apache/rat/report/IReportable.html" title="interface in 
org.apache.rat.report">IReportable</a>&nbsp;container,
       <a 
href="http://docs.oracle.com/javase/8/docs/api/java/io/Writer.html?is-external=true";
 title="class or interface in java.io">Writer</a>&nbsp;out,
       <a href="../../../org/apache/rat/ReportConfiguration.html" title="class 
in 
org.apache.rat">ReportConfiguration</a>&nbsp;pConfiguration)</code>&nbsp;</td>
 </tr>
-<tr id="i3" class="rowColor">
+<tr id="i2" class="altColor">
 <td class="colFirst"><code><a 
href="../../../org/apache/rat/report/claim/ClaimStatistic.html" title="class in 
org.apache.rat.report.claim">ClaimStatistic</a></code></td>
 <td class="colLast"><code><span class="memberNameLink"><a 
href="../../../org/apache/rat/Report.html#report-java.io.PrintStream-">report</a></span>(<a
 
href="http://docs.oracle.com/javase/8/docs/api/java/io/PrintStream.html?is-external=true";
 title="class or interface in java.io">PrintStream</a>&nbsp;out)</code>
 <div class="block"><span class="deprecatedLabel">Deprecated.</span>&nbsp;
@@ -153,7 +147,7 @@ extends <a 
href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
 </div>
 </td>
 </tr>
-<tr id="i4" class="altColor">
+<tr id="i3" class="rowColor">
 <td class="colFirst"><code>static void</code></td>
 <td class="colLast"><code><span class="memberNameLink"><a 
href="../../../org/apache/rat/Report.html#report-java.io.PrintStream-org.apache.rat.report.IReportable-java.io.InputStream-org.apache.rat.ReportConfiguration-">report</a></span>(<a
 
href="http://docs.oracle.com/javase/8/docs/api/java/io/PrintStream.html?is-external=true";
 title="class or interface in java.io">PrintStream</a>&nbsp;out,
       <a href="../../../org/apache/rat/report/IReportable.html" 
title="interface in org.apache.rat.report">IReportable</a>&nbsp;base,
@@ -162,12 +156,12 @@ extends <a 
href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
 <div class="block">Output a report that is styled using a defined 
stylesheet.</div>
 </td>
 </tr>
-<tr id="i5" class="rowColor">
+<tr id="i4" class="altColor">
 <td class="colFirst"><code><a 
href="../../../org/apache/rat/report/claim/ClaimStatistic.html" title="class in 
org.apache.rat.report.claim">ClaimStatistic</a></code></td>
 <td class="colLast"><code><span class="memberNameLink"><a 
href="../../../org/apache/rat/Report.html#report-java.io.PrintStream-org.apache.rat.ReportConfiguration-">report</a></span>(<a
 
href="http://docs.oracle.com/javase/8/docs/api/java/io/PrintStream.html?is-external=true";
 title="class or interface in java.io">PrintStream</a>&nbsp;out,
       <a href="../../../org/apache/rat/ReportConfiguration.html" title="class 
in org.apache.rat">ReportConfiguration</a>&nbsp;configuration)</code>&nbsp;</td>
 </tr>
-<tr id="i6" class="altColor">
+<tr id="i5" class="rowColor">
 <td class="colFirst"><code>static <a 
href="../../../org/apache/rat/report/claim/ClaimStatistic.html" title="class in 
org.apache.rat.report.claim">ClaimStatistic</a></code></td>
 <td class="colLast"><code><span class="memberNameLink"><a 
href="../../../org/apache/rat/Report.html#report-java.io.Writer-org.apache.rat.report.IReportable-java.io.InputStream-org.apache.rat.ReportConfiguration-">report</a></span>(<a
 
href="http://docs.oracle.com/javase/8/docs/api/java/io/Writer.html?is-external=true";
 title="class or interface in java.io">Writer</a>&nbsp;out,
       <a href="../../../org/apache/rat/report/IReportable.html" 
title="interface in org.apache.rat.report">IReportable</a>&nbsp;base,
@@ -176,13 +170,13 @@ extends <a 
href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
 <div class="block">Output a report that is styled using a defined 
stylesheet.</div>
 </td>
 </tr>
-<tr id="i7" class="rowColor">
+<tr id="i6" class="altColor">
 <td class="colFirst"><code>void</code></td>
 <td class="colLast"><code><span class="memberNameLink"><a 
href="../../../org/apache/rat/Report.html#setInputFileFilter-java.io.FilenameFilter-">setInputFileFilter</a></span>(<a
 
href="http://docs.oracle.com/javase/8/docs/api/java/io/FilenameFilter.html?is-external=true";
 title="class or interface in 
java.io">FilenameFilter</a>&nbsp;inputFileFilter)</code>
 <div class="block">Sets the current filter used to select files.</div>
 </td>
 </tr>
-<tr id="i8" class="altColor">
+<tr id="i7" class="rowColor">
 <td class="colFirst"><code>void</code></td>
 <td class="colLast"><code><span class="memberNameLink"><a 
href="../../../org/apache/rat/Report.html#styleReport-java.io.PrintStream-">styleReport</a></span>(<a
 
href="http://docs.oracle.com/javase/8/docs/api/java/io/PrintStream.html?is-external=true";
 title="class or interface in java.io">PrintStream</a>&nbsp;out)</code>
 <div class="block"><span class="deprecatedLabel">Deprecated.</span>&nbsp;
@@ -190,7 +184,7 @@ extends <a 
href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
 </div>
 </td>
 </tr>
-<tr id="i9" class="rowColor">
+<tr id="i8" class="altColor">
 <td class="colFirst"><code>void</code></td>
 <td class="colLast"><code><span class="memberNameLink"><a 
href="../../../org/apache/rat/Report.html#styleReport-java.io.PrintStream-org.apache.rat.ReportConfiguration-">styleReport</a></span>(<a
 
href="http://docs.oracle.com/javase/8/docs/api/java/io/PrintStream.html?is-external=true";
 title="class or interface in java.io">PrintStream</a>&nbsp;out,
            <a href="../../../org/apache/rat/ReportConfiguration.html" 
title="class in 
org.apache.rat">ReportConfiguration</a>&nbsp;configuration)</code>
@@ -234,20 +228,6 @@ extends <a 
href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
 </dl>
 </li>
 </ul>
-<a name="getInputFileFilter--">
-<!--   -->
-</a>
-<ul class="blockList">
-<li class="blockList">
-<h4>getInputFileFilter</h4>
-<pre>public&nbsp;<a 
href="http://docs.oracle.com/javase/8/docs/api/java/io/FilenameFilter.html?is-external=true";
 title="class or interface in 
java.io">FilenameFilter</a>&nbsp;getInputFileFilter()</pre>
-<div class="block">Gets the current filter used to select files.</div>
-<dl>
-<dt><span class="returnLabel">Returns:</span></dt>
-<dd>current file filter, or null when no filter has been set</dd>
-</dl>
-</li>
-</ul>
 <a name="setInputFileFilter-java.io.FilenameFilter-">
 <!--   -->
 </a>
@@ -499,6 +479,6 @@ public&nbsp;void&nbsp;styleReport(<a 
href="http://docs.oracle.com/javase/8/docs/
 <!--   -->
 </a></div>
 <!-- ======== END OF BOTTOM NAVBAR ======= -->
-<p class="legalCopy"><small>Copyright &#169; 2006&#x2013;2016 <a 
href="http://www.apache.org";>Apache Software Foundation</a>. All rights 
reserved.</small></p>
+<p class="legalCopy"><small>Copyright &#169; 2006&#x2013;2018 <a 
href="https://www.apache.org";>Apache Software Foundation</a>. All rights 
reserved.</small></p>
 </body>
 </html>

http://git-wip-us.apache.org/repos/asf/creadur-site/blob/9736b609/rat/apidocs/org/apache/rat/ReportConfiguration.html
----------------------------------------------------------------------
diff --git a/rat/apidocs/org/apache/rat/ReportConfiguration.html 
b/rat/apidocs/org/apache/rat/ReportConfiguration.html
index 4d09456..3f5938c 100644
--- a/rat/apidocs/org/apache/rat/ReportConfiguration.html
+++ b/rat/apidocs/org/apache/rat/ReportConfiguration.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>ReportConfiguration (Apache Creadur Rat 0.13-SNAPSHOT API)</title>
+<title>ReportConfiguration (Apache Creadur Rat 0.13 API)</title>
 <link rel="stylesheet" type="text/css" href="../../../stylesheet.css" 
title="Style">
 <script type="text/javascript" src="../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="ReportConfiguration (Apache Creadur Rat 
0.13-SNAPSHOT API)";
+            parent.document.title="ReportConfiguration (Apache Creadur Rat 
0.13 API)";
         }
     }
     catch(err) {
@@ -522,6 +522,6 @@ extends <a 
href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
 <!--   -->
 </a></div>
 <!-- ======== END OF BOTTOM NAVBAR ======= -->
-<p class="legalCopy"><small>Copyright &#169; 2006&#x2013;2016 <a 
href="http://www.apache.org";>Apache Software Foundation</a>. All rights 
reserved.</small></p>
+<p class="legalCopy"><small>Copyright &#169; 2006&#x2013;2018 <a 
href="https://www.apache.org";>Apache Software Foundation</a>. All rights 
reserved.</small></p>
 </body>
 </html>

http://git-wip-us.apache.org/repos/asf/creadur-site/blob/9736b609/rat/apidocs/org/apache/rat/analysis/DefaultAnalyserFactory.html
----------------------------------------------------------------------
diff --git a/rat/apidocs/org/apache/rat/analysis/DefaultAnalyserFactory.html 
b/rat/apidocs/org/apache/rat/analysis/DefaultAnalyserFactory.html
index e0f8366..f6acee6 100644
--- a/rat/apidocs/org/apache/rat/analysis/DefaultAnalyserFactory.html
+++ b/rat/apidocs/org/apache/rat/analysis/DefaultAnalyserFactory.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>DefaultAnalyserFactory (Apache Creadur Rat 0.13-SNAPSHOT API)</title>
+<title>DefaultAnalyserFactory (Apache Creadur Rat 0.13 API)</title>
 <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" 
title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="DefaultAnalyserFactory (Apache Creadur Rat 
0.13-SNAPSHOT API)";
+            parent.document.title="DefaultAnalyserFactory (Apache Creadur Rat 
0.13 API)";
         }
     }
     catch(err) {
@@ -268,6 +268,6 @@ extends <a 
href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
 <!--   -->
 </a></div>
 <!-- ======== END OF BOTTOM NAVBAR ======= -->
-<p class="legalCopy"><small>Copyright &#169; 2006&#x2013;2016 <a 
href="http://www.apache.org";>Apache Software Foundation</a>. All rights 
reserved.</small></p>
+<p class="legalCopy"><small>Copyright &#169; 2006&#x2013;2018 <a 
href="https://www.apache.org";>Apache Software Foundation</a>. All rights 
reserved.</small></p>
 </body>
 </html>

http://git-wip-us.apache.org/repos/asf/creadur-site/blob/9736b609/rat/apidocs/org/apache/rat/analysis/DocumentHeaderAnalyser.html
----------------------------------------------------------------------
diff --git a/rat/apidocs/org/apache/rat/analysis/DocumentHeaderAnalyser.html 
b/rat/apidocs/org/apache/rat/analysis/DocumentHeaderAnalyser.html
index aaaba19..2a52962 100644
--- a/rat/apidocs/org/apache/rat/analysis/DocumentHeaderAnalyser.html
+++ b/rat/apidocs/org/apache/rat/analysis/DocumentHeaderAnalyser.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>DocumentHeaderAnalyser (Apache Creadur Rat 0.13-SNAPSHOT API)</title>
+<title>DocumentHeaderAnalyser (Apache Creadur Rat 0.13 API)</title>
 <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" 
title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="DocumentHeaderAnalyser (Apache Creadur Rat 
0.13-SNAPSHOT API)";
+            parent.document.title="DocumentHeaderAnalyser (Apache Creadur Rat 
0.13 API)";
         }
     }
     catch(err) {
@@ -279,6 +279,6 @@ implements <a 
href="../../../../org/apache/rat/document/IDocumentAnalyser.html"
 <!--   -->
 </a></div>
 <!-- ======== END OF BOTTOM NAVBAR ======= -->
-<p class="legalCopy"><small>Copyright &#169; 2006&#x2013;2016 <a 
href="http://www.apache.org";>Apache Software Foundation</a>. All rights 
reserved.</small></p>
+<p class="legalCopy"><small>Copyright &#169; 2006&#x2013;2018 <a 
href="https://www.apache.org";>Apache Software Foundation</a>. All rights 
reserved.</small></p>
 </body>
 </html>

http://git-wip-us.apache.org/repos/asf/creadur-site/blob/9736b609/rat/apidocs/org/apache/rat/analysis/IHeaderMatcher.html
----------------------------------------------------------------------
diff --git a/rat/apidocs/org/apache/rat/analysis/IHeaderMatcher.html 
b/rat/apidocs/org/apache/rat/analysis/IHeaderMatcher.html
index acef802..1dde921 100644
--- a/rat/apidocs/org/apache/rat/analysis/IHeaderMatcher.html
+++ b/rat/apidocs/org/apache/rat/analysis/IHeaderMatcher.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>IHeaderMatcher (Apache Creadur Rat 0.13-SNAPSHOT API)</title>
+<title>IHeaderMatcher (Apache Creadur Rat 0.13 API)</title>
 <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" 
title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="IHeaderMatcher (Apache Creadur Rat 
0.13-SNAPSHOT API)";
+            parent.document.title="IHeaderMatcher (Apache Creadur Rat 0.13 
API)";
         }
     }
     catch(err) {
@@ -255,6 +255,6 @@ var activeTableTab = "activeTableTab";
 <!--   -->
 </a></div>
 <!-- ======== END OF BOTTOM NAVBAR ======= -->
-<p class="legalCopy"><small>Copyright &#169; 2006&#x2013;2016 <a 
href="http://www.apache.org";>Apache Software Foundation</a>. All rights 
reserved.</small></p>
+<p class="legalCopy"><small>Copyright &#169; 2006&#x2013;2018 <a 
href="https://www.apache.org";>Apache Software Foundation</a>. All rights 
reserved.</small></p>
 </body>
 </html>

http://git-wip-us.apache.org/repos/asf/creadur-site/blob/9736b609/rat/apidocs/org/apache/rat/analysis/RatHeaderAnalysisException.html
----------------------------------------------------------------------
diff --git 
a/rat/apidocs/org/apache/rat/analysis/RatHeaderAnalysisException.html 
b/rat/apidocs/org/apache/rat/analysis/RatHeaderAnalysisException.html
index 8188383..3b128ec 100644
--- a/rat/apidocs/org/apache/rat/analysis/RatHeaderAnalysisException.html
+++ b/rat/apidocs/org/apache/rat/analysis/RatHeaderAnalysisException.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>RatHeaderAnalysisException (Apache Creadur Rat 0.13-SNAPSHOT 
API)</title>
+<title>RatHeaderAnalysisException (Apache Creadur Rat 0.13 API)</title>
 <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" 
title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="RatHeaderAnalysisException (Apache Creadur 
Rat 0.13-SNAPSHOT API)";
+            parent.document.title="RatHeaderAnalysisException (Apache Creadur 
Rat 0.13 API)";
         }
     }
     catch(err) {
@@ -297,6 +297,6 @@ extends <a 
href="http://docs.oracle.com/javase/8/docs/api/java/lang/Exception.ht
 <!--   -->
 </a></div>
 <!-- ======== END OF BOTTOM NAVBAR ======= -->
-<p class="legalCopy"><small>Copyright &#169; 2006&#x2013;2016 <a 
href="http://www.apache.org";>Apache Software Foundation</a>. All rights 
reserved.</small></p>
+<p class="legalCopy"><small>Copyright &#169; 2006&#x2013;2018 <a 
href="https://www.apache.org";>Apache Software Foundation</a>. All rights 
reserved.</small></p>
 </body>
 </html>

http://git-wip-us.apache.org/repos/asf/creadur-site/blob/9736b609/rat/apidocs/org/apache/rat/analysis/RatReportAnalysisResultException.html
----------------------------------------------------------------------
diff --git 
a/rat/apidocs/org/apache/rat/analysis/RatReportAnalysisResultException.html 
b/rat/apidocs/org/apache/rat/analysis/RatReportAnalysisResultException.html
index 69ea0a7..d82e981 100644
--- a/rat/apidocs/org/apache/rat/analysis/RatReportAnalysisResultException.html
+++ b/rat/apidocs/org/apache/rat/analysis/RatReportAnalysisResultException.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>RatReportAnalysisResultException (Apache Creadur Rat 0.13-SNAPSHOT 
API)</title>
+<title>RatReportAnalysisResultException (Apache Creadur Rat 0.13 API)</title>
 <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" 
title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="RatReportAnalysisResultException (Apache 
Creadur Rat 0.13-SNAPSHOT API)";
+            parent.document.title="RatReportAnalysisResultException (Apache 
Creadur Rat 0.13 API)";
         }
     }
     catch(err) {
@@ -289,6 +289,6 @@ extends <a 
href="../../../../org/apache/rat/document/RatDocumentAnalysisExceptio
 <!--   -->
 </a></div>
 <!-- ======== END OF BOTTOM NAVBAR ======= -->
-<p class="legalCopy"><small>Copyright &#169; 2006&#x2013;2016 <a 
href="http://www.apache.org";>Apache Software Foundation</a>. All rights 
reserved.</small></p>
+<p class="legalCopy"><small>Copyright &#169; 2006&#x2013;2018 <a 
href="https://www.apache.org";>Apache Software Foundation</a>. All rights 
reserved.</small></p>
 </body>
 </html>

http://git-wip-us.apache.org/repos/asf/creadur-site/blob/9736b609/rat/apidocs/org/apache/rat/analysis/class-use/DefaultAnalyserFactory.html
----------------------------------------------------------------------
diff --git 
a/rat/apidocs/org/apache/rat/analysis/class-use/DefaultAnalyserFactory.html 
b/rat/apidocs/org/apache/rat/analysis/class-use/DefaultAnalyserFactory.html
index a9bc304..1246b23 100644
--- a/rat/apidocs/org/apache/rat/analysis/class-use/DefaultAnalyserFactory.html
+++ b/rat/apidocs/org/apache/rat/analysis/class-use/DefaultAnalyserFactory.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>Uses of Class org.apache.rat.analysis.DefaultAnalyserFactory (Apache 
Creadur Rat 0.13-SNAPSHOT API)</title>
+<title>Uses of Class org.apache.rat.analysis.DefaultAnalyserFactory (Apache 
Creadur Rat 0.13 API)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" 
title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="Uses of Class 
org.apache.rat.analysis.DefaultAnalyserFactory (Apache Creadur Rat 
0.13-SNAPSHOT API)";
+            parent.document.title="Uses of Class 
org.apache.rat.analysis.DefaultAnalyserFactory (Apache Creadur Rat 0.13 API)";
         }
     }
     catch(err) {
@@ -120,6 +120,6 @@
 <!--   -->
 </a></div>
 <!-- ======== END OF BOTTOM NAVBAR ======= -->
-<p class="legalCopy"><small>Copyright &#169; 2006&#x2013;2016 <a 
href="http://www.apache.org";>Apache Software Foundation</a>. All rights 
reserved.</small></p>
+<p class="legalCopy"><small>Copyright &#169; 2006&#x2013;2018 <a 
href="https://www.apache.org";>Apache Software Foundation</a>. All rights 
reserved.</small></p>
 </body>
 </html>

http://git-wip-us.apache.org/repos/asf/creadur-site/blob/9736b609/rat/apidocs/org/apache/rat/analysis/class-use/DocumentHeaderAnalyser.html
----------------------------------------------------------------------
diff --git 
a/rat/apidocs/org/apache/rat/analysis/class-use/DocumentHeaderAnalyser.html 
b/rat/apidocs/org/apache/rat/analysis/class-use/DocumentHeaderAnalyser.html
index e8feb55..2d9d6cc 100644
--- a/rat/apidocs/org/apache/rat/analysis/class-use/DocumentHeaderAnalyser.html
+++ b/rat/apidocs/org/apache/rat/analysis/class-use/DocumentHeaderAnalyser.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>Uses of Class org.apache.rat.analysis.DocumentHeaderAnalyser (Apache 
Creadur Rat 0.13-SNAPSHOT API)</title>
+<title>Uses of Class org.apache.rat.analysis.DocumentHeaderAnalyser (Apache 
Creadur Rat 0.13 API)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" 
title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="Uses of Class 
org.apache.rat.analysis.DocumentHeaderAnalyser (Apache Creadur Rat 
0.13-SNAPSHOT API)";
+            parent.document.title="Uses of Class 
org.apache.rat.analysis.DocumentHeaderAnalyser (Apache Creadur Rat 0.13 API)";
         }
     }
     catch(err) {
@@ -120,6 +120,6 @@
 <!--   -->
 </a></div>
 <!-- ======== END OF BOTTOM NAVBAR ======= -->
-<p class="legalCopy"><small>Copyright &#169; 2006&#x2013;2016 <a 
href="http://www.apache.org";>Apache Software Foundation</a>. All rights 
reserved.</small></p>
+<p class="legalCopy"><small>Copyright &#169; 2006&#x2013;2018 <a 
href="https://www.apache.org";>Apache Software Foundation</a>. All rights 
reserved.</small></p>
 </body>
 </html>

http://git-wip-us.apache.org/repos/asf/creadur-site/blob/9736b609/rat/apidocs/org/apache/rat/analysis/class-use/IHeaderMatcher.html
----------------------------------------------------------------------
diff --git a/rat/apidocs/org/apache/rat/analysis/class-use/IHeaderMatcher.html 
b/rat/apidocs/org/apache/rat/analysis/class-use/IHeaderMatcher.html
index 1f30853..14b330b 100644
--- a/rat/apidocs/org/apache/rat/analysis/class-use/IHeaderMatcher.html
+++ b/rat/apidocs/org/apache/rat/analysis/class-use/IHeaderMatcher.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>Uses of Interface org.apache.rat.analysis.IHeaderMatcher (Apache 
Creadur Rat 0.13-SNAPSHOT API)</title>
+<title>Uses of Interface org.apache.rat.analysis.IHeaderMatcher (Apache 
Creadur Rat 0.13 API)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" 
title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="Uses of Interface 
org.apache.rat.analysis.IHeaderMatcher (Apache Creadur Rat 0.13-SNAPSHOT API)";
+            parent.document.title="Uses of Interface 
org.apache.rat.analysis.IHeaderMatcher (Apache Creadur Rat 0.13 API)";
         }
     }
     catch(err) {
@@ -239,7 +239,7 @@
 <td class="colFirst"><code>class&nbsp;</code></td>
 <td class="colLast"><code><span class="memberNameLink"><a 
href="../../../../../org/apache/rat/analysis/license/AppliedApacheSoftwareLicense20.html"
 title="class in 
org.apache.rat.analysis.license">AppliedApacheSoftwareLicense20</a></span></code>
 <div class="block">Matches an applied AL 2.0 License header, including a 
<em>required</em>
- initial copyright header line, conforming the <a 
href="http://apache.org/licenses/LICENSE-2.0.html#apply";>template</a>
+ initial copyright header line, conforming the <a 
href="https://apache.org/licenses/LICENSE-2.0.html#apply";>template</a>
  from the AL 2.0 license itself.</div>
 </td>
 </tr>
@@ -443,6 +443,6 @@
 <!--   -->
 </a></div>
 <!-- ======== END OF BOTTOM NAVBAR ======= -->
-<p class="legalCopy"><small>Copyright &#169; 2006&#x2013;2016 <a 
href="http://www.apache.org";>Apache Software Foundation</a>. All rights 
reserved.</small></p>
+<p class="legalCopy"><small>Copyright &#169; 2006&#x2013;2018 <a 
href="https://www.apache.org";>Apache Software Foundation</a>. All rights 
reserved.</small></p>
 </body>
 </html>

http://git-wip-us.apache.org/repos/asf/creadur-site/blob/9736b609/rat/apidocs/org/apache/rat/analysis/class-use/RatHeaderAnalysisException.html
----------------------------------------------------------------------
diff --git 
a/rat/apidocs/org/apache/rat/analysis/class-use/RatHeaderAnalysisException.html 
b/rat/apidocs/org/apache/rat/analysis/class-use/RatHeaderAnalysisException.html
index d203553..209113a 100644
--- 
a/rat/apidocs/org/apache/rat/analysis/class-use/RatHeaderAnalysisException.html
+++ 
b/rat/apidocs/org/apache/rat/analysis/class-use/RatHeaderAnalysisException.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>Uses of Class org.apache.rat.analysis.RatHeaderAnalysisException 
(Apache Creadur Rat 0.13-SNAPSHOT API)</title>
+<title>Uses of Class org.apache.rat.analysis.RatHeaderAnalysisException 
(Apache Creadur Rat 0.13 API)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" 
title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="Uses of Class 
org.apache.rat.analysis.RatHeaderAnalysisException (Apache Creadur Rat 
0.13-SNAPSHOT API)";
+            parent.document.title="Uses of Class 
org.apache.rat.analysis.RatHeaderAnalysisException (Apache Creadur Rat 0.13 
API)";
         }
     }
     catch(err) {
@@ -141,12 +141,12 @@
 <tbody>
 <tr class="altColor">
 <td class="colFirst"><code>boolean</code></td>
-<td class="colLast"><span 
class="typeNameLabel">JavaDocLicenseNotRequired.</span><code><span 
class="memberNameLink"><a 
href="../../../../../org/apache/rat/analysis/generation/JavaDocLicenseNotRequired.html#match-org.apache.rat.api.Document-java.lang.String-">match</a></span>(<a
 href="../../../../../org/apache/rat/api/Document.html" title="interface in 
org.apache.rat.api">Document</a>&nbsp;subject,
+<td class="colLast"><span 
class="typeNameLabel">GeneratedLicenseNotRequired.</span><code><span 
class="memberNameLink"><a 
href="../../../../../org/apache/rat/analysis/generation/GeneratedLicenseNotRequired.html#match-org.apache.rat.api.Document-java.lang.String-">match</a></span>(<a
 href="../../../../../org/apache/rat/api/Document.html" title="interface in 
org.apache.rat.api">Document</a>&nbsp;subject,
      <a 
href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String</a>&nbsp;line)</code>&nbsp;</td>
 </tr>
 <tr class="rowColor">
 <td class="colFirst"><code>boolean</code></td>
-<td class="colLast"><span 
class="typeNameLabel">GeneratedLicenseNotRequired.</span><code><span 
class="memberNameLink"><a 
href="../../../../../org/apache/rat/analysis/generation/GeneratedLicenseNotRequired.html#match-org.apache.rat.api.Document-java.lang.String-">match</a></span>(<a
 href="../../../../../org/apache/rat/api/Document.html" title="interface in 
org.apache.rat.api">Document</a>&nbsp;subject,
+<td class="colLast"><span 
class="typeNameLabel">JavaDocLicenseNotRequired.</span><code><span 
class="memberNameLink"><a 
href="../../../../../org/apache/rat/analysis/generation/JavaDocLicenseNotRequired.html#match-org.apache.rat.api.Document-java.lang.String-">match</a></span>(<a
 href="../../../../../org/apache/rat/api/Document.html" title="interface in 
org.apache.rat.api">Document</a>&nbsp;subject,
      <a 
href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String</a>&nbsp;line)</code>&nbsp;</td>
 </tr>
 </tbody>
@@ -170,13 +170,13 @@
 </tr>
 <tr class="rowColor">
 <td class="colFirst"><code>boolean</code></td>
-<td class="colLast"><span 
class="typeNameLabel">CDDL1License.</span><code><span class="memberNameLink"><a 
href="../../../../../org/apache/rat/analysis/license/CDDL1License.html#match-org.apache.rat.api.Document-java.lang.String-">match</a></span>(<a
 href="../../../../../org/apache/rat/api/Document.html" title="interface in 
org.apache.rat.api">Document</a>&nbsp;subject,
+<td class="colLast"><span 
class="typeNameLabel">AppliedApacheSoftwareLicense20.</span><code><span 
class="memberNameLink"><a 
href="../../../../../org/apache/rat/analysis/license/AppliedApacheSoftwareLicense20.html#match-org.apache.rat.api.Document-java.lang.String-">match</a></span>(<a
 href="../../../../../org/apache/rat/api/Document.html" title="interface in 
org.apache.rat.api">Document</a>&nbsp;subject,
      <a 
href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String</a>&nbsp;s)</code>&nbsp;</td>
 </tr>
 <tr class="altColor">
 <td class="colFirst"><code>boolean</code></td>
-<td class="colLast"><span 
class="typeNameLabel">SimplePatternBasedLicense.</span><code><span 
class="memberNameLink"><a 
href="../../../../../org/apache/rat/analysis/license/SimplePatternBasedLicense.html#match-org.apache.rat.api.Document-java.lang.String-">match</a></span>(<a
 href="../../../../../org/apache/rat/api/Document.html" title="interface in 
org.apache.rat.api">Document</a>&nbsp;pSubject,
-     <a 
href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in 
java.lang">String</a>&nbsp;pLine)</code>&nbsp;</td>
+<td class="colLast"><span 
class="typeNameLabel">CDDL1License.</span><code><span class="memberNameLink"><a 
href="../../../../../org/apache/rat/analysis/license/CDDL1License.html#match-org.apache.rat.api.Document-java.lang.String-">match</a></span>(<a
 href="../../../../../org/apache/rat/api/Document.html" title="interface in 
org.apache.rat.api">Document</a>&nbsp;subject,
+     <a 
href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String</a>&nbsp;s)</code>&nbsp;</td>
 </tr>
 <tr class="rowColor">
 <td class="colFirst"><code>boolean</code></td>
@@ -185,13 +185,13 @@
 </tr>
 <tr class="altColor">
 <td class="colFirst"><code>boolean</code></td>
-<td class="colLast"><span 
class="typeNameLabel">AppliedApacheSoftwareLicense20.</span><code><span 
class="memberNameLink"><a 
href="../../../../../org/apache/rat/analysis/license/AppliedApacheSoftwareLicense20.html#match-org.apache.rat.api.Document-java.lang.String-">match</a></span>(<a
 href="../../../../../org/apache/rat/api/Document.html" title="interface in 
org.apache.rat.api">Document</a>&nbsp;subject,
-     <a 
href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String</a>&nbsp;s)</code>&nbsp;</td>
+<td class="colLast"><span 
class="typeNameLabel">FullTextMatchingLicense.</span><code><span 
class="memberNameLink"><a 
href="../../../../../org/apache/rat/analysis/license/FullTextMatchingLicense.html#match-org.apache.rat.api.Document-java.lang.String-">match</a></span>(<a
 href="../../../../../org/apache/rat/api/Document.html" title="interface in 
org.apache.rat.api">Document</a>&nbsp;subject,
+     <a 
href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String</a>&nbsp;line)</code>&nbsp;</td>
 </tr>
 <tr class="rowColor">
 <td class="colFirst"><code>boolean</code></td>
-<td class="colLast"><span 
class="typeNameLabel">FullTextMatchingLicense.</span><code><span 
class="memberNameLink"><a 
href="../../../../../org/apache/rat/analysis/license/FullTextMatchingLicense.html#match-org.apache.rat.api.Document-java.lang.String-">match</a></span>(<a
 href="../../../../../org/apache/rat/api/Document.html" title="interface in 
org.apache.rat.api">Document</a>&nbsp;subject,
-     <a 
href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String</a>&nbsp;line)</code>&nbsp;</td>
+<td class="colLast"><span 
class="typeNameLabel">SimplePatternBasedLicense.</span><code><span 
class="memberNameLink"><a 
href="../../../../../org/apache/rat/analysis/license/SimplePatternBasedLicense.html#match-org.apache.rat.api.Document-java.lang.String-">match</a></span>(<a
 href="../../../../../org/apache/rat/api/Document.html" title="interface in 
org.apache.rat.api">Document</a>&nbsp;pSubject,
+     <a 
href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in 
java.lang">String</a>&nbsp;pLine)</code>&nbsp;</td>
 </tr>
 </tbody>
 </table>
@@ -285,6 +285,6 @@
 <!--   -->
 </a></div>
 <!-- ======== END OF BOTTOM NAVBAR ======= -->
-<p class="legalCopy"><small>Copyright &#169; 2006&#x2013;2016 <a 
href="http://www.apache.org";>Apache Software Foundation</a>. All rights 
reserved.</small></p>
+<p class="legalCopy"><small>Copyright &#169; 2006&#x2013;2018 <a 
href="https://www.apache.org";>Apache Software Foundation</a>. All rights 
reserved.</small></p>
 </body>
 </html>

http://git-wip-us.apache.org/repos/asf/creadur-site/blob/9736b609/rat/apidocs/org/apache/rat/analysis/class-use/RatReportAnalysisResultException.html
----------------------------------------------------------------------
diff --git 
a/rat/apidocs/org/apache/rat/analysis/class-use/RatReportAnalysisResultException.html
 
b/rat/apidocs/org/apache/rat/analysis/class-use/RatReportAnalysisResultException.html
index dc5b98d..6331617 100644
--- 
a/rat/apidocs/org/apache/rat/analysis/class-use/RatReportAnalysisResultException.html
+++ 
b/rat/apidocs/org/apache/rat/analysis/class-use/RatReportAnalysisResultException.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>Uses of Class org.apache.rat.analysis.RatReportAnalysisResultException 
(Apache Creadur Rat 0.13-SNAPSHOT API)</title>
+<title>Uses of Class org.apache.rat.analysis.RatReportAnalysisResultException 
(Apache Creadur Rat 0.13 API)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" 
title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="Uses of Class 
org.apache.rat.analysis.RatReportAnalysisResultException (Apache Creadur Rat 
0.13-SNAPSHOT API)";
+            parent.document.title="Uses of Class 
org.apache.rat.analysis.RatReportAnalysisResultException (Apache Creadur Rat 
0.13 API)";
         }
     }
     catch(err) {
@@ -120,6 +120,6 @@
 <!--   -->
 </a></div>
 <!-- ======== END OF BOTTOM NAVBAR ======= -->
-<p class="legalCopy"><small>Copyright &#169; 2006&#x2013;2016 <a 
href="http://www.apache.org";>Apache Software Foundation</a>. All rights 
reserved.</small></p>
+<p class="legalCopy"><small>Copyright &#169; 2006&#x2013;2018 <a 
href="https://www.apache.org";>Apache Software Foundation</a>. All rights 
reserved.</small></p>
 </body>
 </html>

http://git-wip-us.apache.org/repos/asf/creadur-site/blob/9736b609/rat/apidocs/org/apache/rat/analysis/generation/GeneratedLicenseNotRequired.html
----------------------------------------------------------------------
diff --git 
a/rat/apidocs/org/apache/rat/analysis/generation/GeneratedLicenseNotRequired.html
 
b/rat/apidocs/org/apache/rat/analysis/generation/GeneratedLicenseNotRequired.html
index 626544a..d553d73 100644
--- 
a/rat/apidocs/org/apache/rat/analysis/generation/GeneratedLicenseNotRequired.html
+++ 
b/rat/apidocs/org/apache/rat/analysis/generation/GeneratedLicenseNotRequired.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>GeneratedLicenseNotRequired (Apache Creadur Rat 0.13-SNAPSHOT 
API)</title>
+<title>GeneratedLicenseNotRequired (Apache Creadur Rat 0.13 API)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" 
title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="GeneratedLicenseNotRequired (Apache Creadur 
Rat 0.13-SNAPSHOT API)";
+            parent.document.title="GeneratedLicenseNotRequired (Apache Creadur 
Rat 0.13 API)";
         }
     }
     catch(err) {
@@ -337,6 +337,6 @@ implements <a 
href="../../../../../org/apache/rat/analysis/IHeaderMatcher.html"
 <!--   -->
 </a></div>
 <!-- ======== END OF BOTTOM NAVBAR ======= -->
-<p class="legalCopy"><small>Copyright &#169; 2006&#x2013;2016 <a 
href="http://www.apache.org";>Apache Software Foundation</a>. All rights 
reserved.</small></p>
+<p class="legalCopy"><small>Copyright &#169; 2006&#x2013;2018 <a 
href="https://www.apache.org";>Apache Software Foundation</a>. All rights 
reserved.</small></p>
 </body>
 </html>

Reply via email to