You are viewing a plain text version of this content. The canonical link for it is here.
Posted to site-commits@maven.apache.org by ti...@apache.org on 2015/06/17 01:06:37 UTC

svn commit: r955072 [4/40] - in /websites/production/maven/components/shared-archives/maven-shared-utils-LATEST: ./ apidocs/ apidocs/org/apache/maven/shared/utils/ apidocs/org/apache/maven/shared/utils/class-use/ apidocs/org/apache/maven/shared/utils/c...

Modified: websites/production/maven/components/shared-archives/maven-shared-utils-LATEST/apidocs/org/apache/maven/shared/utils/io/FileUtils.html
==============================================================================
--- websites/production/maven/components/shared-archives/maven-shared-utils-LATEST/apidocs/org/apache/maven/shared/utils/io/FileUtils.html (original)
+++ websites/production/maven/components/shared-archives/maven-shared-utils-LATEST/apidocs/org/apache/maven/shared/utils/io/FileUtils.html Tue Jun 16 23:06:34 2015
@@ -4,7 +4,7 @@
 <HEAD>
 <META http-equiv="Content-Type" content="text/html; charset=UTF-8">
 <TITLE>
-FileUtils (Apache Maven Shared Utils 0.7 API)
+FileUtils (Apache Maven Shared Utils 0.8 API)
 </TITLE>
 
 <META NAME="keywords" CONTENT="org.apache.maven.shared.utils.io.FileUtils class">
@@ -14,7 +14,7 @@ FileUtils (Apache Maven Shared Utils 0.7
 <SCRIPT type="text/javascript">
 function windowTitle()
 {
-    parent.document.title="FileUtils (Apache Maven Shared Utils 0.7 API)";
+    parent.document.title="FileUtils (Apache Maven Shared Utils 0.8 API)";
 }
 </SCRIPT>
 <NOSCRIPT>
@@ -256,7 +256,8 @@ This class provides basic facilities for
          boolean&nbsp;overwrite)</CODE>
 
 <BR>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<b>If wrappers is null or empty, the file will be copy only if to.lastModified() < from.lastModified() or if overwrite is true</b></TD>
+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<b>If wrappers is null or empty, the file will be copy only if to.lastModified() < from.lastModified() or if
+ overwrite is true</b></TD>
 </TR>
 <TR BGCOLOR="white" CLASS="TableRowColor">
 <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
@@ -1227,7 +1228,8 @@ public static void <B>copyFileToDirector
 <DD><CODE><A HREF="http://docs.oracle.com/javase/1.5.0/docs/api/java/io/FileNotFoundException.html" title="class or interface in java.io">FileNotFoundException</A></CODE> - if <code>source</code> isn't a normal file.
 <DD><CODE><A HREF="http://docs.oracle.com/javase/1.5.0/docs/api/java/lang/IllegalArgumentException.html" title="class or interface in java.lang">IllegalArgumentException</A></CODE> - if <code>destinationDirectory</code> isn't a directory.
 <DD><CODE><A HREF="http://docs.oracle.com/javase/1.5.0/docs/api/java/io/IOException.html" title="class or interface in java.io">IOException</A></CODE> - if <code>source</code> does not exist, the file in
-                                       <code>destinationDirectory</code> cannot be written to, or an IO error occurs during copying.</DL>
+                                       <code>destinationDirectory</code> cannot be written to, or an IO error
+                                       occurs during copying.</DL>
 </DD>
 </DL>
 <HR>
@@ -1286,7 +1288,9 @@ public static void <B>copyURLToFile</B>(
 <A NAME="normalize(java.lang.String)"><!-- --></A><H3>
 normalize</H3>
 <PRE>
-public static <A HREF="http://docs.oracle.com/javase/1.5.0/docs/api/java/lang/String.html" title="class or interface in java.lang">String</A> <B>normalize</B>(<A HREF="http://docs.oracle.com/javase/1.5.0/docs/api/java/lang/String.html" title="class or interface in java.lang">String</A>&nbsp;path)</PRE>
+<FONT SIZE="-1">@Nonnull
+</FONT>public static <A HREF="http://docs.oracle.com/javase/1.5.0/docs/api/java/lang/String.html" title="class or interface in java.lang">String</A> <B>normalize</B>(<FONT SIZE="-1">@Nonnull</FONT>
+                                       <A HREF="http://docs.oracle.com/javase/1.5.0/docs/api/java/lang/String.html" title="class or interface in java.lang">String</A>&nbsp;path)</PRE>
 <DL>
 <DD>Normalize a path.
  Eliminates "/../" and "/./" in a string. Returns <code>null</code> if the ..'s went past the
@@ -1312,8 +1316,10 @@ public static <A HREF="http://docs.oracl
 <A NAME="resolveFile(java.io.File, java.lang.String)"><!-- --></A><H3>
 resolveFile</H3>
 <PRE>
-public static <A HREF="http://docs.oracle.com/javase/1.5.0/docs/api/java/io/File.html" title="class or interface in java.io">File</A> <B>resolveFile</B>(<A HREF="http://docs.oracle.com/javase/1.5.0/docs/api/java/io/File.html" title="class or interface in java.io">File</A>&nbsp;baseFile,
-                               <A HREF="http://docs.oracle.com/javase/1.5.0/docs/api/java/lang/String.html" title="class or interface in java.lang">String</A>&nbsp;filename)</PRE>
+<FONT SIZE="-1">@Nonnull
+</FONT>public static <A HREF="http://docs.oracle.com/javase/1.5.0/docs/api/java/io/File.html" title="class or interface in java.io">File</A> <B>resolveFile</B>(<A HREF="http://docs.oracle.com/javase/1.5.0/docs/api/java/io/File.html" title="class or interface in java.io">File</A>&nbsp;baseFile,
+                                       <FONT SIZE="-1">@Nonnull</FONT>
+                                       <A HREF="http://docs.oracle.com/javase/1.5.0/docs/api/java/lang/String.html" title="class or interface in java.lang">String</A>&nbsp;filename)</PRE>
 <DL>
 <DD>Resolve a file <code>filename</code> to it's canonical form. If <code>filename</code> is
  relative (doesn't start with <code>/</code>), it will be resolved relative to
@@ -1330,7 +1336,8 @@ public static <A HREF="http://docs.oracl
 <A NAME="forceDelete(java.lang.String)"><!-- --></A><H3>
 forceDelete</H3>
 <PRE>
-public static void <B>forceDelete</B>(<A HREF="http://docs.oracle.com/javase/1.5.0/docs/api/java/lang/String.html" title="class or interface in java.lang">String</A>&nbsp;file)
+public static void <B>forceDelete</B>(<FONT SIZE="-1">@Nonnull</FONT>
+                               <A HREF="http://docs.oracle.com/javase/1.5.0/docs/api/java/lang/String.html" title="class or interface in java.lang">String</A>&nbsp;file)
                         throws <A HREF="http://docs.oracle.com/javase/1.5.0/docs/api/java/io/IOException.html" title="class or interface in java.io">IOException</A></PRE>
 <DL>
 <DD>Delete a file. If file is directory delete it and all sub-directories.
@@ -1363,7 +1370,8 @@ public static void <B>forceDelete</B>(<F
 <A NAME="delete(java.io.File)"><!-- --></A><H3>
 delete</H3>
 <PRE>
-public static void <B>delete</B>(<A HREF="http://docs.oracle.com/javase/1.5.0/docs/api/java/io/File.html" title="class or interface in java.io">File</A>&nbsp;file)
+public static void <B>delete</B>(<FONT SIZE="-1">@Nonnull</FONT>
+                          <A HREF="http://docs.oracle.com/javase/1.5.0/docs/api/java/io/File.html" title="class or interface in java.io">File</A>&nbsp;file)
                    throws <A HREF="http://docs.oracle.com/javase/1.5.0/docs/api/java/io/IOException.html" title="class or interface in java.io">IOException</A></PRE>
 <DL>
 <DD>deletes a file.
@@ -1379,7 +1387,8 @@ public static void <B>delete</B>(<A HREF
 <A NAME="deleteLegacyStyle(java.io.File)"><!-- --></A><H3>
 deleteLegacyStyle</H3>
 <PRE>
-public static boolean <B>deleteLegacyStyle</B>(<A HREF="http://docs.oracle.com/javase/1.5.0/docs/api/java/io/File.html" title="class or interface in java.io">File</A>&nbsp;file)</PRE>
+public static boolean <B>deleteLegacyStyle</B>(<FONT SIZE="-1">@Nonnull</FONT>
+                                        <A HREF="http://docs.oracle.com/javase/1.5.0/docs/api/java/io/File.html" title="class or interface in java.io">File</A>&nbsp;file)</PRE>
 <DL>
 <DD><DL>
 </DL>
@@ -1636,7 +1645,9 @@ getFileAndDirectoryNames</H3>
 <A NAME="copyDirectory(java.io.File, java.io.File)"><!-- --></A><H3>
 copyDirectory</H3>
 <PRE>
-public static void <B>copyDirectory</B>(<A HREF="http://docs.oracle.com/javase/1.5.0/docs/api/java/io/File.html" title="class or interface in java.io">File</A>&nbsp;sourceDirectory,
+public static void <B>copyDirectory</B>(<FONT SIZE="-1">@Nonnull</FONT>
+                                 <A HREF="http://docs.oracle.com/javase/1.5.0/docs/api/java/io/File.html" title="class or interface in java.io">File</A>&nbsp;sourceDirectory,
+                                 <FONT SIZE="-1">@Nonnull</FONT>
                                  <A HREF="http://docs.oracle.com/javase/1.5.0/docs/api/java/io/File.html" title="class or interface in java.io">File</A>&nbsp;destinationDirectory)
                           throws <A HREF="http://docs.oracle.com/javase/1.5.0/docs/api/java/io/IOException.html" title="class or interface in java.io">IOException</A></PRE>
 <DL>
@@ -1794,11 +1805,12 @@ public static void <B>copyFile</B>(<FONT
                             boolean&nbsp;overwrite)
                      throws <A HREF="http://docs.oracle.com/javase/1.5.0/docs/api/java/io/IOException.html" title="class or interface in java.io">IOException</A></PRE>
 <DL>
-<DD><b>If wrappers is null or empty, the file will be copy only if to.lastModified() < from.lastModified() or if overwrite is true</b>
+<DD><b>If wrappers is null or empty, the file will be copy only if to.lastModified() < from.lastModified() or if
+ overwrite is true</b>
 <P>
 <DD><DL>
-<DT><B>Parameters:</B><DD><CODE>from</CODE> - the file to copy<DD><CODE>to</CODE> - the destination file<DD><CODE>encoding</CODE> - the file output encoding (only if wrappers is not empty)<DD><CODE>wrappers</CODE> - array of <A HREF="../../../../../../org/apache/maven/shared/utils/io/FileUtils.FilterWrapper.html" title="class in org.apache.maven.shared.utils.io"><CODE>FileUtils.FilterWrapper</CODE></A><DD><CODE>overwrite</CODE> - if true and f wrappers is null or empty, the file will be copy
-                  enven if to.lastModified() < from.lastModified()
+<DT><B>Parameters:</B><DD><CODE>from</CODE> - the file to copy<DD><CODE>to</CODE> - the destination file<DD><CODE>encoding</CODE> - the file output encoding (only if wrappers is not empty)<DD><CODE>wrappers</CODE> - array of <A HREF="../../../../../../org/apache/maven/shared/utils/io/FileUtils.FilterWrapper.html" title="class in org.apache.maven.shared.utils.io"><CODE>FileUtils.FilterWrapper</CODE></A><DD><CODE>overwrite</CODE> - if true and f wrappers is null or empty, the file will be copy enven if to.lastModified() <
+            from.lastModified()
 <DT><B>Throws:</B>
 <DD><CODE><A HREF="http://docs.oracle.com/javase/1.5.0/docs/api/java/io/IOException.html" title="class or interface in java.io">IOException</A></CODE> - if an IO error occurs during copying or filtering</DL>
 </DD>
@@ -1827,7 +1839,8 @@ loadFile</H3>
 <A NAME="isSymbolicLink(java.io.File)"><!-- --></A><H3>
 isSymbolicLink</H3>
 <PRE>
-public static boolean <B>isSymbolicLink</B>(<A HREF="http://docs.oracle.com/javase/1.5.0/docs/api/java/io/File.html" title="class or interface in java.io">File</A>&nbsp;file)
+public static boolean <B>isSymbolicLink</B>(<FONT SIZE="-1">@Nonnull</FONT>
+                                     <A HREF="http://docs.oracle.com/javase/1.5.0/docs/api/java/io/File.html" title="class or interface in java.io">File</A>&nbsp;file)
                               throws <A HREF="http://docs.oracle.com/javase/1.5.0/docs/api/java/io/IOException.html" title="class or interface in java.io">IOException</A></PRE>
 <DL>
 <DD>Checks whether a given file is a symbolic link.
@@ -1850,7 +1863,8 @@ public static boolean <B>isSymbolicLink<
 <A NAME="isSymbolicLinkForSure(java.io.File)"><!-- --></A><H3>
 isSymbolicLinkForSure</H3>
 <PRE>
-public static boolean <B>isSymbolicLinkForSure</B>(<A HREF="http://docs.oracle.com/javase/1.5.0/docs/api/java/io/File.html" title="class or interface in java.io">File</A>&nbsp;file)
+public static boolean <B>isSymbolicLinkForSure</B>(<FONT SIZE="-1">@Nonnull</FONT>
+                                            <A HREF="http://docs.oracle.com/javase/1.5.0/docs/api/java/io/File.html" title="class or interface in java.io">File</A>&nbsp;file)
                                      throws <A HREF="http://docs.oracle.com/javase/1.5.0/docs/api/java/io/IOException.html" title="class or interface in java.io">IOException</A></PRE>
 <DL>
 <DD>Checks whether a given file is a symbolic link.
@@ -1924,6 +1938,6 @@ DETAIL:&nbsp;FIELD&nbsp;|&nbsp;<A HREF="
 <!-- ======== END OF BOTTOM NAVBAR ======= -->
 
 <HR>
-Copyright &#169; 2002&#x2013;2014 <a href="http://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.
+Copyright &#169; 2002&#x2013;2015 <a href="http://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.
 </BODY>
 </HTML>
\ No newline at end of file

Modified: websites/production/maven/components/shared-archives/maven-shared-utils-LATEST/apidocs/org/apache/maven/shared/utils/io/IOUtil.html
==============================================================================
--- websites/production/maven/components/shared-archives/maven-shared-utils-LATEST/apidocs/org/apache/maven/shared/utils/io/IOUtil.html (original)
+++ websites/production/maven/components/shared-archives/maven-shared-utils-LATEST/apidocs/org/apache/maven/shared/utils/io/IOUtil.html Tue Jun 16 23:06:34 2015
@@ -4,7 +4,7 @@
 <HEAD>
 <META http-equiv="Content-Type" content="text/html; charset=UTF-8">
 <TITLE>
-IOUtil (Apache Maven Shared Utils 0.7 API)
+IOUtil (Apache Maven Shared Utils 0.8 API)
 </TITLE>
 
 <META NAME="keywords" CONTENT="org.apache.maven.shared.utils.io.IOUtil class">
@@ -14,7 +14,7 @@ IOUtil (Apache Maven Shared Utils 0.7 AP
 <SCRIPT type="text/javascript">
 function windowTitle()
 {
-    parent.document.title="IOUtil (Apache Maven Shared Utils 0.7 API)";
+    parent.document.title="IOUtil (Apache Maven Shared Utils 0.8 API)";
 }
 </SCRIPT>
 <NOSCRIPT>
@@ -1406,6 +1406,6 @@ DETAIL:&nbsp;FIELD&nbsp;|&nbsp;CONSTR&nb
 <!-- ======== END OF BOTTOM NAVBAR ======= -->
 
 <HR>
-Copyright &#169; 2002&#x2013;2014 <a href="http://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.
+Copyright &#169; 2002&#x2013;2015 <a href="http://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.
 </BODY>
 </HTML>
\ No newline at end of file

Modified: websites/production/maven/components/shared-archives/maven-shared-utils-LATEST/apidocs/org/apache/maven/shared/utils/io/Java7Support.html
==============================================================================
--- websites/production/maven/components/shared-archives/maven-shared-utils-LATEST/apidocs/org/apache/maven/shared/utils/io/Java7Support.html (original)
+++ websites/production/maven/components/shared-archives/maven-shared-utils-LATEST/apidocs/org/apache/maven/shared/utils/io/Java7Support.html Tue Jun 16 23:06:34 2015
@@ -4,7 +4,7 @@
 <HEAD>
 <META http-equiv="Content-Type" content="text/html; charset=UTF-8">
 <TITLE>
-Java7Support (Apache Maven Shared Utils 0.7 API)
+Java7Support (Apache Maven Shared Utils 0.8 API)
 </TITLE>
 
 <META NAME="keywords" CONTENT="org.apache.maven.shared.utils.io.Java7Support class">
@@ -14,7 +14,7 @@ Java7Support (Apache Maven Shared Utils
 <SCRIPT type="text/javascript">
 function windowTitle()
 {
-    parent.document.title="Java7Support (Apache Maven Shared Utils 0.7 API)";
+    parent.document.title="Java7Support (Apache Maven Shared Utils 0.8 API)";
 }
 </SCRIPT>
 <NOSCRIPT>
@@ -295,7 +295,8 @@ createSymbolicLink</H3>
 <A NAME="delete(java.io.File)"><!-- --></A><H3>
 delete</H3>
 <PRE>
-public static void <B>delete</B>(<A HREF="http://docs.oracle.com/javase/1.5.0/docs/api/java/io/File.html" title="class or interface in java.io">File</A>&nbsp;file)
+public static void <B>delete</B>(<FONT SIZE="-1">@Nonnull</FONT>
+                          <A HREF="http://docs.oracle.com/javase/1.5.0/docs/api/java/io/File.html" title="class or interface in java.io">File</A>&nbsp;file)
                    throws <A HREF="http://docs.oracle.com/javase/1.5.0/docs/api/java/io/IOException.html" title="class or interface in java.io">IOException</A></PRE>
 <DL>
 <DD>Performs a nio delete
@@ -389,6 +390,6 @@ DETAIL:&nbsp;FIELD&nbsp;|&nbsp;<A HREF="
 <!-- ======== END OF BOTTOM NAVBAR ======= -->
 
 <HR>
-Copyright &#169; 2002&#x2013;2014 <a href="http://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.
+Copyright &#169; 2002&#x2013;2015 <a href="http://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.
 </BODY>
 </HTML>
\ No newline at end of file

Modified: websites/production/maven/components/shared-archives/maven-shared-utils-LATEST/apidocs/org/apache/maven/shared/utils/io/MatchPattern.html
==============================================================================
--- websites/production/maven/components/shared-archives/maven-shared-utils-LATEST/apidocs/org/apache/maven/shared/utils/io/MatchPattern.html (original)
+++ websites/production/maven/components/shared-archives/maven-shared-utils-LATEST/apidocs/org/apache/maven/shared/utils/io/MatchPattern.html Tue Jun 16 23:06:34 2015
@@ -4,7 +4,7 @@
 <HEAD>
 <META http-equiv="Content-Type" content="text/html; charset=UTF-8">
 <TITLE>
-MatchPattern (Apache Maven Shared Utils 0.7 API)
+MatchPattern (Apache Maven Shared Utils 0.8 API)
 </TITLE>
 
 <META NAME="keywords" CONTENT="org.apache.maven.shared.utils.io.MatchPattern class">
@@ -14,7 +14,7 @@ MatchPattern (Apache Maven Shared Utils
 <SCRIPT type="text/javascript">
 function windowTitle()
 {
-    parent.document.title="MatchPattern (Apache Maven Shared Utils 0.7 API)";
+    parent.document.title="MatchPattern (Apache Maven Shared Utils 0.8 API)";
 }
 </SCRIPT>
 <NOSCRIPT>
@@ -302,6 +302,6 @@ DETAIL:&nbsp;FIELD&nbsp;|&nbsp;CONSTR&nb
 <!-- ======== END OF BOTTOM NAVBAR ======= -->
 
 <HR>
-Copyright &#169; 2002&#x2013;2014 <a href="http://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.
+Copyright &#169; 2002&#x2013;2015 <a href="http://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.
 </BODY>
 </HTML>
\ No newline at end of file

Modified: websites/production/maven/components/shared-archives/maven-shared-utils-LATEST/apidocs/org/apache/maven/shared/utils/io/MatchPatterns.html
==============================================================================
--- websites/production/maven/components/shared-archives/maven-shared-utils-LATEST/apidocs/org/apache/maven/shared/utils/io/MatchPatterns.html (original)
+++ websites/production/maven/components/shared-archives/maven-shared-utils-LATEST/apidocs/org/apache/maven/shared/utils/io/MatchPatterns.html Tue Jun 16 23:06:34 2015
@@ -4,7 +4,7 @@
 <HEAD>
 <META http-equiv="Content-Type" content="text/html; charset=UTF-8">
 <TITLE>
-MatchPatterns (Apache Maven Shared Utils 0.7 API)
+MatchPatterns (Apache Maven Shared Utils 0.8 API)
 </TITLE>
 
 <META NAME="keywords" CONTENT="org.apache.maven.shared.utils.io.MatchPatterns class">
@@ -14,7 +14,7 @@ MatchPatterns (Apache Maven Shared Utils
 <SCRIPT type="text/javascript">
 function windowTitle()
 {
-    parent.document.title="MatchPatterns (Apache Maven Shared Utils 0.7 API)";
+    parent.document.title="MatchPatterns (Apache Maven Shared Utils 0.8 API)";
 }
 </SCRIPT>
 <NOSCRIPT>
@@ -269,6 +269,6 @@ DETAIL:&nbsp;FIELD&nbsp;|&nbsp;CONSTR&nb
 <!-- ======== END OF BOTTOM NAVBAR ======= -->
 
 <HR>
-Copyright &#169; 2002&#x2013;2014 <a href="http://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.
+Copyright &#169; 2002&#x2013;2015 <a href="http://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.
 </BODY>
 </HTML>
\ No newline at end of file

Modified: websites/production/maven/components/shared-archives/maven-shared-utils-LATEST/apidocs/org/apache/maven/shared/utils/io/ScanConductor.ScanAction.html
==============================================================================
--- websites/production/maven/components/shared-archives/maven-shared-utils-LATEST/apidocs/org/apache/maven/shared/utils/io/ScanConductor.ScanAction.html (original)
+++ websites/production/maven/components/shared-archives/maven-shared-utils-LATEST/apidocs/org/apache/maven/shared/utils/io/ScanConductor.ScanAction.html Tue Jun 16 23:06:34 2015
@@ -4,7 +4,7 @@
 <HEAD>
 <META http-equiv="Content-Type" content="text/html; charset=UTF-8">
 <TITLE>
-ScanConductor.ScanAction (Apache Maven Shared Utils 0.7 API)
+ScanConductor.ScanAction (Apache Maven Shared Utils 0.8 API)
 </TITLE>
 
 <META NAME="keywords" CONTENT="org.apache.maven.shared.utils.io.ScanConductor.ScanAction class">
@@ -14,7 +14,7 @@ ScanConductor.ScanAction (Apache Maven S
 <SCRIPT type="text/javascript">
 function windowTitle()
 {
-    parent.document.title="ScanConductor.ScanAction (Apache Maven Shared Utils 0.7 API)";
+    parent.document.title="ScanConductor.ScanAction (Apache Maven Shared Utils 0.8 API)";
 }
 </SCRIPT>
 <NOSCRIPT>
@@ -361,6 +361,6 @@ DETAIL:&nbsp;<A HREF="#enum_constant_det
 <!-- ======== END OF BOTTOM NAVBAR ======= -->
 
 <HR>
-Copyright &#169; 2002&#x2013;2014 <a href="http://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.
+Copyright &#169; 2002&#x2013;2015 <a href="http://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.
 </BODY>
 </HTML>
\ No newline at end of file

Modified: websites/production/maven/components/shared-archives/maven-shared-utils-LATEST/apidocs/org/apache/maven/shared/utils/io/ScanConductor.html
==============================================================================
--- websites/production/maven/components/shared-archives/maven-shared-utils-LATEST/apidocs/org/apache/maven/shared/utils/io/ScanConductor.html (original)
+++ websites/production/maven/components/shared-archives/maven-shared-utils-LATEST/apidocs/org/apache/maven/shared/utils/io/ScanConductor.html Tue Jun 16 23:06:34 2015
@@ -4,7 +4,7 @@
 <HEAD>
 <META http-equiv="Content-Type" content="text/html; charset=UTF-8">
 <TITLE>
-ScanConductor (Apache Maven Shared Utils 0.7 API)
+ScanConductor (Apache Maven Shared Utils 0.8 API)
 </TITLE>
 
 <META NAME="keywords" CONTENT="org.apache.maven.shared.utils.io.ScanConductor interface">
@@ -14,7 +14,7 @@ ScanConductor (Apache Maven Shared Utils
 <SCRIPT type="text/javascript">
 function windowTitle()
 {
-    parent.document.title="ScanConductor (Apache Maven Shared Utils 0.7 API)";
+    parent.document.title="ScanConductor (Apache Maven Shared Utils 0.8 API)";
 }
 </SCRIPT>
 <NOSCRIPT>
@@ -260,6 +260,6 @@ DETAIL:&nbsp;FIELD&nbsp;|&nbsp;CONSTR&nb
 <!-- ======== END OF BOTTOM NAVBAR ======= -->
 
 <HR>
-Copyright &#169; 2002&#x2013;2014 <a href="http://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.
+Copyright &#169; 2002&#x2013;2015 <a href="http://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.
 </BODY>
 </HTML>
\ No newline at end of file

Modified: websites/production/maven/components/shared-archives/maven-shared-utils-LATEST/apidocs/org/apache/maven/shared/utils/io/SelectorUtils.html
==============================================================================
--- websites/production/maven/components/shared-archives/maven-shared-utils-LATEST/apidocs/org/apache/maven/shared/utils/io/SelectorUtils.html (original)
+++ websites/production/maven/components/shared-archives/maven-shared-utils-LATEST/apidocs/org/apache/maven/shared/utils/io/SelectorUtils.html Tue Jun 16 23:06:34 2015
@@ -4,7 +4,7 @@
 <HEAD>
 <META http-equiv="Content-Type" content="text/html; charset=UTF-8">
 <TITLE>
-SelectorUtils (Apache Maven Shared Utils 0.7 API)
+SelectorUtils (Apache Maven Shared Utils 0.8 API)
 </TITLE>
 
 <META NAME="keywords" CONTENT="org.apache.maven.shared.utils.io.SelectorUtils class">
@@ -14,7 +14,7 @@ SelectorUtils (Apache Maven Shared Utils
 <SCRIPT type="text/javascript">
 function windowTitle()
 {
-    parent.document.title="SelectorUtils (Apache Maven Shared Utils 0.7 API)";
+    parent.document.title="SelectorUtils (Apache Maven Shared Utils 0.8 API)";
 }
 </SCRIPT>
 <NOSCRIPT>
@@ -467,6 +467,6 @@ DETAIL:&nbsp;<A HREF="#field_detail">FIE
 <!-- ======== END OF BOTTOM NAVBAR ======= -->
 
 <HR>
-Copyright &#169; 2002&#x2013;2014 <a href="http://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.
+Copyright &#169; 2002&#x2013;2015 <a href="http://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.
 </BODY>
 </HTML>
\ No newline at end of file

Modified: websites/production/maven/components/shared-archives/maven-shared-utils-LATEST/apidocs/org/apache/maven/shared/utils/io/WalkCollector.html
==============================================================================
--- websites/production/maven/components/shared-archives/maven-shared-utils-LATEST/apidocs/org/apache/maven/shared/utils/io/WalkCollector.html (original)
+++ websites/production/maven/components/shared-archives/maven-shared-utils-LATEST/apidocs/org/apache/maven/shared/utils/io/WalkCollector.html Tue Jun 16 23:06:34 2015
@@ -4,7 +4,7 @@
 <HEAD>
 <META http-equiv="Content-Type" content="text/html; charset=UTF-8">
 <TITLE>
-WalkCollector (Apache Maven Shared Utils 0.7 API)
+WalkCollector (Apache Maven Shared Utils 0.8 API)
 </TITLE>
 
 <META NAME="keywords" CONTENT="org.apache.maven.shared.utils.io.WalkCollector class">
@@ -14,7 +14,7 @@ WalkCollector (Apache Maven Shared Utils
 <SCRIPT type="text/javascript">
 function windowTitle()
 {
-    parent.document.title="WalkCollector (Apache Maven Shared Utils 0.7 API)";
+    parent.document.title="WalkCollector (Apache Maven Shared Utils 0.8 API)";
 }
 </SCRIPT>
 <NOSCRIPT>
@@ -327,6 +327,6 @@ DETAIL:&nbsp;FIELD&nbsp;|&nbsp;<A HREF="
 <!-- ======== END OF BOTTOM NAVBAR ======= -->
 
 <HR>
-Copyright &#169; 2002&#x2013;2014 <a href="http://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.
+Copyright &#169; 2002&#x2013;2015 <a href="http://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.
 </BODY>
 </HTML>
\ No newline at end of file

Modified: websites/production/maven/components/shared-archives/maven-shared-utils-LATEST/apidocs/org/apache/maven/shared/utils/io/class-use/DirectoryScanResult.html
==============================================================================
--- websites/production/maven/components/shared-archives/maven-shared-utils-LATEST/apidocs/org/apache/maven/shared/utils/io/class-use/DirectoryScanResult.html (original)
+++ websites/production/maven/components/shared-archives/maven-shared-utils-LATEST/apidocs/org/apache/maven/shared/utils/io/class-use/DirectoryScanResult.html Tue Jun 16 23:06:34 2015
@@ -4,7 +4,7 @@
 <HEAD>
 <META http-equiv="Content-Type" content="text/html; charset=UTF-8">
 <TITLE>
-Uses of Class org.apache.maven.shared.utils.io.DirectoryScanResult (Apache Maven Shared Utils 0.7 API)
+Uses of Class org.apache.maven.shared.utils.io.DirectoryScanResult (Apache Maven Shared Utils 0.8 API)
 </TITLE>
 
 
@@ -13,7 +13,7 @@ Uses of Class org.apache.maven.shared.ut
 <SCRIPT type="text/javascript">
 function windowTitle()
 {
-    parent.document.title="Uses of Class org.apache.maven.shared.utils.io.DirectoryScanResult (Apache Maven Shared Utils 0.7 API)";
+    parent.document.title="Uses of Class org.apache.maven.shared.utils.io.DirectoryScanResult (Apache Maven Shared Utils 0.8 API)";
 }
 </SCRIPT>
 <NOSCRIPT>
@@ -181,6 +181,6 @@ Uses of <A HREF="../../../../../../../or
 <!-- ======== END OF BOTTOM NAVBAR ======= -->
 
 <HR>
-Copyright &#169; 2002&#x2013;2014 <a href="http://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.
+Copyright &#169; 2002&#x2013;2015 <a href="http://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.
 </BODY>
 </HTML>
\ No newline at end of file

Modified: websites/production/maven/components/shared-archives/maven-shared-utils-LATEST/apidocs/org/apache/maven/shared/utils/io/class-use/DirectoryScanner.html
==============================================================================
--- websites/production/maven/components/shared-archives/maven-shared-utils-LATEST/apidocs/org/apache/maven/shared/utils/io/class-use/DirectoryScanner.html (original)
+++ websites/production/maven/components/shared-archives/maven-shared-utils-LATEST/apidocs/org/apache/maven/shared/utils/io/class-use/DirectoryScanner.html Tue Jun 16 23:06:34 2015
@@ -4,7 +4,7 @@
 <HEAD>
 <META http-equiv="Content-Type" content="text/html; charset=UTF-8">
 <TITLE>
-Uses of Class org.apache.maven.shared.utils.io.DirectoryScanner (Apache Maven Shared Utils 0.7 API)
+Uses of Class org.apache.maven.shared.utils.io.DirectoryScanner (Apache Maven Shared Utils 0.8 API)
 </TITLE>
 
 
@@ -13,7 +13,7 @@ Uses of Class org.apache.maven.shared.ut
 <SCRIPT type="text/javascript">
 function windowTitle()
 {
-    parent.document.title="Uses of Class org.apache.maven.shared.utils.io.DirectoryScanner (Apache Maven Shared Utils 0.7 API)";
+    parent.document.title="Uses of Class org.apache.maven.shared.utils.io.DirectoryScanner (Apache Maven Shared Utils 0.8 API)";
 }
 </SCRIPT>
 <NOSCRIPT>
@@ -135,6 +135,6 @@ No usage of org.apache.maven.shared.util
 <!-- ======== END OF BOTTOM NAVBAR ======= -->
 
 <HR>
-Copyright &#169; 2002&#x2013;2014 <a href="http://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.
+Copyright &#169; 2002&#x2013;2015 <a href="http://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.
 </BODY>
 </HTML>
\ No newline at end of file

Modified: websites/production/maven/components/shared-archives/maven-shared-utils-LATEST/apidocs/org/apache/maven/shared/utils/io/class-use/DirectoryWalkListener.html
==============================================================================
--- websites/production/maven/components/shared-archives/maven-shared-utils-LATEST/apidocs/org/apache/maven/shared/utils/io/class-use/DirectoryWalkListener.html (original)
+++ websites/production/maven/components/shared-archives/maven-shared-utils-LATEST/apidocs/org/apache/maven/shared/utils/io/class-use/DirectoryWalkListener.html Tue Jun 16 23:06:34 2015
@@ -4,7 +4,7 @@
 <HEAD>
 <META http-equiv="Content-Type" content="text/html; charset=UTF-8">
 <TITLE>
-Uses of Interface org.apache.maven.shared.utils.io.DirectoryWalkListener (Apache Maven Shared Utils 0.7 API)
+Uses of Interface org.apache.maven.shared.utils.io.DirectoryWalkListener (Apache Maven Shared Utils 0.8 API)
 </TITLE>
 
 
@@ -13,7 +13,7 @@ Uses of Interface org.apache.maven.share
 <SCRIPT type="text/javascript">
 function windowTitle()
 {
-    parent.document.title="Uses of Interface org.apache.maven.shared.utils.io.DirectoryWalkListener (Apache Maven Shared Utils 0.7 API)";
+    parent.document.title="Uses of Interface org.apache.maven.shared.utils.io.DirectoryWalkListener (Apache Maven Shared Utils 0.8 API)";
 }
 </SCRIPT>
 <NOSCRIPT>
@@ -171,6 +171,6 @@ Uses of <A HREF="../../../../../../../or
 <!-- ======== END OF BOTTOM NAVBAR ======= -->
 
 <HR>
-Copyright &#169; 2002&#x2013;2014 <a href="http://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.
+Copyright &#169; 2002&#x2013;2015 <a href="http://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.
 </BODY>
 </HTML>
\ No newline at end of file

Modified: websites/production/maven/components/shared-archives/maven-shared-utils-LATEST/apidocs/org/apache/maven/shared/utils/io/class-use/FileUtils.FilterWrapper.html
==============================================================================
--- websites/production/maven/components/shared-archives/maven-shared-utils-LATEST/apidocs/org/apache/maven/shared/utils/io/class-use/FileUtils.FilterWrapper.html (original)
+++ websites/production/maven/components/shared-archives/maven-shared-utils-LATEST/apidocs/org/apache/maven/shared/utils/io/class-use/FileUtils.FilterWrapper.html Tue Jun 16 23:06:34 2015
@@ -4,7 +4,7 @@
 <HEAD>
 <META http-equiv="Content-Type" content="text/html; charset=UTF-8">
 <TITLE>
-Uses of Class org.apache.maven.shared.utils.io.FileUtils.FilterWrapper (Apache Maven Shared Utils 0.7 API)
+Uses of Class org.apache.maven.shared.utils.io.FileUtils.FilterWrapper (Apache Maven Shared Utils 0.8 API)
 </TITLE>
 
 
@@ -13,7 +13,7 @@ Uses of Class org.apache.maven.shared.ut
 <SCRIPT type="text/javascript">
 function windowTitle()
 {
-    parent.document.title="Uses of Class org.apache.maven.shared.utils.io.FileUtils.FilterWrapper (Apache Maven Shared Utils 0.7 API)";
+    parent.document.title="Uses of Class org.apache.maven.shared.utils.io.FileUtils.FilterWrapper (Apache Maven Shared Utils 0.8 API)";
 }
 </SCRIPT>
 <NOSCRIPT>
@@ -127,7 +127,8 @@ Uses of <A HREF="../../../../../../../or
          boolean&nbsp;overwrite)</CODE>
 
 <BR>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<b>If wrappers is null or empty, the file will be copy only if to.lastModified() < from.lastModified() or if overwrite is true</b></TD>
+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<b>If wrappers is null or empty, the file will be copy only if to.lastModified() < from.lastModified() or if
+ overwrite is true</b></TD>
 </TR>
 </TABLE>
 &nbsp;
@@ -186,6 +187,6 @@ Uses of <A HREF="../../../../../../../or
 <!-- ======== END OF BOTTOM NAVBAR ======= -->
 
 <HR>
-Copyright &#169; 2002&#x2013;2014 <a href="http://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.
+Copyright &#169; 2002&#x2013;2015 <a href="http://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.
 </BODY>
 </HTML>
\ No newline at end of file

Modified: websites/production/maven/components/shared-archives/maven-shared-utils-LATEST/apidocs/org/apache/maven/shared/utils/io/class-use/FileUtils.html
==============================================================================
--- websites/production/maven/components/shared-archives/maven-shared-utils-LATEST/apidocs/org/apache/maven/shared/utils/io/class-use/FileUtils.html (original)
+++ websites/production/maven/components/shared-archives/maven-shared-utils-LATEST/apidocs/org/apache/maven/shared/utils/io/class-use/FileUtils.html Tue Jun 16 23:06:34 2015
@@ -4,7 +4,7 @@
 <HEAD>
 <META http-equiv="Content-Type" content="text/html; charset=UTF-8">
 <TITLE>
-Uses of Class org.apache.maven.shared.utils.io.FileUtils (Apache Maven Shared Utils 0.7 API)
+Uses of Class org.apache.maven.shared.utils.io.FileUtils (Apache Maven Shared Utils 0.8 API)
 </TITLE>
 
 
@@ -13,7 +13,7 @@ Uses of Class org.apache.maven.shared.ut
 <SCRIPT type="text/javascript">
 function windowTitle()
 {
-    parent.document.title="Uses of Class org.apache.maven.shared.utils.io.FileUtils (Apache Maven Shared Utils 0.7 API)";
+    parent.document.title="Uses of Class org.apache.maven.shared.utils.io.FileUtils (Apache Maven Shared Utils 0.8 API)";
 }
 </SCRIPT>
 <NOSCRIPT>
@@ -135,6 +135,6 @@ No usage of org.apache.maven.shared.util
 <!-- ======== END OF BOTTOM NAVBAR ======= -->
 
 <HR>
-Copyright &#169; 2002&#x2013;2014 <a href="http://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.
+Copyright &#169; 2002&#x2013;2015 <a href="http://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.
 </BODY>
 </HTML>
\ No newline at end of file

Modified: websites/production/maven/components/shared-archives/maven-shared-utils-LATEST/apidocs/org/apache/maven/shared/utils/io/class-use/IOUtil.html
==============================================================================
--- websites/production/maven/components/shared-archives/maven-shared-utils-LATEST/apidocs/org/apache/maven/shared/utils/io/class-use/IOUtil.html (original)
+++ websites/production/maven/components/shared-archives/maven-shared-utils-LATEST/apidocs/org/apache/maven/shared/utils/io/class-use/IOUtil.html Tue Jun 16 23:06:34 2015
@@ -4,7 +4,7 @@
 <HEAD>
 <META http-equiv="Content-Type" content="text/html; charset=UTF-8">
 <TITLE>
-Uses of Class org.apache.maven.shared.utils.io.IOUtil (Apache Maven Shared Utils 0.7 API)
+Uses of Class org.apache.maven.shared.utils.io.IOUtil (Apache Maven Shared Utils 0.8 API)
 </TITLE>
 
 
@@ -13,7 +13,7 @@ Uses of Class org.apache.maven.shared.ut
 <SCRIPT type="text/javascript">
 function windowTitle()
 {
-    parent.document.title="Uses of Class org.apache.maven.shared.utils.io.IOUtil (Apache Maven Shared Utils 0.7 API)";
+    parent.document.title="Uses of Class org.apache.maven.shared.utils.io.IOUtil (Apache Maven Shared Utils 0.8 API)";
 }
 </SCRIPT>
 <NOSCRIPT>
@@ -135,6 +135,6 @@ No usage of org.apache.maven.shared.util
 <!-- ======== END OF BOTTOM NAVBAR ======= -->
 
 <HR>
-Copyright &#169; 2002&#x2013;2014 <a href="http://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.
+Copyright &#169; 2002&#x2013;2015 <a href="http://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.
 </BODY>
 </HTML>
\ No newline at end of file

Modified: websites/production/maven/components/shared-archives/maven-shared-utils-LATEST/apidocs/org/apache/maven/shared/utils/io/class-use/Java7Support.html
==============================================================================
--- websites/production/maven/components/shared-archives/maven-shared-utils-LATEST/apidocs/org/apache/maven/shared/utils/io/class-use/Java7Support.html (original)
+++ websites/production/maven/components/shared-archives/maven-shared-utils-LATEST/apidocs/org/apache/maven/shared/utils/io/class-use/Java7Support.html Tue Jun 16 23:06:34 2015
@@ -4,7 +4,7 @@
 <HEAD>
 <META http-equiv="Content-Type" content="text/html; charset=UTF-8">
 <TITLE>
-Uses of Class org.apache.maven.shared.utils.io.Java7Support (Apache Maven Shared Utils 0.7 API)
+Uses of Class org.apache.maven.shared.utils.io.Java7Support (Apache Maven Shared Utils 0.8 API)
 </TITLE>
 
 
@@ -13,7 +13,7 @@ Uses of Class org.apache.maven.shared.ut
 <SCRIPT type="text/javascript">
 function windowTitle()
 {
-    parent.document.title="Uses of Class org.apache.maven.shared.utils.io.Java7Support (Apache Maven Shared Utils 0.7 API)";
+    parent.document.title="Uses of Class org.apache.maven.shared.utils.io.Java7Support (Apache Maven Shared Utils 0.8 API)";
 }
 </SCRIPT>
 <NOSCRIPT>
@@ -135,6 +135,6 @@ No usage of org.apache.maven.shared.util
 <!-- ======== END OF BOTTOM NAVBAR ======= -->
 
 <HR>
-Copyright &#169; 2002&#x2013;2014 <a href="http://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.
+Copyright &#169; 2002&#x2013;2015 <a href="http://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.
 </BODY>
 </HTML>
\ No newline at end of file

Modified: websites/production/maven/components/shared-archives/maven-shared-utils-LATEST/apidocs/org/apache/maven/shared/utils/io/class-use/MatchPattern.html
==============================================================================
--- websites/production/maven/components/shared-archives/maven-shared-utils-LATEST/apidocs/org/apache/maven/shared/utils/io/class-use/MatchPattern.html (original)
+++ websites/production/maven/components/shared-archives/maven-shared-utils-LATEST/apidocs/org/apache/maven/shared/utils/io/class-use/MatchPattern.html Tue Jun 16 23:06:34 2015
@@ -4,7 +4,7 @@
 <HEAD>
 <META http-equiv="Content-Type" content="text/html; charset=UTF-8">
 <TITLE>
-Uses of Class org.apache.maven.shared.utils.io.MatchPattern (Apache Maven Shared Utils 0.7 API)
+Uses of Class org.apache.maven.shared.utils.io.MatchPattern (Apache Maven Shared Utils 0.8 API)
 </TITLE>
 
 
@@ -13,7 +13,7 @@ Uses of Class org.apache.maven.shared.ut
 <SCRIPT type="text/javascript">
 function windowTitle()
 {
-    parent.document.title="Uses of Class org.apache.maven.shared.utils.io.MatchPattern (Apache Maven Shared Utils 0.7 API)";
+    parent.document.title="Uses of Class org.apache.maven.shared.utils.io.MatchPattern (Apache Maven Shared Utils 0.8 API)";
 }
 </SCRIPT>
 <NOSCRIPT>
@@ -171,6 +171,6 @@ Uses of <A HREF="../../../../../../../or
 <!-- ======== END OF BOTTOM NAVBAR ======= -->
 
 <HR>
-Copyright &#169; 2002&#x2013;2014 <a href="http://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.
+Copyright &#169; 2002&#x2013;2015 <a href="http://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.
 </BODY>
 </HTML>
\ No newline at end of file

Modified: websites/production/maven/components/shared-archives/maven-shared-utils-LATEST/apidocs/org/apache/maven/shared/utils/io/class-use/MatchPatterns.html
==============================================================================
--- websites/production/maven/components/shared-archives/maven-shared-utils-LATEST/apidocs/org/apache/maven/shared/utils/io/class-use/MatchPatterns.html (original)
+++ websites/production/maven/components/shared-archives/maven-shared-utils-LATEST/apidocs/org/apache/maven/shared/utils/io/class-use/MatchPatterns.html Tue Jun 16 23:06:34 2015
@@ -4,7 +4,7 @@
 <HEAD>
 <META http-equiv="Content-Type" content="text/html; charset=UTF-8">
 <TITLE>
-Uses of Class org.apache.maven.shared.utils.io.MatchPatterns (Apache Maven Shared Utils 0.7 API)
+Uses of Class org.apache.maven.shared.utils.io.MatchPatterns (Apache Maven Shared Utils 0.8 API)
 </TITLE>
 
 
@@ -13,7 +13,7 @@ Uses of Class org.apache.maven.shared.ut
 <SCRIPT type="text/javascript">
 function windowTitle()
 {
-    parent.document.title="Uses of Class org.apache.maven.shared.utils.io.MatchPatterns (Apache Maven Shared Utils 0.7 API)";
+    parent.document.title="Uses of Class org.apache.maven.shared.utils.io.MatchPatterns (Apache Maven Shared Utils 0.8 API)";
 }
 </SCRIPT>
 <NOSCRIPT>
@@ -171,6 +171,6 @@ Uses of <A HREF="../../../../../../../or
 <!-- ======== END OF BOTTOM NAVBAR ======= -->
 
 <HR>
-Copyright &#169; 2002&#x2013;2014 <a href="http://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.
+Copyright &#169; 2002&#x2013;2015 <a href="http://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.
 </BODY>
 </HTML>
\ No newline at end of file

Modified: websites/production/maven/components/shared-archives/maven-shared-utils-LATEST/apidocs/org/apache/maven/shared/utils/io/class-use/ScanConductor.ScanAction.html
==============================================================================
--- websites/production/maven/components/shared-archives/maven-shared-utils-LATEST/apidocs/org/apache/maven/shared/utils/io/class-use/ScanConductor.ScanAction.html (original)
+++ websites/production/maven/components/shared-archives/maven-shared-utils-LATEST/apidocs/org/apache/maven/shared/utils/io/class-use/ScanConductor.ScanAction.html Tue Jun 16 23:06:34 2015
@@ -4,7 +4,7 @@
 <HEAD>
 <META http-equiv="Content-Type" content="text/html; charset=UTF-8">
 <TITLE>
-Uses of Class org.apache.maven.shared.utils.io.ScanConductor.ScanAction (Apache Maven Shared Utils 0.7 API)
+Uses of Class org.apache.maven.shared.utils.io.ScanConductor.ScanAction (Apache Maven Shared Utils 0.8 API)
 </TITLE>
 
 
@@ -13,7 +13,7 @@ Uses of Class org.apache.maven.shared.ut
 <SCRIPT type="text/javascript">
 function windowTitle()
 {
-    parent.document.title="Uses of Class org.apache.maven.shared.utils.io.ScanConductor.ScanAction (Apache Maven Shared Utils 0.7 API)";
+    parent.document.title="Uses of Class org.apache.maven.shared.utils.io.ScanConductor.ScanAction (Apache Maven Shared Utils 0.8 API)";
 }
 </SCRIPT>
 <NOSCRIPT>
@@ -198,6 +198,6 @@ the order they're declared.</TD>
 <!-- ======== END OF BOTTOM NAVBAR ======= -->
 
 <HR>
-Copyright &#169; 2002&#x2013;2014 <a href="http://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.
+Copyright &#169; 2002&#x2013;2015 <a href="http://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.
 </BODY>
 </HTML>
\ No newline at end of file

Modified: websites/production/maven/components/shared-archives/maven-shared-utils-LATEST/apidocs/org/apache/maven/shared/utils/io/class-use/ScanConductor.html
==============================================================================
--- websites/production/maven/components/shared-archives/maven-shared-utils-LATEST/apidocs/org/apache/maven/shared/utils/io/class-use/ScanConductor.html (original)
+++ websites/production/maven/components/shared-archives/maven-shared-utils-LATEST/apidocs/org/apache/maven/shared/utils/io/class-use/ScanConductor.html Tue Jun 16 23:06:34 2015
@@ -4,7 +4,7 @@
 <HEAD>
 <META http-equiv="Content-Type" content="text/html; charset=UTF-8">
 <TITLE>
-Uses of Interface org.apache.maven.shared.utils.io.ScanConductor (Apache Maven Shared Utils 0.7 API)
+Uses of Interface org.apache.maven.shared.utils.io.ScanConductor (Apache Maven Shared Utils 0.8 API)
 </TITLE>
 
 
@@ -13,7 +13,7 @@ Uses of Interface org.apache.maven.share
 <SCRIPT type="text/javascript">
 function windowTitle()
 {
-    parent.document.title="Uses of Interface org.apache.maven.shared.utils.io.ScanConductor (Apache Maven Shared Utils 0.7 API)";
+    parent.document.title="Uses of Interface org.apache.maven.shared.utils.io.ScanConductor (Apache Maven Shared Utils 0.8 API)";
 }
 </SCRIPT>
 <NOSCRIPT>
@@ -171,6 +171,6 @@ Uses of <A HREF="../../../../../../../or
 <!-- ======== END OF BOTTOM NAVBAR ======= -->
 
 <HR>
-Copyright &#169; 2002&#x2013;2014 <a href="http://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.
+Copyright &#169; 2002&#x2013;2015 <a href="http://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.
 </BODY>
 </HTML>
\ No newline at end of file

Modified: websites/production/maven/components/shared-archives/maven-shared-utils-LATEST/apidocs/org/apache/maven/shared/utils/io/class-use/SelectorUtils.html
==============================================================================
--- websites/production/maven/components/shared-archives/maven-shared-utils-LATEST/apidocs/org/apache/maven/shared/utils/io/class-use/SelectorUtils.html (original)
+++ websites/production/maven/components/shared-archives/maven-shared-utils-LATEST/apidocs/org/apache/maven/shared/utils/io/class-use/SelectorUtils.html Tue Jun 16 23:06:34 2015
@@ -4,7 +4,7 @@
 <HEAD>
 <META http-equiv="Content-Type" content="text/html; charset=UTF-8">
 <TITLE>
-Uses of Class org.apache.maven.shared.utils.io.SelectorUtils (Apache Maven Shared Utils 0.7 API)
+Uses of Class org.apache.maven.shared.utils.io.SelectorUtils (Apache Maven Shared Utils 0.8 API)
 </TITLE>
 
 
@@ -13,7 +13,7 @@ Uses of Class org.apache.maven.shared.ut
 <SCRIPT type="text/javascript">
 function windowTitle()
 {
-    parent.document.title="Uses of Class org.apache.maven.shared.utils.io.SelectorUtils (Apache Maven Shared Utils 0.7 API)";
+    parent.document.title="Uses of Class org.apache.maven.shared.utils.io.SelectorUtils (Apache Maven Shared Utils 0.8 API)";
 }
 </SCRIPT>
 <NOSCRIPT>
@@ -135,6 +135,6 @@ No usage of org.apache.maven.shared.util
 <!-- ======== END OF BOTTOM NAVBAR ======= -->
 
 <HR>
-Copyright &#169; 2002&#x2013;2014 <a href="http://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.
+Copyright &#169; 2002&#x2013;2015 <a href="http://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.
 </BODY>
 </HTML>
\ No newline at end of file

Modified: websites/production/maven/components/shared-archives/maven-shared-utils-LATEST/apidocs/org/apache/maven/shared/utils/io/class-use/WalkCollector.html
==============================================================================
--- websites/production/maven/components/shared-archives/maven-shared-utils-LATEST/apidocs/org/apache/maven/shared/utils/io/class-use/WalkCollector.html (original)
+++ websites/production/maven/components/shared-archives/maven-shared-utils-LATEST/apidocs/org/apache/maven/shared/utils/io/class-use/WalkCollector.html Tue Jun 16 23:06:34 2015
@@ -4,7 +4,7 @@
 <HEAD>
 <META http-equiv="Content-Type" content="text/html; charset=UTF-8">
 <TITLE>
-Uses of Class org.apache.maven.shared.utils.io.WalkCollector (Apache Maven Shared Utils 0.7 API)
+Uses of Class org.apache.maven.shared.utils.io.WalkCollector (Apache Maven Shared Utils 0.8 API)
 </TITLE>
 
 
@@ -13,7 +13,7 @@ Uses of Class org.apache.maven.shared.ut
 <SCRIPT type="text/javascript">
 function windowTitle()
 {
-    parent.document.title="Uses of Class org.apache.maven.shared.utils.io.WalkCollector (Apache Maven Shared Utils 0.7 API)";
+    parent.document.title="Uses of Class org.apache.maven.shared.utils.io.WalkCollector (Apache Maven Shared Utils 0.8 API)";
 }
 </SCRIPT>
 <NOSCRIPT>
@@ -135,6 +135,6 @@ No usage of org.apache.maven.shared.util
 <!-- ======== END OF BOTTOM NAVBAR ======= -->
 
 <HR>
-Copyright &#169; 2002&#x2013;2014 <a href="http://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.
+Copyright &#169; 2002&#x2013;2015 <a href="http://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.
 </BODY>
 </HTML>
\ No newline at end of file

Modified: websites/production/maven/components/shared-archives/maven-shared-utils-LATEST/apidocs/org/apache/maven/shared/utils/io/package-frame.html
==============================================================================
--- websites/production/maven/components/shared-archives/maven-shared-utils-LATEST/apidocs/org/apache/maven/shared/utils/io/package-frame.html (original)
+++ websites/production/maven/components/shared-archives/maven-shared-utils-LATEST/apidocs/org/apache/maven/shared/utils/io/package-frame.html Tue Jun 16 23:06:34 2015
@@ -4,7 +4,7 @@
 <HEAD>
 <META http-equiv="Content-Type" content="text/html; charset=UTF-8">
 <TITLE>
-org.apache.maven.shared.utils.io (Apache Maven Shared Utils 0.7 API)
+org.apache.maven.shared.utils.io (Apache Maven Shared Utils 0.8 API)
 </TITLE>
 
 <META NAME="keywords" CONTENT="org.apache.maven.shared.utils.io package">

Modified: websites/production/maven/components/shared-archives/maven-shared-utils-LATEST/apidocs/org/apache/maven/shared/utils/io/package-summary.html
==============================================================================
--- websites/production/maven/components/shared-archives/maven-shared-utils-LATEST/apidocs/org/apache/maven/shared/utils/io/package-summary.html (original)
+++ websites/production/maven/components/shared-archives/maven-shared-utils-LATEST/apidocs/org/apache/maven/shared/utils/io/package-summary.html Tue Jun 16 23:06:34 2015
@@ -4,7 +4,7 @@
 <HEAD>
 <META http-equiv="Content-Type" content="text/html; charset=UTF-8">
 <TITLE>
-org.apache.maven.shared.utils.io (Apache Maven Shared Utils 0.7 API)
+org.apache.maven.shared.utils.io (Apache Maven Shared Utils 0.8 API)
 </TITLE>
 
 <META NAME="keywords" CONTENT="org.apache.maven.shared.utils.io package">
@@ -14,7 +14,7 @@ org.apache.maven.shared.utils.io (Apache
 <SCRIPT type="text/javascript">
 function windowTitle()
 {
-    parent.document.title="org.apache.maven.shared.utils.io (Apache Maven Shared Utils 0.7 API)";
+    parent.document.title="org.apache.maven.shared.utils.io (Apache Maven Shared Utils 0.8 API)";
 }
 </SCRIPT>
 <NOSCRIPT>
@@ -218,6 +218,6 @@ Package org.apache.maven.shared.utils.io
 <!-- ======== END OF BOTTOM NAVBAR ======= -->
 
 <HR>
-Copyright &#169; 2002&#x2013;2014 <a href="http://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.
+Copyright &#169; 2002&#x2013;2015 <a href="http://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.
 </BODY>
 </HTML>
\ No newline at end of file

Modified: websites/production/maven/components/shared-archives/maven-shared-utils-LATEST/apidocs/org/apache/maven/shared/utils/io/package-tree.html
==============================================================================
--- websites/production/maven/components/shared-archives/maven-shared-utils-LATEST/apidocs/org/apache/maven/shared/utils/io/package-tree.html (original)
+++ websites/production/maven/components/shared-archives/maven-shared-utils-LATEST/apidocs/org/apache/maven/shared/utils/io/package-tree.html Tue Jun 16 23:06:34 2015
@@ -4,7 +4,7 @@
 <HEAD>
 <META http-equiv="Content-Type" content="text/html; charset=UTF-8">
 <TITLE>
-org.apache.maven.shared.utils.io Class Hierarchy (Apache Maven Shared Utils 0.7 API)
+org.apache.maven.shared.utils.io Class Hierarchy (Apache Maven Shared Utils 0.8 API)
 </TITLE>
 
 
@@ -13,7 +13,7 @@ org.apache.maven.shared.utils.io Class H
 <SCRIPT type="text/javascript">
 function windowTitle()
 {
-    parent.document.title="org.apache.maven.shared.utils.io Class Hierarchy (Apache Maven Shared Utils 0.7 API)";
+    parent.document.title="org.apache.maven.shared.utils.io Class Hierarchy (Apache Maven Shared Utils 0.8 API)";
 }
 </SCRIPT>
 <NOSCRIPT>
@@ -160,6 +160,6 @@ Enum Hierarchy
 <!-- ======== END OF BOTTOM NAVBAR ======= -->
 
 <HR>
-Copyright &#169; 2002&#x2013;2014 <a href="http://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.
+Copyright &#169; 2002&#x2013;2015 <a href="http://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.
 </BODY>
 </HTML>
\ No newline at end of file

Modified: websites/production/maven/components/shared-archives/maven-shared-utils-LATEST/apidocs/org/apache/maven/shared/utils/io/package-use.html
==============================================================================
--- websites/production/maven/components/shared-archives/maven-shared-utils-LATEST/apidocs/org/apache/maven/shared/utils/io/package-use.html (original)
+++ websites/production/maven/components/shared-archives/maven-shared-utils-LATEST/apidocs/org/apache/maven/shared/utils/io/package-use.html Tue Jun 16 23:06:34 2015
@@ -4,7 +4,7 @@
 <HEAD>
 <META http-equiv="Content-Type" content="text/html; charset=UTF-8">
 <TITLE>
-Uses of Package org.apache.maven.shared.utils.io (Apache Maven Shared Utils 0.7 API)
+Uses of Package org.apache.maven.shared.utils.io (Apache Maven Shared Utils 0.8 API)
 </TITLE>
 
 
@@ -13,7 +13,7 @@ Uses of Package org.apache.maven.shared.
 <SCRIPT type="text/javascript">
 function windowTitle()
 {
-    parent.document.title="Uses of Package org.apache.maven.shared.utils.io (Apache Maven Shared Utils 0.7 API)";
+    parent.document.title="Uses of Package org.apache.maven.shared.utils.io (Apache Maven Shared Utils 0.8 API)";
 }
 </SCRIPT>
 <NOSCRIPT>
@@ -198,6 +198,6 @@ Classes in <A HREF="../../../../../../or
 <!-- ======== END OF BOTTOM NAVBAR ======= -->
 
 <HR>
-Copyright &#169; 2002&#x2013;2014 <a href="http://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.
+Copyright &#169; 2002&#x2013;2015 <a href="http://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.
 </BODY>
 </HTML>
\ No newline at end of file

Modified: websites/production/maven/components/shared-archives/maven-shared-utils-LATEST/apidocs/org/apache/maven/shared/utils/package-frame.html
==============================================================================
--- websites/production/maven/components/shared-archives/maven-shared-utils-LATEST/apidocs/org/apache/maven/shared/utils/package-frame.html (original)
+++ websites/production/maven/components/shared-archives/maven-shared-utils-LATEST/apidocs/org/apache/maven/shared/utils/package-frame.html Tue Jun 16 23:06:34 2015
@@ -4,7 +4,7 @@
 <HEAD>
 <META http-equiv="Content-Type" content="text/html; charset=UTF-8">
 <TITLE>
-org.apache.maven.shared.utils (Apache Maven Shared Utils 0.7 API)
+org.apache.maven.shared.utils (Apache Maven Shared Utils 0.8 API)
 </TITLE>
 
 <META NAME="keywords" CONTENT="org.apache.maven.shared.utils package">

Modified: websites/production/maven/components/shared-archives/maven-shared-utils-LATEST/apidocs/org/apache/maven/shared/utils/package-summary.html
==============================================================================
--- websites/production/maven/components/shared-archives/maven-shared-utils-LATEST/apidocs/org/apache/maven/shared/utils/package-summary.html (original)
+++ websites/production/maven/components/shared-archives/maven-shared-utils-LATEST/apidocs/org/apache/maven/shared/utils/package-summary.html Tue Jun 16 23:06:34 2015
@@ -4,7 +4,7 @@
 <HEAD>
 <META http-equiv="Content-Type" content="text/html; charset=UTF-8">
 <TITLE>
-org.apache.maven.shared.utils (Apache Maven Shared Utils 0.7 API)
+org.apache.maven.shared.utils (Apache Maven Shared Utils 0.8 API)
 </TITLE>
 
 <META NAME="keywords" CONTENT="org.apache.maven.shared.utils package">
@@ -14,7 +14,7 @@ org.apache.maven.shared.utils (Apache Ma
 <SCRIPT type="text/javascript">
 function windowTitle()
 {
-    parent.document.title="org.apache.maven.shared.utils (Apache Maven Shared Utils 0.7 API)";
+    parent.document.title="org.apache.maven.shared.utils (Apache Maven Shared Utils 0.8 API)";
 }
 </SCRIPT>
 <NOSCRIPT>
@@ -172,6 +172,6 @@ Package org.apache.maven.shared.utils
 <!-- ======== END OF BOTTOM NAVBAR ======= -->
 
 <HR>
-Copyright &#169; 2002&#x2013;2014 <a href="http://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.
+Copyright &#169; 2002&#x2013;2015 <a href="http://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.
 </BODY>
 </HTML>
\ No newline at end of file

Modified: websites/production/maven/components/shared-archives/maven-shared-utils-LATEST/apidocs/org/apache/maven/shared/utils/package-tree.html
==============================================================================
--- websites/production/maven/components/shared-archives/maven-shared-utils-LATEST/apidocs/org/apache/maven/shared/utils/package-tree.html (original)
+++ websites/production/maven/components/shared-archives/maven-shared-utils-LATEST/apidocs/org/apache/maven/shared/utils/package-tree.html Tue Jun 16 23:06:34 2015
@@ -4,7 +4,7 @@
 <HEAD>
 <META http-equiv="Content-Type" content="text/html; charset=UTF-8">
 <TITLE>
-org.apache.maven.shared.utils Class Hierarchy (Apache Maven Shared Utils 0.7 API)
+org.apache.maven.shared.utils Class Hierarchy (Apache Maven Shared Utils 0.8 API)
 </TITLE>
 
 
@@ -13,7 +13,7 @@ org.apache.maven.shared.utils Class Hier
 <SCRIPT type="text/javascript">
 function windowTitle()
 {
-    parent.document.title="org.apache.maven.shared.utils Class Hierarchy (Apache Maven Shared Utils 0.7 API)";
+    parent.document.title="org.apache.maven.shared.utils Class Hierarchy (Apache Maven Shared Utils 0.8 API)";
 }
 </SCRIPT>
 <NOSCRIPT>
@@ -144,6 +144,6 @@ Class Hierarchy
 <!-- ======== END OF BOTTOM NAVBAR ======= -->
 
 <HR>
-Copyright &#169; 2002&#x2013;2014 <a href="http://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.
+Copyright &#169; 2002&#x2013;2015 <a href="http://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.
 </BODY>
 </HTML>
\ No newline at end of file

Modified: websites/production/maven/components/shared-archives/maven-shared-utils-LATEST/apidocs/org/apache/maven/shared/utils/package-use.html
==============================================================================
--- websites/production/maven/components/shared-archives/maven-shared-utils-LATEST/apidocs/org/apache/maven/shared/utils/package-use.html (original)
+++ websites/production/maven/components/shared-archives/maven-shared-utils-LATEST/apidocs/org/apache/maven/shared/utils/package-use.html Tue Jun 16 23:06:34 2015
@@ -4,7 +4,7 @@
 <HEAD>
 <META http-equiv="Content-Type" content="text/html; charset=UTF-8">
 <TITLE>
-Uses of Package org.apache.maven.shared.utils (Apache Maven Shared Utils 0.7 API)
+Uses of Package org.apache.maven.shared.utils (Apache Maven Shared Utils 0.8 API)
 </TITLE>
 
 
@@ -13,7 +13,7 @@ Uses of Package org.apache.maven.shared.
 <SCRIPT type="text/javascript">
 function windowTitle()
 {
-    parent.document.title="Uses of Package org.apache.maven.shared.utils (Apache Maven Shared Utils 0.7 API)";
+    parent.document.title="Uses of Package org.apache.maven.shared.utils (Apache Maven Shared Utils 0.8 API)";
 }
 </SCRIPT>
 <NOSCRIPT>
@@ -135,6 +135,6 @@ No usage of org.apache.maven.shared.util
 <!-- ======== END OF BOTTOM NAVBAR ======= -->
 
 <HR>
-Copyright &#169; 2002&#x2013;2014 <a href="http://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.
+Copyright &#169; 2002&#x2013;2015 <a href="http://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.
 </BODY>
 </HTML>
\ No newline at end of file

Modified: websites/production/maven/components/shared-archives/maven-shared-utils-LATEST/apidocs/org/apache/maven/shared/utils/reflection/package-frame.html
==============================================================================
--- websites/production/maven/components/shared-archives/maven-shared-utils-LATEST/apidocs/org/apache/maven/shared/utils/reflection/package-frame.html (original)
+++ websites/production/maven/components/shared-archives/maven-shared-utils-LATEST/apidocs/org/apache/maven/shared/utils/reflection/package-frame.html Tue Jun 16 23:06:34 2015
@@ -4,7 +4,7 @@
 <HEAD>
 <META http-equiv="Content-Type" content="text/html; charset=UTF-8">
 <TITLE>
-org.apache.maven.shared.utils.reflection (Apache Maven Shared Utils 0.7 API)
+org.apache.maven.shared.utils.reflection (Apache Maven Shared Utils 0.8 API)
 </TITLE>
 
 <META NAME="keywords" CONTENT="org.apache.maven.shared.utils.reflection package">

Modified: websites/production/maven/components/shared-archives/maven-shared-utils-LATEST/apidocs/org/apache/maven/shared/utils/reflection/package-summary.html
==============================================================================
--- websites/production/maven/components/shared-archives/maven-shared-utils-LATEST/apidocs/org/apache/maven/shared/utils/reflection/package-summary.html (original)
+++ websites/production/maven/components/shared-archives/maven-shared-utils-LATEST/apidocs/org/apache/maven/shared/utils/reflection/package-summary.html Tue Jun 16 23:06:34 2015
@@ -4,7 +4,7 @@
 <HEAD>
 <META http-equiv="Content-Type" content="text/html; charset=UTF-8">
 <TITLE>
-org.apache.maven.shared.utils.reflection (Apache Maven Shared Utils 0.7 API)
+org.apache.maven.shared.utils.reflection (Apache Maven Shared Utils 0.8 API)
 </TITLE>
 
 <META NAME="keywords" CONTENT="org.apache.maven.shared.utils.reflection package">
@@ -14,7 +14,7 @@ org.apache.maven.shared.utils.reflection
 <SCRIPT type="text/javascript">
 function windowTitle()
 {
-    parent.document.title="org.apache.maven.shared.utils.reflection (Apache Maven Shared Utils 0.7 API)";
+    parent.document.title="org.apache.maven.shared.utils.reflection (Apache Maven Shared Utils 0.8 API)";
 }
 </SCRIPT>
 <NOSCRIPT>
@@ -135,6 +135,6 @@ Package org.apache.maven.shared.utils.re
 <!-- ======== END OF BOTTOM NAVBAR ======= -->
 
 <HR>
-Copyright &#169; 2002&#x2013;2014 <a href="http://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.
+Copyright &#169; 2002&#x2013;2015 <a href="http://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.
 </BODY>
 </HTML>
\ No newline at end of file

Modified: websites/production/maven/components/shared-archives/maven-shared-utils-LATEST/apidocs/org/apache/maven/shared/utils/reflection/package-tree.html
==============================================================================
--- websites/production/maven/components/shared-archives/maven-shared-utils-LATEST/apidocs/org/apache/maven/shared/utils/reflection/package-tree.html (original)
+++ websites/production/maven/components/shared-archives/maven-shared-utils-LATEST/apidocs/org/apache/maven/shared/utils/reflection/package-tree.html Tue Jun 16 23:06:34 2015
@@ -4,7 +4,7 @@
 <HEAD>
 <META http-equiv="Content-Type" content="text/html; charset=UTF-8">
 <TITLE>
-org.apache.maven.shared.utils.reflection Class Hierarchy (Apache Maven Shared Utils 0.7 API)
+org.apache.maven.shared.utils.reflection Class Hierarchy (Apache Maven Shared Utils 0.8 API)
 </TITLE>
 
 
@@ -13,7 +13,7 @@ org.apache.maven.shared.utils.reflection
 <SCRIPT type="text/javascript">
 function windowTitle()
 {
-    parent.document.title="org.apache.maven.shared.utils.reflection Class Hierarchy (Apache Maven Shared Utils 0.7 API)";
+    parent.document.title="org.apache.maven.shared.utils.reflection Class Hierarchy (Apache Maven Shared Utils 0.8 API)";
 }
 </SCRIPT>
 <NOSCRIPT>
@@ -137,6 +137,6 @@ Hierarchy For Package org.apache.maven.s
 <!-- ======== END OF BOTTOM NAVBAR ======= -->
 
 <HR>
-Copyright &#169; 2002&#x2013;2014 <a href="http://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.
+Copyright &#169; 2002&#x2013;2015 <a href="http://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.
 </BODY>
 </HTML>
\ No newline at end of file

Modified: websites/production/maven/components/shared-archives/maven-shared-utils-LATEST/apidocs/org/apache/maven/shared/utils/reflection/package-use.html
==============================================================================
--- websites/production/maven/components/shared-archives/maven-shared-utils-LATEST/apidocs/org/apache/maven/shared/utils/reflection/package-use.html (original)
+++ websites/production/maven/components/shared-archives/maven-shared-utils-LATEST/apidocs/org/apache/maven/shared/utils/reflection/package-use.html Tue Jun 16 23:06:34 2015
@@ -4,7 +4,7 @@
 <HEAD>
 <META http-equiv="Content-Type" content="text/html; charset=UTF-8">
 <TITLE>
-Uses of Package org.apache.maven.shared.utils.reflection (Apache Maven Shared Utils 0.7 API)
+Uses of Package org.apache.maven.shared.utils.reflection (Apache Maven Shared Utils 0.8 API)
 </TITLE>
 
 
@@ -13,7 +13,7 @@ Uses of Package org.apache.maven.shared.
 <SCRIPT type="text/javascript">
 function windowTitle()
 {
-    parent.document.title="Uses of Package org.apache.maven.shared.utils.reflection (Apache Maven Shared Utils 0.7 API)";
+    parent.document.title="Uses of Package org.apache.maven.shared.utils.reflection (Apache Maven Shared Utils 0.8 API)";
 }
 </SCRIPT>
 <NOSCRIPT>
@@ -135,6 +135,6 @@ No usage of org.apache.maven.shared.util
 <!-- ======== END OF BOTTOM NAVBAR ======= -->
 
 <HR>
-Copyright &#169; 2002&#x2013;2014 <a href="http://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.
+Copyright &#169; 2002&#x2013;2015 <a href="http://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.
 </BODY>
 </HTML>
\ No newline at end of file

Modified: websites/production/maven/components/shared-archives/maven-shared-utils-LATEST/apidocs/org/apache/maven/shared/utils/xml/PrettyPrintXMLWriter.html
==============================================================================
--- websites/production/maven/components/shared-archives/maven-shared-utils-LATEST/apidocs/org/apache/maven/shared/utils/xml/PrettyPrintXMLWriter.html (original)
+++ websites/production/maven/components/shared-archives/maven-shared-utils-LATEST/apidocs/org/apache/maven/shared/utils/xml/PrettyPrintXMLWriter.html Tue Jun 16 23:06:34 2015
@@ -4,7 +4,7 @@
 <HEAD>
 <META http-equiv="Content-Type" content="text/html; charset=UTF-8">
 <TITLE>
-PrettyPrintXMLWriter (Apache Maven Shared Utils 0.7 API)
+PrettyPrintXMLWriter (Apache Maven Shared Utils 0.8 API)
 </TITLE>
 
 <META NAME="keywords" CONTENT="org.apache.maven.shared.utils.xml.PrettyPrintXMLWriter class">
@@ -14,7 +14,7 @@ PrettyPrintXMLWriter (Apache Maven Share
 <SCRIPT type="text/javascript">
 function windowTitle()
 {
-    parent.document.title="PrettyPrintXMLWriter (Apache Maven Shared Utils 0.7 API)";
+    parent.document.title="PrettyPrintXMLWriter (Apache Maven Shared Utils 0.8 API)";
 }
 </SCRIPT>
 <NOSCRIPT>
@@ -619,6 +619,6 @@ DETAIL:&nbsp;FIELD&nbsp;|&nbsp;<A HREF="
 <!-- ======== END OF BOTTOM NAVBAR ======= -->
 
 <HR>
-Copyright &#169; 2002&#x2013;2014 <a href="http://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.
+Copyright &#169; 2002&#x2013;2015 <a href="http://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.
 </BODY>
 </HTML>
\ No newline at end of file

Modified: websites/production/maven/components/shared-archives/maven-shared-utils-LATEST/apidocs/org/apache/maven/shared/utils/xml/XMLWriter.html
==============================================================================
--- websites/production/maven/components/shared-archives/maven-shared-utils-LATEST/apidocs/org/apache/maven/shared/utils/xml/XMLWriter.html (original)
+++ websites/production/maven/components/shared-archives/maven-shared-utils-LATEST/apidocs/org/apache/maven/shared/utils/xml/XMLWriter.html Tue Jun 16 23:06:34 2015
@@ -4,7 +4,7 @@
 <HEAD>
 <META http-equiv="Content-Type" content="text/html; charset=UTF-8">
 <TITLE>
-XMLWriter (Apache Maven Shared Utils 0.7 API)
+XMLWriter (Apache Maven Shared Utils 0.8 API)
 </TITLE>
 
 <META NAME="keywords" CONTENT="org.apache.maven.shared.utils.xml.XMLWriter interface">
@@ -14,7 +14,7 @@ XMLWriter (Apache Maven Shared Utils 0.7
 <SCRIPT type="text/javascript">
 function windowTitle()
 {
-    parent.document.title="XMLWriter (Apache Maven Shared Utils 0.7 API)";
+    parent.document.title="XMLWriter (Apache Maven Shared Utils 0.8 API)";
 }
 </SCRIPT>
 <NOSCRIPT>
@@ -350,6 +350,6 @@ DETAIL:&nbsp;FIELD&nbsp;|&nbsp;CONSTR&nb
 <!-- ======== END OF BOTTOM NAVBAR ======= -->
 
 <HR>
-Copyright &#169; 2002&#x2013;2014 <a href="http://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.
+Copyright &#169; 2002&#x2013;2015 <a href="http://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.
 </BODY>
 </HTML>
\ No newline at end of file

Modified: websites/production/maven/components/shared-archives/maven-shared-utils-LATEST/apidocs/org/apache/maven/shared/utils/xml/XmlStreamReader.html
==============================================================================
--- websites/production/maven/components/shared-archives/maven-shared-utils-LATEST/apidocs/org/apache/maven/shared/utils/xml/XmlStreamReader.html (original)
+++ websites/production/maven/components/shared-archives/maven-shared-utils-LATEST/apidocs/org/apache/maven/shared/utils/xml/XmlStreamReader.html Tue Jun 16 23:06:34 2015
@@ -4,7 +4,7 @@
 <HEAD>
 <META http-equiv="Content-Type" content="text/html; charset=UTF-8">
 <TITLE>
-XmlStreamReader (Apache Maven Shared Utils 0.7 API)
+XmlStreamReader (Apache Maven Shared Utils 0.8 API)
 </TITLE>
 
 <META NAME="keywords" CONTENT="org.apache.maven.shared.utils.xml.XmlStreamReader class">
@@ -14,7 +14,7 @@ XmlStreamReader (Apache Maven Shared Uti
 <SCRIPT type="text/javascript">
 function windowTitle()
 {
-    parent.document.title="XmlStreamReader (Apache Maven Shared Utils 0.7 API)";
+    parent.document.title="XmlStreamReader (Apache Maven Shared Utils 0.8 API)";
 }
 </SCRIPT>
 <NOSCRIPT>
@@ -525,6 +525,6 @@ DETAIL:&nbsp;FIELD&nbsp;|&nbsp;<A HREF="
 <!-- ======== END OF BOTTOM NAVBAR ======= -->
 
 <HR>
-Copyright &#169; 2002&#x2013;2014 <a href="http://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.
+Copyright &#169; 2002&#x2013;2015 <a href="http://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.
 </BODY>
 </HTML>
\ No newline at end of file

Modified: websites/production/maven/components/shared-archives/maven-shared-utils-LATEST/apidocs/org/apache/maven/shared/utils/xml/XmlStreamWriter.html
==============================================================================
--- websites/production/maven/components/shared-archives/maven-shared-utils-LATEST/apidocs/org/apache/maven/shared/utils/xml/XmlStreamWriter.html (original)
+++ websites/production/maven/components/shared-archives/maven-shared-utils-LATEST/apidocs/org/apache/maven/shared/utils/xml/XmlStreamWriter.html Tue Jun 16 23:06:34 2015
@@ -4,7 +4,7 @@
 <HEAD>
 <META http-equiv="Content-Type" content="text/html; charset=UTF-8">
 <TITLE>
-XmlStreamWriter (Apache Maven Shared Utils 0.7 API)
+XmlStreamWriter (Apache Maven Shared Utils 0.8 API)
 </TITLE>
 
 <META NAME="keywords" CONTENT="org.apache.maven.shared.utils.xml.XmlStreamWriter class">
@@ -14,7 +14,7 @@ XmlStreamWriter (Apache Maven Shared Uti
 <SCRIPT type="text/javascript">
 function windowTitle()
 {
-    parent.document.title="XmlStreamWriter (Apache Maven Shared Utils 0.7 API)";
+    parent.document.title="XmlStreamWriter (Apache Maven Shared Utils 0.8 API)";
 }
 </SCRIPT>
 <NOSCRIPT>
@@ -281,6 +281,6 @@ DETAIL:&nbsp;FIELD&nbsp;|&nbsp;<A HREF="
 <!-- ======== END OF BOTTOM NAVBAR ======= -->
 
 <HR>
-Copyright &#169; 2002&#x2013;2014 <a href="http://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.
+Copyright &#169; 2002&#x2013;2015 <a href="http://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.
 </BODY>
 </HTML>
\ No newline at end of file

Modified: websites/production/maven/components/shared-archives/maven-shared-utils-LATEST/apidocs/org/apache/maven/shared/utils/xml/XmlWriterUtil.html
==============================================================================
--- websites/production/maven/components/shared-archives/maven-shared-utils-LATEST/apidocs/org/apache/maven/shared/utils/xml/XmlWriterUtil.html (original)
+++ websites/production/maven/components/shared-archives/maven-shared-utils-LATEST/apidocs/org/apache/maven/shared/utils/xml/XmlWriterUtil.html Tue Jun 16 23:06:34 2015
@@ -4,7 +4,7 @@
 <HEAD>
 <META http-equiv="Content-Type" content="text/html; charset=UTF-8">
 <TITLE>
-XmlWriterUtil (Apache Maven Shared Utils 0.7 API)
+XmlWriterUtil (Apache Maven Shared Utils 0.8 API)
 </TITLE>
 
 <META NAME="keywords" CONTENT="org.apache.maven.shared.utils.xml.XmlWriterUtil class">
@@ -14,7 +14,7 @@ XmlWriterUtil (Apache Maven Shared Utils
 <SCRIPT type="text/javascript">
 function windowTitle()
 {
-    parent.document.title="XmlWriterUtil (Apache Maven Shared Utils 0.7 API)";
+    parent.document.title="XmlWriterUtil (Apache Maven Shared Utils 0.8 API)";
 }
 </SCRIPT>
 <NOSCRIPT>
@@ -486,7 +486,8 @@ writeComment</H3>
 public static void <B>writeComment</B>(<A HREF="../../../../../../org/apache/maven/shared/utils/xml/XMLWriter.html" title="interface in org.apache.maven.shared.utils.xml">XMLWriter</A>&nbsp;writer,
                                 <A HREF="http://docs.oracle.com/javase/1.5.0/docs/api/java/lang/String.html" title="class or interface in java.lang">String</A>&nbsp;comment)</PRE>
 <DL>
-<DD>Convenience method to write XML comment line. The <code>comment</code> is splitted to have a size of <code>80</code>.
+<DD>Convenience method to write XML comment line. The <code>comment</code> is splitted to have a size of
+ <code>80</code>.
 <P>
 <DD><DL>
 <DT><B>Parameters:</B><DD><CODE>writer</CODE> - not null<DD><CODE>comment</CODE> - The comment to write<DT><B>See Also:</B><DD><A HREF="../../../../../../org/apache/maven/shared/utils/xml/XmlWriterUtil.html#DEFAULT_INDENTATION_SIZE"><CODE>DEFAULT_INDENTATION_SIZE</CODE></A>, 
@@ -502,8 +503,8 @@ public static void <B>writeComment</B>(<
                                 <A HREF="http://docs.oracle.com/javase/1.5.0/docs/api/java/lang/String.html" title="class or interface in java.lang">String</A>&nbsp;comment,
                                 int&nbsp;indent)</PRE>
 <DL>
-<DD>Convenience method to write XML comment line. The <code>comment</code> is splitted to have a size of <code>80</code>
- and is indented by <code>indent</code> using <code>2</code> as indentation size.
+<DD>Convenience method to write XML comment line. The <code>comment</code> is split to have a size of
+ <code>80</code> and is indented by <code>indent</code> using <code>2</code> as indentation size.
 <P>
 <DD><DL>
 <DT><B>Parameters:</B><DD><CODE>writer</CODE> - not null<DD><CODE>comment</CODE> - The comment to write<DD><CODE>indent</CODE> - positive number<DT><B>See Also:</B><DD><A HREF="../../../../../../org/apache/maven/shared/utils/xml/XmlWriterUtil.html#DEFAULT_INDENTATION_SIZE"><CODE>DEFAULT_INDENTATION_SIZE</CODE></A>, 
@@ -520,7 +521,7 @@ public static void <B>writeComment</B>(<
                                 int&nbsp;indent,
                                 int&nbsp;indentSize)</PRE>
 <DL>
-<DD>Convenience method to write XML comment line. The <code>comment</code> is splitted to have a size of <code>80</code>
+<DD>Convenience method to write XML comment line. The <code>comment</code> is split to have a size of <code>80</code>
  and is indented by <code>indent</code> using <code>indentSize</code>.
 <P>
 <DD><DL>
@@ -539,8 +540,8 @@ public static void <B>writeComment</B>(<
                                 int&nbsp;indentSize,
                                 int&nbsp;columnSize)</PRE>
 <DL>
-<DD>Convenience method to write XML comment line. The <code>comment</code> is splitted to have a size of <code>columnSize</code>
- and is indented by <code>indent</code> using <code>indentSize</code>.
+<DD>Convenience method to write XML comment line. The <code>comment</code> is split to have a size of
+ <code>columnSize</code> and is indented by <code>indent</code> using <code>indentSize</code>.
 <P>
 <DD><DL>
 <DT><B>Parameters:</B><DD><CODE>writer</CODE> - not null<DD><CODE>comment</CODE> - The comment to write<DD><CODE>indent</CODE> - positive number<DD><CODE>indentSize</CODE> - positive number<DD><CODE>columnSize</CODE> - positive number</DL>
@@ -678,6 +679,6 @@ DETAIL:&nbsp;<A HREF="#field_detail">FIE
 <!-- ======== END OF BOTTOM NAVBAR ======= -->
 
 <HR>
-Copyright &#169; 2002&#x2013;2014 <a href="http://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.
+Copyright &#169; 2002&#x2013;2015 <a href="http://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.
 </BODY>
 </HTML>
\ No newline at end of file

Modified: websites/production/maven/components/shared-archives/maven-shared-utils-LATEST/apidocs/org/apache/maven/shared/utils/xml/Xpp3Dom.html
==============================================================================
--- websites/production/maven/components/shared-archives/maven-shared-utils-LATEST/apidocs/org/apache/maven/shared/utils/xml/Xpp3Dom.html (original)
+++ websites/production/maven/components/shared-archives/maven-shared-utils-LATEST/apidocs/org/apache/maven/shared/utils/xml/Xpp3Dom.html Tue Jun 16 23:06:34 2015
@@ -4,7 +4,7 @@
 <HEAD>
 <META http-equiv="Content-Type" content="text/html; charset=UTF-8">
 <TITLE>
-Xpp3Dom (Apache Maven Shared Utils 0.7 API)
+Xpp3Dom (Apache Maven Shared Utils 0.8 API)
 </TITLE>
 
 <META NAME="keywords" CONTENT="org.apache.maven.shared.utils.xml.Xpp3Dom class">
@@ -14,7 +14,7 @@ Xpp3Dom (Apache Maven Shared Utils 0.7 A
 <SCRIPT type="text/javascript">
 function windowTitle()
 {
-    parent.document.title="Xpp3Dom (Apache Maven Shared Utils 0.7 API)";
+    parent.document.title="Xpp3Dom (Apache Maven Shared Utils 0.8 API)";
 }
 </SCRIPT>
 <NOSCRIPT>
@@ -915,6 +915,6 @@ DETAIL:&nbsp;<A HREF="#field_detail">FIE
 <!-- ======== END OF BOTTOM NAVBAR ======= -->
 
 <HR>
-Copyright &#169; 2002&#x2013;2014 <a href="http://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.
+Copyright &#169; 2002&#x2013;2015 <a href="http://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.
 </BODY>
 </HTML>
\ No newline at end of file

Modified: websites/production/maven/components/shared-archives/maven-shared-utils-LATEST/apidocs/org/apache/maven/shared/utils/xml/Xpp3DomBuilder.html
==============================================================================
--- websites/production/maven/components/shared-archives/maven-shared-utils-LATEST/apidocs/org/apache/maven/shared/utils/xml/Xpp3DomBuilder.html (original)
+++ websites/production/maven/components/shared-archives/maven-shared-utils-LATEST/apidocs/org/apache/maven/shared/utils/xml/Xpp3DomBuilder.html Tue Jun 16 23:06:34 2015
@@ -4,7 +4,7 @@
 <HEAD>
 <META http-equiv="Content-Type" content="text/html; charset=UTF-8">
 <TITLE>
-Xpp3DomBuilder (Apache Maven Shared Utils 0.7 API)
+Xpp3DomBuilder (Apache Maven Shared Utils 0.8 API)
 </TITLE>
 
 <META NAME="keywords" CONTENT="org.apache.maven.shared.utils.xml.Xpp3DomBuilder class">
@@ -14,7 +14,7 @@ Xpp3DomBuilder (Apache Maven Shared Util
 <SCRIPT type="text/javascript">
 function windowTitle()
 {
-    parent.document.title="Xpp3DomBuilder (Apache Maven Shared Utils 0.7 API)";
+    parent.document.title="Xpp3DomBuilder (Apache Maven Shared Utils 0.8 API)";
 }
 </SCRIPT>
 <NOSCRIPT>
@@ -331,6 +331,6 @@ DETAIL:&nbsp;FIELD&nbsp;|&nbsp;<A HREF="
 <!-- ======== END OF BOTTOM NAVBAR ======= -->
 
 <HR>
-Copyright &#169; 2002&#x2013;2014 <a href="http://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.
+Copyright &#169; 2002&#x2013;2015 <a href="http://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.
 </BODY>
 </HTML>
\ No newline at end of file