You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by hb...@apache.org on 2012/05/08 15:22:58 UTC

svn commit: r816630 [21/30] - in /websites/production/maventest/content/plugins/maven-shade-plugin-latest: ./ apidocs/ apidocs/org/apache/maven/plugins/shade/ apidocs/org/apache/maven/plugins/shade/class-use/ apidocs/org/apache/maven/plugins/shade/filt...

Modified: websites/production/maventest/content/plugins/maven-shade-plugin-latest/examples/executable-jar.html
==============================================================================
--- websites/production/maventest/content/plugins/maven-shade-plugin-latest/examples/executable-jar.html (original)
+++ websites/production/maventest/content/plugins/maven-shade-plugin-latest/examples/executable-jar.html Tue May  8 13:22:51 2012
@@ -12,7 +12,7 @@
 
 <html xmlns="http://www.w3.org/1999/xhtml">
   <head>
-    <title>Maven Shade plugin - Executable JAR</title>
+    <title>Maven Shade Plugin - Executable JAR</title>
     <style type="text/css" media="all">
       @import url("../css/maven-base.css");
       @import url("../css/maven-theme.css");
@@ -22,7 +22,7 @@
           <meta name="author" content="Mauro Talevi" />
         <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
                                                     
-<script src="http://www.google-analytics.com/urchin.js" type="text/javascript"></script>
+<script type="text/javascript" src="http://www.google-analytics.com/urchin.js"></script>
                                                         
 <script type="text/javascript">_uacct = "UA-140879-1";
         urchinTracker();</script>
@@ -73,8 +73,8 @@
             
   
     
-             Last Published: 2009-11-22
-              &nbsp;| Version: 1.2.2
+             Last Published: 2009-12-31
+              &nbsp;| Version: 1.3
             </div>
       <div class="clear">
         <hr/>
@@ -258,7 +258,7 @@
       &lt;plugin&gt;
         &lt;groupId&gt;org.apache.maven.plugins&lt;/groupId&gt;
         &lt;artifactId&gt;maven-shade-plugin&lt;/artifactId&gt;
-        &lt;version&gt;1.2.2&lt;/version&gt;
+        &lt;version&gt;1.3&lt;/version&gt;
         &lt;executions&gt;
           &lt;execution&gt;
             &lt;phase&gt;package&lt;/phase&gt;
@@ -289,7 +289,7 @@
       &lt;plugin&gt;
         &lt;groupId&gt;org.apache.maven.plugins&lt;/groupId&gt;
         &lt;artifactId&gt;maven-shade-plugin&lt;/artifactId&gt;
-        &lt;version&gt;1.2.2&lt;/version&gt;
+        &lt;version&gt;1.3&lt;/version&gt;
         &lt;executions&gt;
           &lt;execution&gt;
             &lt;phase&gt;package&lt;/phase&gt;

Modified: websites/production/maventest/content/plugins/maven-shade-plugin-latest/examples/includes-excludes.html
==============================================================================
--- websites/production/maventest/content/plugins/maven-shade-plugin-latest/examples/includes-excludes.html (original)
+++ websites/production/maventest/content/plugins/maven-shade-plugin-latest/examples/includes-excludes.html Tue May  8 13:22:51 2012
@@ -12,7 +12,7 @@
 
 <html xmlns="http://www.w3.org/1999/xhtml">
   <head>
-    <title>Maven Shade plugin - Selecting Contents for Uber JAR</title>
+    <title>Maven Shade Plugin - Selecting Contents for Uber JAR</title>
     <style type="text/css" media="all">
       @import url("../css/maven-base.css");
       @import url("../css/maven-theme.css");
@@ -22,7 +22,7 @@
           <meta name="author" content="Mauro Talevi" />
         <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
                                                     
-<script src="http://www.google-analytics.com/urchin.js" type="text/javascript"></script>
+<script type="text/javascript" src="http://www.google-analytics.com/urchin.js"></script>
                                                         
 <script type="text/javascript">_uacct = "UA-140879-1";
         urchinTracker();</script>
@@ -73,8 +73,8 @@
             
   
     
-             Last Published: 2009-11-22
-              &nbsp;| Version: 1.2.2
+             Last Published: 2009-12-31
+              &nbsp;| Version: 1.3
             </div>
       <div class="clear">
         <hr/>
@@ -258,7 +258,7 @@
       &lt;plugin&gt;
         &lt;groupId&gt;org.apache.maven.plugins&lt;/groupId&gt;
         &lt;artifactId&gt;maven-shade-plugin&lt;/artifactId&gt;
-        &lt;version&gt;1.2.2&lt;/version&gt;
+        &lt;version&gt;1.3&lt;/version&gt;
         &lt;executions&gt;
           &lt;execution&gt;
             &lt;phase&gt;package&lt;/phase&gt;
@@ -270,8 +270,10 @@
                 &lt;excludes&gt;
                   &lt;exclude&gt;classworlds:classworlds&lt;/exclude&gt;
                   &lt;exclude&gt;junit:junit&lt;/exclude&gt;
-                  &lt;exclude&gt;jmock:jmock&lt;/exclude&gt;
-                  &lt;exclude&gt;xml-apis:xml-apis&lt;/exclude&gt;
+                  &lt;exclude&gt;jmock:*&lt;/exclude&gt;
+                  &lt;exclude&gt;*:xml-apis&lt;/exclude&gt;
+                  &lt;exclude&gt;org.apache.maven:lib:tests&lt;/exclude&gt;
+                  &lt;exclude&gt;log4j:log4j:jar:&lt;/exclude&gt;
                 &lt;/excludes&gt;
               &lt;/artifactSet&gt;
             &lt;/configuration&gt;
@@ -284,7 +286,7 @@
 &lt;/project&gt;
 </pre>
 </div>
-<p>Of course, <tt>&lt;includes&gt;</tt> can be used as well to specify a white list of artifacts. Artifacts are denoted by a composite idenitifer of the form <i>groupId</i>:<i>artifactId</i>[:<i>classifier</i>].</p>
+<p>Of course, <tt>&lt;includes&gt;</tt> can be used as well to specify a white list of artifacts. Artifacts are denoted by a composite idenitifer of the form <i>groupId</i>:<i>artifactId</i>[[:<i>type</i>]:<i>classifier</i>]. Since plugin version 1.3, the wildcard characters '*' and '?' can be used to do glob-like pattern matching.</p>
 <p>For fine-grained control of which classes from the selected dependencies are included, artifact filters can be used:</p>
 <div class="source"><pre>&lt;project&gt;
   ...
@@ -293,7 +295,7 @@
       &lt;plugin&gt;
         &lt;groupId&gt;org.apache.maven.plugins&lt;/groupId&gt;
         &lt;artifactId&gt;maven-shade-plugin&lt;/artifactId&gt;
-        &lt;version&gt;1.2.2&lt;/version&gt;
+        &lt;version&gt;1.3&lt;/version&gt;
         &lt;executions&gt;
           &lt;execution&gt;
             &lt;phase&gt;package&lt;/phase&gt;
@@ -313,6 +315,14 @@
                     &lt;exclude&gt;org/junit/runners/**&lt;/exclude&gt;
                   &lt;/excludes&gt;
                 &lt;/filter&gt;
+                &lt;filter&gt;
+                  &lt;artifact&gt;*:*&lt;/artifact&gt;
+                  &lt;excludes&gt;
+                    &lt;exclude&gt;META-INF/*.SF&lt;/exclude&gt;
+                    &lt;exclude&gt;META-INF/*.DSA&lt;/exclude&gt;
+                    &lt;exclude&gt;META-INF/*.RSA&lt;/exclude&gt;
+                  &lt;/excludes&gt;
+                &lt;/filter&gt;
               &lt;/filters&gt;
             &lt;/configuration&gt;
           &lt;/execution&gt;
@@ -324,7 +334,7 @@
 &lt;/project&gt;
 </pre>
 </div>
-<p>Here, Ant-like patterns are used to specify that from the dependency <tt>junit:junit</tt> only certain classes/resources should be included in the uber JAR.</p>
+<p>Here, Ant-like patterns are used to specify that from the dependency <tt>junit:junit</tt> only certain classes/resources should be included in the uber JAR. The second filter demonstrates the use of wildcards for the artifact identity which was introduced in plugin version 1.3. It excludes all signature related files from every artifact, regardless of its group or artifact id.</p>
 </div>
 
       </div>

Modified: websites/production/maventest/content/plugins/maven-shade-plugin-latest/examples/resource-transformers.html
==============================================================================
--- websites/production/maventest/content/plugins/maven-shade-plugin-latest/examples/resource-transformers.html (original)
+++ websites/production/maventest/content/plugins/maven-shade-plugin-latest/examples/resource-transformers.html Tue May  8 13:22:51 2012
@@ -12,7 +12,7 @@
 
 <html xmlns="http://www.w3.org/1999/xhtml">
   <head>
-    <title>Maven Shade plugin - Resource Transformers</title>
+    <title>Maven Shade Plugin - Resource Transformers</title>
     <style type="text/css" media="all">
       @import url("../css/maven-base.css");
       @import url("../css/maven-theme.css");
@@ -22,7 +22,7 @@
           <meta name="author" content="Mauro Talevi" />
         <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
                                                     
-<script src="http://www.google-analytics.com/urchin.js" type="text/javascript"></script>
+<script type="text/javascript" src="http://www.google-analytics.com/urchin.js"></script>
                                                         
 <script type="text/javascript">_uacct = "UA-140879-1";
         urchinTracker();</script>
@@ -73,8 +73,8 @@
             
   
     
-             Last Published: 2009-11-22
-              &nbsp;| Version: 1.2.2
+             Last Published: 2009-12-31
+              &nbsp;| Version: 1.3
             </div>
       <div class="clear">
         <hr/>
@@ -260,7 +260,7 @@
       &lt;plugin&gt;
         &lt;groupId&gt;org.apache.maven.plugins&lt;/groupId&gt;
         &lt;artifactId&gt;maven-shade-plugin&lt;/artifactId&gt;
-        &lt;version&gt;1.2.2&lt;/version&gt;
+        &lt;version&gt;1.3&lt;/version&gt;
         &lt;executions&gt;
           &lt;execution&gt;
             &lt;phase&gt;package&lt;/phase&gt;
@@ -281,6 +281,7 @@
 &lt;/project&gt;
 </pre>
 </div>
+<p>Since plugin version 1.3, this resource transformer will also update the descriptor to account for relocation of component interfaces/implementations (if any).</p>
 </div>
 <div class="section"><h3>Concatenating Service Entries</h3>
 <p>JAR files providing implementations of some interfaces often ship with a <tt>META-INF/services/</tt> directory that maps interfaces to their implementation classes for lookup by the service locator. To merge multiple implementations of the same interface into one service entry, the <tt>ServicesResourceTransformer</tt> can be used:</p>
@@ -291,7 +292,7 @@
       &lt;plugin&gt;
         &lt;groupId&gt;org.apache.maven.plugins&lt;/groupId&gt;
         &lt;artifactId&gt;maven-shade-plugin&lt;/artifactId&gt;
-        &lt;version&gt;1.2.2&lt;/version&gt;
+        &lt;version&gt;1.3&lt;/version&gt;
         &lt;executions&gt;
           &lt;execution&gt;
             &lt;phase&gt;package&lt;/phase&gt;
@@ -322,7 +323,7 @@
       &lt;plugin&gt;
         &lt;groupId&gt;org.apache.maven.plugins&lt;/groupId&gt;
         &lt;artifactId&gt;maven-shade-plugin&lt;/artifactId&gt;
-        &lt;version&gt;1.2.2&lt;/version&gt;
+        &lt;version&gt;1.3&lt;/version&gt;
         &lt;executions&gt;
           &lt;execution&gt;
             &lt;phase&gt;package&lt;/phase&gt;
@@ -334,6 +335,9 @@
                 &lt;transformer implementation=&quot;org.apache.maven.plugins.shade.resource.AppendingTransformer&quot;&gt;
                   &lt;resource&gt;META-INF/spring.handlers&lt;/resource&gt;
                 &lt;/transformer&gt;
+                &lt;transformer implementation=&quot;org.apache.maven.plugins.shade.resource.AppendingTransformer&quot;&gt;
+                  &lt;resource&gt;META-INF/spring.schemas&lt;/resource&gt;
+                &lt;/transformer&gt;
               &lt;/transformers&gt;
             &lt;/configuration&gt;
           &lt;/execution&gt;

Modified: websites/production/maventest/content/plugins/maven-shade-plugin-latest/help-mojo.html
==============================================================================
--- websites/production/maventest/content/plugins/maven-shade-plugin-latest/help-mojo.html (original)
+++ websites/production/maventest/content/plugins/maven-shade-plugin-latest/help-mojo.html Tue May  8 13:22:51 2012
@@ -12,7 +12,7 @@
 
 <html xmlns="http://www.w3.org/1999/xhtml">
   <head>
-    <title>Maven Shade plugin - shade:help</title>
+    <title>Maven Shade Plugin - shade:help</title>
     <style type="text/css" media="all">
       @import url("./css/maven-base.css");
       @import url("./css/maven-theme.css");
@@ -21,7 +21,7 @@
     <link rel="stylesheet" href="./css/print.css" type="text/css" media="print" />
         <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
                                                     
-<script src="http://www.google-analytics.com/urchin.js" type="text/javascript"></script>
+<script type="text/javascript" src="http://www.google-analytics.com/urchin.js"></script>
                                                         
 <script type="text/javascript">_uacct = "UA-140879-1";
         urchinTracker();</script>
@@ -72,8 +72,8 @@
             
   
     
-             Last Published: 2009-11-22
-              &nbsp;| Version: 1.2.2
+             Last Published: 2009-12-31
+              &nbsp;| Version: 1.3
             </div>
       <div class="clear">
         <hr/>
@@ -250,7 +250,7 @@
       <div id="contentBox">
         <div class="section"><h2><a name="shade:help"></a>shade:help</h2>
 <p><strong>Full name</strong>:</p>
-<p>org.apache.maven.plugins:maven-shade-plugin:1.2.2:help</p>
+<p>org.apache.maven.plugins:maven-shade-plugin:1.3:help</p>
 <p><strong>Description</strong>:</p>
 <div>Display help information on maven-shade-plugin.<br />
 

Modified: websites/production/maventest/content/plugins/maven-shade-plugin-latest/index.html
==============================================================================
--- websites/production/maventest/content/plugins/maven-shade-plugin-latest/index.html (original)
+++ websites/production/maventest/content/plugins/maven-shade-plugin-latest/index.html Tue May  8 13:22:51 2012
@@ -12,7 +12,7 @@
 
 <html xmlns="http://www.w3.org/1999/xhtml">
   <head>
-    <title>Maven Shade plugin - Introduction</title>
+    <title>Maven Shade Plugin - Introduction</title>
     <style type="text/css" media="all">
       @import url("./css/maven-base.css");
       @import url("./css/maven-theme.css");
@@ -22,7 +22,7 @@
           <meta name="author" content="Mauro Talevi" />
         <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
                                                     
-<script src="http://www.google-analytics.com/urchin.js" type="text/javascript"></script>
+<script type="text/javascript" src="http://www.google-analytics.com/urchin.js"></script>
                                                         
 <script type="text/javascript">_uacct = "UA-140879-1";
         urchinTracker();</script>
@@ -73,8 +73,8 @@
             
   
     
-             Last Published: 2009-11-22
-              &nbsp;| Version: 1.2.2
+             Last Published: 2009-12-31
+              &nbsp;| Version: 1.3
             </div>
       <div class="clear">
         <hr/>

Modified: websites/production/maventest/content/plugins/maven-shade-plugin-latest/integration.html
==============================================================================
--- websites/production/maventest/content/plugins/maven-shade-plugin-latest/integration.html (original)
+++ websites/production/maventest/content/plugins/maven-shade-plugin-latest/integration.html Tue May  8 13:22:51 2012
@@ -12,7 +12,7 @@
 
 <html xmlns="http://www.w3.org/1999/xhtml">
   <head>
-    <title>Maven Shade plugin - Continuous Integration</title>
+    <title>Maven Shade Plugin - Continuous Integration</title>
     <style type="text/css" media="all">
       @import url("./css/maven-base.css");
       @import url("./css/maven-theme.css");
@@ -21,7 +21,7 @@
     <link rel="stylesheet" href="./css/print.css" type="text/css" media="print" />
         <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
                                                     
-<script src="http://www.google-analytics.com/urchin.js" type="text/javascript"></script>
+<script type="text/javascript" src="http://www.google-analytics.com/urchin.js"></script>
                                                         
 <script type="text/javascript">_uacct = "UA-140879-1";
         urchinTracker();</script>
@@ -72,8 +72,8 @@
             
   
     
-             Last Published: 2009-11-22
-              &nbsp;| Version: 1.2.2
+             Last Published: 2009-12-31
+              &nbsp;| Version: 1.3
             </div>
       <div class="clear">
         <hr/>

Modified: websites/production/maventest/content/plugins/maven-shade-plugin-latest/issue-tracking.html
==============================================================================
--- websites/production/maventest/content/plugins/maven-shade-plugin-latest/issue-tracking.html (original)
+++ websites/production/maventest/content/plugins/maven-shade-plugin-latest/issue-tracking.html Tue May  8 13:22:51 2012
@@ -12,7 +12,7 @@
 
 <html xmlns="http://www.w3.org/1999/xhtml">
   <head>
-    <title>Maven Shade plugin - Issue Tracking</title>
+    <title>Maven Shade Plugin - Issue Tracking</title>
     <style type="text/css" media="all">
       @import url("./css/maven-base.css");
       @import url("./css/maven-theme.css");
@@ -21,7 +21,7 @@
     <link rel="stylesheet" href="./css/print.css" type="text/css" media="print" />
         <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
                                                     
-<script src="http://www.google-analytics.com/urchin.js" type="text/javascript"></script>
+<script type="text/javascript" src="http://www.google-analytics.com/urchin.js"></script>
                                                         
 <script type="text/javascript">_uacct = "UA-140879-1";
         urchinTracker();</script>
@@ -72,8 +72,8 @@
             
   
     
-             Last Published: 2009-11-22
-              &nbsp;| Version: 1.2.2
+             Last Published: 2009-12-31
+              &nbsp;| Version: 1.3
             </div>
       <div class="clear">
         <hr/>

Modified: websites/production/maventest/content/plugins/maven-shade-plugin-latest/license.html
==============================================================================
--- websites/production/maventest/content/plugins/maven-shade-plugin-latest/license.html (original)
+++ websites/production/maventest/content/plugins/maven-shade-plugin-latest/license.html Tue May  8 13:22:51 2012
@@ -12,7 +12,7 @@
 
 <html xmlns="http://www.w3.org/1999/xhtml">
   <head>
-    <title>Maven Shade plugin - Project License</title>
+    <title>Maven Shade Plugin - Project License</title>
     <style type="text/css" media="all">
       @import url("./css/maven-base.css");
       @import url("./css/maven-theme.css");
@@ -21,7 +21,7 @@
     <link rel="stylesheet" href="./css/print.css" type="text/css" media="print" />
         <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
                                                     
-<script src="http://www.google-analytics.com/urchin.js" type="text/javascript"></script>
+<script type="text/javascript" src="http://www.google-analytics.com/urchin.js"></script>
                                                         
 <script type="text/javascript">_uacct = "UA-140879-1";
         urchinTracker();</script>
@@ -72,8 +72,8 @@
             
   
     
-             Last Published: 2009-11-22
-              &nbsp;| Version: 1.2.2
+             Last Published: 2009-12-31
+              &nbsp;| Version: 1.3
             </div>
       <div class="clear">
         <hr/>

Modified: websites/production/maventest/content/plugins/maven-shade-plugin-latest/mail-lists.html
==============================================================================
--- websites/production/maventest/content/plugins/maven-shade-plugin-latest/mail-lists.html (original)
+++ websites/production/maventest/content/plugins/maven-shade-plugin-latest/mail-lists.html Tue May  8 13:22:51 2012
@@ -12,7 +12,7 @@
 
 <html xmlns="http://www.w3.org/1999/xhtml">
   <head>
-    <title>Maven Shade plugin - Project Mailing Lists</title>
+    <title>Maven Shade Plugin - Project Mailing Lists</title>
     <style type="text/css" media="all">
       @import url("./css/maven-base.css");
       @import url("./css/maven-theme.css");
@@ -21,7 +21,7 @@
     <link rel="stylesheet" href="./css/print.css" type="text/css" media="print" />
         <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
                                                     
-<script src="http://www.google-analytics.com/urchin.js" type="text/javascript"></script>
+<script type="text/javascript" src="http://www.google-analytics.com/urchin.js"></script>
                                                         
 <script type="text/javascript">_uacct = "UA-140879-1";
         urchinTracker();</script>
@@ -72,8 +72,8 @@
             
   
     
-             Last Published: 2009-11-22
-              &nbsp;| Version: 1.2.2
+             Last Published: 2009-12-31
+              &nbsp;| Version: 1.3
             </div>
       <div class="clear">
         <hr/>

Modified: websites/production/maventest/content/plugins/maven-shade-plugin-latest/plugin-info.html
==============================================================================
--- websites/production/maventest/content/plugins/maven-shade-plugin-latest/plugin-info.html (original)
+++ websites/production/maventest/content/plugins/maven-shade-plugin-latest/plugin-info.html Tue May  8 13:22:51 2012
@@ -12,7 +12,7 @@
 
 <html xmlns="http://www.w3.org/1999/xhtml">
   <head>
-    <title>Maven Shade plugin - Plugin Documentation</title>
+    <title>Maven Shade Plugin - Plugin Documentation</title>
     <style type="text/css" media="all">
       @import url("./css/maven-base.css");
       @import url("./css/maven-theme.css");
@@ -21,7 +21,7 @@
     <link rel="stylesheet" href="./css/print.css" type="text/css" media="print" />
         <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
                                                     
-<script src="http://www.google-analytics.com/urchin.js" type="text/javascript"></script>
+<script type="text/javascript" src="http://www.google-analytics.com/urchin.js"></script>
                                                         
 <script type="text/javascript">_uacct = "UA-140879-1";
         urchinTracker();</script>
@@ -72,8 +72,8 @@
             
   
     
-             Last Published: 2009-11-22
-              &nbsp;| Version: 1.2.2
+             Last Published: 2009-12-31
+              &nbsp;| Version: 1.3
             </div>
       <div class="clear">
         <hr/>
@@ -340,7 +340,7 @@ to display parameter details.</td>
         &lt;plugin&gt;
           &lt;groupId&gt;org.apache.maven.plugins&lt;/groupId&gt;
           &lt;artifactId&gt;maven-shade-plugin&lt;/artifactId&gt;
-          &lt;version&gt;1.2.2&lt;/version&gt;
+          &lt;version&gt;1.3&lt;/version&gt;
         &lt;/plugin&gt;
         ...
       &lt;/plugins&gt;
@@ -350,7 +350,7 @@ to display parameter details.</td>
       &lt;plugin&gt;
         &lt;groupId&gt;org.apache.maven.plugins&lt;/groupId&gt;
         &lt;artifactId&gt;maven-shade-plugin&lt;/artifactId&gt;
-        &lt;version&gt;1.2.2&lt;/version&gt;
+        &lt;version&gt;1.3&lt;/version&gt;
       &lt;/plugin&gt;
       ...
     &lt;/plugins&gt;

Modified: websites/production/maventest/content/plugins/maven-shade-plugin-latest/plugin-management.html
==============================================================================
--- websites/production/maventest/content/plugins/maven-shade-plugin-latest/plugin-management.html (original)
+++ websites/production/maventest/content/plugins/maven-shade-plugin-latest/plugin-management.html Tue May  8 13:22:51 2012
@@ -12,7 +12,7 @@
 
 <html xmlns="http://www.w3.org/1999/xhtml">
   <head>
-    <title>Maven Shade plugin - Project Plugin Management</title>
+    <title>Maven Shade Plugin - Project Plugin Management</title>
     <style type="text/css" media="all">
       @import url("./css/maven-base.css");
       @import url("./css/maven-theme.css");
@@ -21,7 +21,7 @@
     <link rel="stylesheet" href="./css/print.css" type="text/css" media="print" />
         <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
                                                     
-<script src="http://www.google-analytics.com/urchin.js" type="text/javascript"></script>
+<script type="text/javascript" src="http://www.google-analytics.com/urchin.js"></script>
                                                         
 <script type="text/javascript">_uacct = "UA-140879-1";
         urchinTracker();</script>
@@ -72,8 +72,8 @@
             
   
     
-             Last Published: 2009-11-22
-              &nbsp;| Version: 1.2.2
+             Last Published: 2009-12-31
+              &nbsp;| Version: 1.3
             </div>
       <div class="clear">
         <hr/>

Modified: websites/production/maventest/content/plugins/maven-shade-plugin-latest/plugins.html
==============================================================================
--- websites/production/maventest/content/plugins/maven-shade-plugin-latest/plugins.html (original)
+++ websites/production/maventest/content/plugins/maven-shade-plugin-latest/plugins.html Tue May  8 13:22:51 2012
@@ -12,7 +12,7 @@
 
 <html xmlns="http://www.w3.org/1999/xhtml">
   <head>
-    <title>Maven Shade plugin - Project Build Plugins</title>
+    <title>Maven Shade Plugin - Project Build Plugins</title>
     <style type="text/css" media="all">
       @import url("./css/maven-base.css");
       @import url("./css/maven-theme.css");
@@ -21,7 +21,7 @@
     <link rel="stylesheet" href="./css/print.css" type="text/css" media="print" />
         <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
                                                     
-<script src="http://www.google-analytics.com/urchin.js" type="text/javascript"></script>
+<script type="text/javascript" src="http://www.google-analytics.com/urchin.js"></script>
                                                         
 <script type="text/javascript">_uacct = "UA-140879-1";
         urchinTracker();</script>
@@ -72,8 +72,8 @@
             
   
     
-             Last Published: 2009-11-22
-              &nbsp;| Version: 1.2.2
+             Last Published: 2009-12-31
+              &nbsp;| Version: 1.3
             </div>
       <div class="clear">
         <hr/>

Modified: websites/production/maventest/content/plugins/maven-shade-plugin-latest/pmd.html
==============================================================================
--- websites/production/maventest/content/plugins/maven-shade-plugin-latest/pmd.html (original)
+++ websites/production/maventest/content/plugins/maven-shade-plugin-latest/pmd.html Tue May  8 13:22:51 2012
@@ -12,7 +12,7 @@
 
 <html xmlns="http://www.w3.org/1999/xhtml">
   <head>
-    <title>Maven Shade plugin - PMD Results</title>
+    <title>Maven Shade Plugin - PMD Results</title>
     <style type="text/css" media="all">
       @import url("./css/maven-base.css");
       @import url("./css/maven-theme.css");
@@ -21,7 +21,7 @@
     <link rel="stylesheet" href="./css/print.css" type="text/css" media="print" />
         <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
                                                     
-<script src="http://www.google-analytics.com/urchin.js" type="text/javascript"></script>
+<script type="text/javascript" src="http://www.google-analytics.com/urchin.js"></script>
                                                         
 <script type="text/javascript">_uacct = "UA-140879-1";
         urchinTracker();</script>
@@ -72,8 +72,8 @@
             
   
     
-             Last Published: 2009-11-22
-              &nbsp;| Version: 1.2.2
+             Last Published: 2009-12-31
+              &nbsp;| Version: 1.3
             </div>
       <div class="clear">
         <hr/>

Modified: websites/production/maventest/content/plugins/maven-shade-plugin-latest/project-info.html
==============================================================================
--- websites/production/maventest/content/plugins/maven-shade-plugin-latest/project-info.html (original)
+++ websites/production/maventest/content/plugins/maven-shade-plugin-latest/project-info.html Tue May  8 13:22:51 2012
@@ -12,7 +12,7 @@
 
 <html xmlns="http://www.w3.org/1999/xhtml">
   <head>
-    <title>Maven Shade plugin - Project Information</title>
+    <title>Maven Shade Plugin - Project Information</title>
     <style type="text/css" media="all">
       @import url("./css/maven-base.css");
       @import url("./css/maven-theme.css");
@@ -21,7 +21,7 @@
     <link rel="stylesheet" href="./css/print.css" type="text/css" media="print" />
         <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
                                                     
-<script src="http://www.google-analytics.com/urchin.js" type="text/javascript"></script>
+<script type="text/javascript" src="http://www.google-analytics.com/urchin.js"></script>
                                                         
 <script type="text/javascript">_uacct = "UA-140879-1";
         urchinTracker();</script>
@@ -72,8 +72,8 @@
             
   
     
-             Last Published: 2009-11-22
-              &nbsp;| Version: 1.2.2
+             Last Published: 2009-12-31
+              &nbsp;| Version: 1.3
             </div>
       <div class="clear">
         <hr/>

Modified: websites/production/maventest/content/plugins/maven-shade-plugin-latest/project-reports.html
==============================================================================
--- websites/production/maventest/content/plugins/maven-shade-plugin-latest/project-reports.html (original)
+++ websites/production/maventest/content/plugins/maven-shade-plugin-latest/project-reports.html Tue May  8 13:22:51 2012
@@ -12,7 +12,7 @@
 
 <html xmlns="http://www.w3.org/1999/xhtml">
   <head>
-    <title>Maven Shade plugin - Generated Reports</title>
+    <title>Maven Shade Plugin - Generated Reports</title>
     <style type="text/css" media="all">
       @import url("./css/maven-base.css");
       @import url("./css/maven-theme.css");
@@ -21,7 +21,7 @@
     <link rel="stylesheet" href="./css/print.css" type="text/css" media="print" />
         <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
                                                     
-<script src="http://www.google-analytics.com/urchin.js" type="text/javascript"></script>
+<script type="text/javascript" src="http://www.google-analytics.com/urchin.js"></script>
                                                         
 <script type="text/javascript">_uacct = "UA-140879-1";
         urchinTracker();</script>
@@ -72,8 +72,8 @@
             
   
     
-             Last Published: 2009-11-22
-              &nbsp;| Version: 1.2.2
+             Last Published: 2009-12-31
+              &nbsp;| Version: 1.3
             </div>
       <div class="clear">
         <hr/>

Modified: websites/production/maventest/content/plugins/maven-shade-plugin-latest/project-summary.html
==============================================================================
--- websites/production/maventest/content/plugins/maven-shade-plugin-latest/project-summary.html (original)
+++ websites/production/maventest/content/plugins/maven-shade-plugin-latest/project-summary.html Tue May  8 13:22:51 2012
@@ -12,7 +12,7 @@
 
 <html xmlns="http://www.w3.org/1999/xhtml">
   <head>
-    <title>Maven Shade plugin - Project Summary</title>
+    <title>Maven Shade Plugin - Project Summary</title>
     <style type="text/css" media="all">
       @import url("./css/maven-base.css");
       @import url("./css/maven-theme.css");
@@ -21,7 +21,7 @@
     <link rel="stylesheet" href="./css/print.css" type="text/css" media="print" />
         <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
                                                     
-<script src="http://www.google-analytics.com/urchin.js" type="text/javascript"></script>
+<script type="text/javascript" src="http://www.google-analytics.com/urchin.js"></script>
                                                         
 <script type="text/javascript">_uacct = "UA-140879-1";
         urchinTracker();</script>
@@ -72,8 +72,8 @@
             
   
     
-             Last Published: 2009-11-22
-              &nbsp;| Version: 1.2.2
+             Last Published: 2009-12-31
+              &nbsp;| Version: 1.3
             </div>
       <div class="clear">
         <hr/>
@@ -333,7 +333,7 @@
 <td>maven-shade-plugin</td>
 </tr>
 <tr class="a"><td>Version</td>
-<td>1.2.2</td>
+<td>1.3</td>
 </tr>
 <tr class="b"><td>Type</td>
 <td>maven-plugin</td>

Modified: websites/production/maventest/content/plugins/maven-shade-plugin-latest/shade-mojo.html
==============================================================================
--- websites/production/maventest/content/plugins/maven-shade-plugin-latest/shade-mojo.html (original)
+++ websites/production/maventest/content/plugins/maven-shade-plugin-latest/shade-mojo.html Tue May  8 13:22:51 2012
@@ -12,7 +12,7 @@
 
 <html xmlns="http://www.w3.org/1999/xhtml">
   <head>
-    <title>Maven Shade plugin - shade:shade</title>
+    <title>Maven Shade Plugin - shade:shade</title>
     <style type="text/css" media="all">
       @import url("./css/maven-base.css");
       @import url("./css/maven-theme.css");
@@ -21,7 +21,7 @@
     <link rel="stylesheet" href="./css/print.css" type="text/css" media="print" />
         <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
                                                     
-<script src="http://www.google-analytics.com/urchin.js" type="text/javascript"></script>
+<script type="text/javascript" src="http://www.google-analytics.com/urchin.js"></script>
                                                         
 <script type="text/javascript">_uacct = "UA-140879-1";
         urchinTracker();</script>
@@ -72,8 +72,8 @@
             
   
     
-             Last Published: 2009-11-22
-              &nbsp;| Version: 1.2.2
+             Last Published: 2009-12-31
+              &nbsp;| Version: 1.3
             </div>
       <div class="clear">
         <hr/>
@@ -250,7 +250,7 @@
       <div id="contentBox">
         <div class="section"><h2><a name="shade:shade"></a>shade:shade</h2>
 <p><strong>Full name</strong>:</p>
-<p>org.apache.maven.plugins:maven-shade-plugin:1.2.2:shade</p>
+<p>org.apache.maven.plugins:maven-shade-plugin:1.3:shade</p>
 <p><strong>Description</strong>:</p>
 <div>Mojo that performs shading delegating to the Shader component.</div><p><strong>Attributes</strong>:</p>
 <ul><li>Requires a Maven 2.0 project to be executed.</li>
@@ -266,7 +266,16 @@
 <tr class="b"><td><strong><a href="#artifactSet">artifactSet</a></strong></td>
 <td><code>ArtifactSet</code></td>
 <td><code>-</code></td>
-<td>Artifacts to include/exclude from the final artifact.<br />
+<td>Artifacts to include/exclude from the final artifact. Artifacts are
+denoted by composite identifiers of the general form
+<code>groupId:artifactId:type:classifier</code>. Since version 1.3,
+the wildcard characters '*' and '?' can be used within the sub
+parts of those composite identifiers to do pattern matching. For
+convenience, the syntax <code>groupId</code> is equivalent to
+<code>groupId:*:*:*</code>, <code>groupId:artifactId</code> is
+equivalent to <code>groupId:artifactId:*:*</code> and
+<code>groupId:artifactId:classifier</code> is equivalent to
+<code>groupId:artifactId:*:classifier</code>.<br />
 </td>
 </tr>
 <tr class="a"><td><strong><a href="#createDependencyReducedPom">createDependencyReducedPom</a></strong></td>
@@ -290,13 +299,15 @@ and is stored into the same directory as
 <td><code>ArchiveFilter[]</code></td>
 <td><code>-</code></td>
 <td>Archive Filters to be used. Allows you to specify an artifact in
-the form of groupId:artifactId and a set of include/exclude file
-patterns for filtering which contents of the archive are added to
-the shaded jar. From a logical perspective, includes are processed
-before excludes, thus it's possible to use an include to collect a
-set of files from the archive then use excludes to further reduce
-the set. By default, all files are included and no files are
-excluded.<br />
+the form of a composite identifier as used by
+<code>artifactSet</code> and a set of include/exclude file patterns
+for filtering which contents of the archive are added to the shaded
+jar. From a logical perspective, includes are processed before
+excludes, thus it's possible to use an include to collect a set of
+files from the archive then use excludes to further reduce the set.
+By default, all files are included and no files are excluded. If
+multiple filters apply to an artifact, the intersection of the
+matched files will be included in the final JAR.<br />
 </td>
 </tr>
 <tr class="b"><td><strong><a href="#finalName">finalName</a></strong></td>
@@ -322,7 +333,19 @@ will be performed, even if shadedArtifac
 <td>The destination directory for the shaded artifact.<br />
 <strong>Default value is</strong>: <code>${project.build.directory}</code>.</td>
 </tr>
-<tr class="a"><td><strong><a href="#promoteTransitiveDependencies">promoteTransitiveDependencies</a></strong></td>
+<tr class="a"><td><strong><a href="#outputFile">outputFile</a></strong></td>
+<td><code>File</code></td>
+<td><code>1.3</code></td>
+<td>The path to the output file for the shaded artifact. When this
+parameter is set, the created archive will neither replace the
+project's main artifact nor will it be attached. Hence, this
+parameter causes the parameters <code>finalName</code>,
+<code>shadedArtifactAttached</code>,
+<code>shadedClassifierName</code> and
+<code>createDependencyReducedPom</code> to be ignored when used.<br />
+</td>
+</tr>
+<tr class="b"><td><strong><a href="#promoteTransitiveDependencies">promoteTransitiveDependencies</a></strong></td>
 <td><code>boolean</code></td>
 <td><code>-</code></td>
 <td>When true, transitive deps of removed dependencies are promoted to
@@ -331,13 +354,13 @@ the removed deps with the new shaded jar
 still work.<br />
 <strong>Default value is</strong>: <code>false</code>.</td>
 </tr>
-<tr class="b"><td><strong><a href="#relocations">relocations</a></strong></td>
+<tr class="a"><td><strong><a href="#relocations">relocations</a></strong></td>
 <td><code>PackageRelocation[]</code></td>
 <td><code>-</code></td>
 <td>Packages to be relocated.<br />
 </td>
 </tr>
-<tr class="a"><td><strong><a href="#shadedArtifactAttached">shadedArtifactAttached</a></strong></td>
+<tr class="b"><td><strong><a href="#shadedArtifactAttached">shadedArtifactAttached</a></strong></td>
 <td><code>boolean</code></td>
 <td><code>-</code></td>
 <td>Defines whether the shaded artifact should be attached as
@@ -345,7 +368,7 @@ classifier to the original artifact. If 
 be the main artifact of the project<br />
 <strong>Default value is</strong>: <code>false</code>.</td>
 </tr>
-<tr class="b"><td><strong><a href="#shadedArtifactId">shadedArtifactId</a></strong></td>
+<tr class="a"><td><strong><a href="#shadedArtifactId">shadedArtifactId</a></strong></td>
 <td><code>String</code></td>
 <td><code>-</code></td>
 <td>The name of the shaded artifactId. So you may want to use a
@@ -355,21 +378,21 @@ like foo-1.0.jar. So if you change the a
 something like foo-special-1.0.jar.<br />
 <strong>Default value is</strong>: <code>${project.artifactId}</code>.</td>
 </tr>
-<tr class="a"><td><strong><a href="#shadedClassifierName">shadedClassifierName</a></strong></td>
+<tr class="b"><td><strong><a href="#shadedClassifierName">shadedClassifierName</a></strong></td>
 <td><code>String</code></td>
 <td><code>-</code></td>
 <td>The name of the classifier used in case the shaded artifact is
 attached.<br />
 <strong>Default value is</strong>: <code>shaded</code>.</td>
 </tr>
-<tr class="b"><td><strong><a href="#shadedGroupFilter">shadedGroupFilter</a></strong></td>
+<tr class="a"><td><strong><a href="#shadedGroupFilter">shadedGroupFilter</a></strong></td>
 <td><code>String</code></td>
 <td><code>-</code></td>
 <td>If specified, this will include only artifacts which have groupIds
 which start with this.<br />
 </td>
 </tr>
-<tr class="a"><td><strong><a href="#transformers">transformers</a></strong></td>
+<tr class="b"><td><strong><a href="#transformers">transformers</a></strong></td>
 <td><code>ResourceTransformer[]</code></td>
 <td><code>-</code></td>
 <td>Resource transformers to be used.<br />
@@ -379,7 +402,16 @@ which start with this.<br />
 </div>
 <div class="section"><h3><a name="Parameter_Details"></a>Parameter Details</h3>
 <p><strong><a name="artifactSet">artifactSet</a>:</strong></p>
-<div>Artifacts to include/exclude from the final artifact.</div><ul><li><strong>Type</strong>: <code>org.apache.maven.plugins.shade.mojo.ArtifactSet</code></li>
+<div>Artifacts to include/exclude from the final artifact. Artifacts are
+denoted by composite identifiers of the general form
+<code>groupId:artifactId:type:classifier</code>. Since version 1.3,
+the wildcard characters '*' and '?' can be used within the sub
+parts of those composite identifiers to do pattern matching. For
+convenience, the syntax <code>groupId</code> is equivalent to
+<code>groupId:*:*:*</code>, <code>groupId:artifactId</code> is
+equivalent to <code>groupId:artifactId:*:*</code> and
+<code>groupId:artifactId:classifier</code> is equivalent to
+<code>groupId:artifactId:*:classifier</code>.</div><ul><li><strong>Type</strong>: <code>org.apache.maven.plugins.shade.mojo.ArtifactSet</code></li>
 <li><strong>Required</strong>: <code>No</code></li>
 </ul>
 <hr />
@@ -404,13 +436,15 @@ and is stored into the same directory as
 <hr />
 <p><strong><a name="filters">filters</a>:</strong></p>
 <div>Archive Filters to be used. Allows you to specify an artifact in
-the form of groupId:artifactId and a set of include/exclude file
-patterns for filtering which contents of the archive are added to
-the shaded jar. From a logical perspective, includes are processed
-before excludes, thus it's possible to use an include to collect a
-set of files from the archive then use excludes to further reduce
-the set. By default, all files are included and no files are
-excluded.</div><ul><li><strong>Type</strong>: <code>org.apache.maven.plugins.shade.mojo.ArchiveFilter[]</code></li>
+the form of a composite identifier as used by
+<code>artifactSet</code> and a set of include/exclude file patterns
+for filtering which contents of the archive are added to the shaded
+jar. From a logical perspective, includes are processed before
+excludes, thus it's possible to use an include to collect a set of
+files from the archive then use excludes to further reduce the set.
+By default, all files are included and no files are excluded. If
+multiple filters apply to an artifact, the intersection of the
+matched files will be included in the final JAR.</div><ul><li><strong>Type</strong>: <code>org.apache.maven.plugins.shade.mojo.ArchiveFilter[]</code></li>
 <li><strong>Required</strong>: <code>No</code></li>
 </ul>
 <hr />
@@ -438,6 +472,18 @@ will be performed, even if shadedArtifac
 <li><strong>Default</strong>: <code>${project.build.directory}</code></li>
 </ul>
 <hr />
+<p><strong><a name="outputFile">outputFile</a>:</strong></p>
+<div>The path to the output file for the shaded artifact. When this
+parameter is set, the created archive will neither replace the
+project's main artifact nor will it be attached. Hence, this
+parameter causes the parameters <code>finalName</code>,
+<code>shadedArtifactAttached</code>,
+<code>shadedClassifierName</code> and
+<code>createDependencyReducedPom</code> to be ignored when used.</div><ul><li><strong>Type</strong>: <code>java.io.File</code></li>
+<li><strong>Since</strong>: <code>1.3</code></li>
+<li><strong>Required</strong>: <code>No</code></li>
+</ul>
+<hr />
 <p><strong><a name="promoteTransitiveDependencies">promoteTransitiveDependencies</a>:</strong></p>
 <div>When true, transitive deps of removed dependencies are promoted to
 direct dependencies. This should allow the drop in replacement of

Modified: websites/production/maventest/content/plugins/maven-shade-plugin-latest/source-repository.html
==============================================================================
--- websites/production/maventest/content/plugins/maven-shade-plugin-latest/source-repository.html (original)
+++ websites/production/maventest/content/plugins/maven-shade-plugin-latest/source-repository.html Tue May  8 13:22:51 2012
@@ -12,7 +12,7 @@
 
 <html xmlns="http://www.w3.org/1999/xhtml">
   <head>
-    <title>Maven Shade plugin - Source Repository</title>
+    <title>Maven Shade Plugin - Source Repository</title>
     <style type="text/css" media="all">
       @import url("./css/maven-base.css");
       @import url("./css/maven-theme.css");
@@ -21,7 +21,7 @@
     <link rel="stylesheet" href="./css/print.css" type="text/css" media="print" />
         <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
                                                     
-<script src="http://www.google-analytics.com/urchin.js" type="text/javascript"></script>
+<script type="text/javascript" src="http://www.google-analytics.com/urchin.js"></script>
                                                         
 <script type="text/javascript">_uacct = "UA-140879-1";
         urchinTracker();</script>
@@ -72,8 +72,8 @@
             
   
     
-             Last Published: 2009-11-22
-              &nbsp;| Version: 1.2.2
+             Last Published: 2009-12-31
+              &nbsp;| Version: 1.3
             </div>
       <div class="clear">
         <hr/>
@@ -298,17 +298,17 @@
 This project uses <a class="externalLink" href="http://subversion.tigris.org/">Subversion</a> to manage its source code. Instructions on Subversion use can be found at <a class="externalLink" href="http://svnbook.red-bean.com/">http://svnbook.red-bean.com/</a>.</div>
 <a name="Web_Access"></a><div class="section"><h2>Web Access</h2>
 <p>The following is a link to the online source repository.</p>
-<div class="source"><pre><a class="externalLink" href="http://svn.apache.org/viewvc/maven/plugins/tags/maven-shade-plugin-1.2.2">http://svn.apache.org/viewvc/maven/plugins/tags/maven-shade-plugin-1.2.2</a></pre>
+<div class="source"><pre><a class="externalLink" href="http://svn.apache.org/viewvc/maven/plugins/tags/maven-shade-plugin-1.3">http://svn.apache.org/viewvc/maven/plugins/tags/maven-shade-plugin-1.3</a></pre>
 </div>
 </div>
 <a name="Anonymous_access"></a><div class="section"><h2>Anonymous access</h2>
 <p>The source can be checked out anonymously from SVN with this command:</p>
-<div class="source"><pre>$ svn checkout http://svn.apache.org/repos/asf/maven/plugins/tags/maven-shade-plugin-1.2.2 maven-shade-plugin</pre>
+<div class="source"><pre>$ svn checkout http://svn.apache.org/repos/asf/maven/plugins/tags/maven-shade-plugin-1.3 maven-shade-plugin</pre>
 </div>
 </div>
 <a name="Developer_access"></a><div class="section"><h2>Developer access</h2>
 <p>Everyone can access the Subversion repository via HTTP, but Committers must checkout the Subversion repository via HTTPS.</p>
-<div class="source"><pre>$ svn checkout https://svn.apache.org/repos/asf/maven/plugins/tags/maven-shade-plugin-1.2.2 maven-shade-plugin</pre>
+<div class="source"><pre>$ svn checkout https://svn.apache.org/repos/asf/maven/plugins/tags/maven-shade-plugin-1.3 maven-shade-plugin</pre>
 </div>
 <p>To commit changes to the repository, execute the following command to commit your changes (svn will prompt you for your password)</p>
 <div class="source"><pre>$ svn commit --username your-username -m &quot;A message&quot;</pre>
@@ -316,7 +316,7 @@ This project uses <a class="externalLink
 </div>
 <a name="Access_from_behind_a_firewall"></a><div class="section"><h2>Access from behind a firewall</h2>
 <p>For those users who are stuck behind a corporate firewall which is blocking HTTP access to the Subversion repository, you can try to access it via the developer connection:</p>
-<div class="source"><pre>$ svn checkout https://svn.apache.org/repos/asf/maven/plugins/tags/maven-shade-plugin-1.2.2 maven-shade-plugin</pre>
+<div class="source"><pre>$ svn checkout https://svn.apache.org/repos/asf/maven/plugins/tags/maven-shade-plugin-1.3 maven-shade-plugin</pre>
 </div>
 </div>
 <a name="Access_through_a_proxy"></a><div class="section"><h2>Access through a proxy</h2>

Modified: websites/production/maventest/content/plugins/maven-shade-plugin-latest/surefire-report.html
==============================================================================
--- websites/production/maventest/content/plugins/maven-shade-plugin-latest/surefire-report.html (original)
+++ websites/production/maventest/content/plugins/maven-shade-plugin-latest/surefire-report.html Tue May  8 13:22:51 2012
@@ -12,7 +12,7 @@
 
 <html xmlns="http://www.w3.org/1999/xhtml">
   <head>
-    <title>Maven Shade plugin - Surefire Report</title>
+    <title>Maven Shade Plugin - Surefire Report</title>
     <style type="text/css" media="all">
       @import url("./css/maven-base.css");
       @import url("./css/maven-theme.css");
@@ -21,7 +21,7 @@
     <link rel="stylesheet" href="./css/print.css" type="text/css" media="print" />
         <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
                                                     
-<script src="http://www.google-analytics.com/urchin.js" type="text/javascript"></script>
+<script type="text/javascript" src="http://www.google-analytics.com/urchin.js"></script>
                                                         
 <script type="text/javascript">_uacct = "UA-140879-1";
         urchinTracker();</script>
@@ -72,8 +72,8 @@
             
   
     
-             Last Published: 2009-11-22
-              &nbsp;| Version: 1.2.2
+             Last Published: 2009-12-31
+              &nbsp;| Version: 1.3
             </div>
       <div class="clear">
         <hr/>
@@ -320,12 +320,12 @@ function toggleDisplay(elementId) {
 <th>Success Rate</th>
 <th>Time</th>
 </tr>
-<tr class="b"><td>16</td>
+<tr class="b"><td>20</td>
 <td>0</td>
 <td>0</td>
 <td>0</td>
 <td>100%</td>
-<td>3.985</td>
+<td>4.953</td>
 </tr>
 </table>
 <br />
@@ -342,13 +342,29 @@ Note: failures are anticipated and check
 <th>Success Rate</th>
 <th>Time</th>
 </tr>
-<tr class="b"><td><a href="#org.apache.maven.plugins.shade.mojo">org.apache.maven.plugins.shade.mojo</a></td>
-<td>3</td>
+<tr class="b"><td><a href="#org.apache.maven.plugins.shade">org.apache.maven.plugins.shade</a></td>
+<td>4</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>100%</td>
+<td>2.359</td>
+</tr>
+<tr class="a"><td><a href="#org.apache.maven.plugins.shade.relocation">org.apache.maven.plugins.shade.relocation</a></td>
+<td>4</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>100%</td>
+<td>0.016</td>
+</tr>
+<tr class="b"><td><a href="#org.apache.maven.plugins.shade.filter">org.apache.maven.plugins.shade.filter</a></td>
+<td>1</td>
 <td>0</td>
 <td>0</td>
 <td>0</td>
 <td>100%</td>
-<td>1.922</td>
+<td>0</td>
 </tr>
 <tr class="a"><td><a href="#org.apache.maven.plugins.shade.resource">org.apache.maven.plugins.shade.resource</a></td>
 <td>5</td>
@@ -356,28 +372,62 @@ Note: failures are anticipated and check
 <td>0</td>
 <td>0</td>
 <td>100%</td>
-<td>0.078</td>
+<td>0.062</td>
 </tr>
-<tr class="b"><td><a href="#org.apache.maven.plugins.shade">org.apache.maven.plugins.shade</a></td>
-<td>4</td>
+<tr class="b"><td><a href="#org.apache.maven.plugins.shade.mojo">org.apache.maven.plugins.shade.mojo</a></td>
+<td>6</td>
 <td>0</td>
 <td>0</td>
 <td>0</td>
 <td>100%</td>
-<td>1.985</td>
+<td>2.516</td>
 </tr>
-<tr class="a"><td><a href="#org.apache.maven.plugins.shade.relocation">org.apache.maven.plugins.shade.relocation</a></td>
+</table>
+<br />
+Note: package statistics are not computed recursively, they only sum up all of its testsuites numbers.<div class="section"><h3><a name="org.apache.maven.plugins.shade"></a>org.apache.maven.plugins.shade</h3>
+<table class="bodyTable"><tr class="a"><th></th>
+<th>Class</th>
+<th>Tests</th>
+<th>Errors </th>
+<th>Failures</th>
+<th>Skipped</th>
+<th>Success Rate</th>
+<th>Time</th>
+</tr>
+<tr class="b"><td><a href="#org.apache.maven.plugins.shadeDefaultShaderTest"><img src="images/icon_success_sml.gif" /></a></td>
+<td><a href="#org.apache.maven.plugins.shadeDefaultShaderTest">DefaultShaderTest</a></td>
 <td>4</td>
 <td>0</td>
 <td>0</td>
 <td>0</td>
 <td>100%</td>
+<td>2.359</td>
+</tr>
+</table>
+</div>
+<div class="section"><h3><a name="org.apache.maven.plugins.shade.relocation"></a>org.apache.maven.plugins.shade.relocation</h3>
+<table class="bodyTable"><tr class="a"><th></th>
+<th>Class</th>
+<th>Tests</th>
+<th>Errors </th>
+<th>Failures</th>
+<th>Skipped</th>
+<th>Success Rate</th>
+<th>Time</th>
+</tr>
+<tr class="b"><td><a href="#org.apache.maven.plugins.shade.relocationSimpleRelocatorTest"><img src="images/icon_success_sml.gif" /></a></td>
+<td><a href="#org.apache.maven.plugins.shade.relocationSimpleRelocatorTest">SimpleRelocatorTest</a></td>
+<td>4</td>
+<td>0</td>
 <td>0</td>
+<td>0</td>
+<td>100%</td>
+<td>0.016</td>
 </tr>
 </table>
-<br />
-Note: package statistics are not computed recursively, they only sum up all of its testsuites numbers.<div class="section"><h3><a name="org.apache.maven.plugins.shade.mojo"></a>org.apache.maven.plugins.shade.mojo</h3>
-<table class="bodyTable"><tr class="b"><th></th>
+</div>
+<div class="section"><h3><a name="org.apache.maven.plugins.shade.filter"></a>org.apache.maven.plugins.shade.filter</h3>
+<table class="bodyTable"><tr class="a"><th></th>
 <th>Class</th>
 <th>Tests</th>
 <th>Errors </th>
@@ -386,19 +436,19 @@ Note: package statistics are not compute
 <th>Success Rate</th>
 <th>Time</th>
 </tr>
-<tr class="a"><td><a href="#org.apache.maven.plugins.shade.mojoShadeMojoTest"><img src="images/icon_success_sml.gif" /></a></td>
-<td><a href="#org.apache.maven.plugins.shade.mojoShadeMojoTest">ShadeMojoTest</a></td>
-<td>3</td>
+<tr class="b"><td><a href="#org.apache.maven.plugins.shade.filterSimpleFilterTest"><img src="images/icon_success_sml.gif" /></a></td>
+<td><a href="#org.apache.maven.plugins.shade.filterSimpleFilterTest">SimpleFilterTest</a></td>
+<td>1</td>
 <td>0</td>
 <td>0</td>
 <td>0</td>
 <td>100%</td>
-<td>1.922</td>
+<td>0</td>
 </tr>
 </table>
 </div>
 <div class="section"><h3><a name="org.apache.maven.plugins.shade.resource"></a>org.apache.maven.plugins.shade.resource</h3>
-<table class="bodyTable"><tr class="b"><th></th>
+<table class="bodyTable"><tr class="a"><th></th>
 <th>Class</th>
 <th>Tests</th>
 <th>Errors </th>
@@ -407,7 +457,7 @@ Note: package statistics are not compute
 <th>Success Rate</th>
 <th>Time</th>
 </tr>
-<tr class="a"><td><a href="#org.apache.maven.plugins.shade.resourceApacheLicenseResourceTransformerTest"><img src="images/icon_success_sml.gif" /></a></td>
+<tr class="b"><td><a href="#org.apache.maven.plugins.shade.resourceApacheLicenseResourceTransformerTest"><img src="images/icon_success_sml.gif" /></a></td>
 <td><a href="#org.apache.maven.plugins.shade.resourceApacheLicenseResourceTransformerTest">ApacheLicenseResourceTransformerTest</a></td>
 <td>1</td>
 <td>0</td>
@@ -416,34 +466,34 @@ Note: package statistics are not compute
 <td>100%</td>
 <td>0</td>
 </tr>
-<tr class="b"><td><a href="#org.apache.maven.plugins.shade.resourceApacheNoticeResourceTransformerTest"><img src="images/icon_success_sml.gif" /></a></td>
+<tr class="a"><td><a href="#org.apache.maven.plugins.shade.resourceApacheNoticeResourceTransformerTest"><img src="images/icon_success_sml.gif" /></a></td>
 <td><a href="#org.apache.maven.plugins.shade.resourceApacheNoticeResourceTransformerTest">ApacheNoticeResourceTransformerTest</a></td>
 <td>1</td>
 <td>0</td>
 <td>0</td>
 <td>0</td>
 <td>100%</td>
-<td>0</td>
+<td>0.047</td>
 </tr>
-<tr class="a"><td><a href="#org.apache.maven.plugins.shade.resourceAppendingTransformerTest"><img src="images/icon_success_sml.gif" /></a></td>
+<tr class="b"><td><a href="#org.apache.maven.plugins.shade.resourceAppendingTransformerTest"><img src="images/icon_success_sml.gif" /></a></td>
 <td><a href="#org.apache.maven.plugins.shade.resourceAppendingTransformerTest">AppendingTransformerTest</a></td>
 <td>1</td>
 <td>0</td>
 <td>0</td>
 <td>0</td>
 <td>100%</td>
-<td>0</td>
+<td>0.015</td>
 </tr>
-<tr class="b"><td><a href="#org.apache.maven.plugins.shade.resourceComponentsXmlResourceTransformerTest"><img src="images/icon_success_sml.gif" /></a></td>
+<tr class="a"><td><a href="#org.apache.maven.plugins.shade.resourceComponentsXmlResourceTransformerTest"><img src="images/icon_success_sml.gif" /></a></td>
 <td><a href="#org.apache.maven.plugins.shade.resourceComponentsXmlResourceTransformerTest">ComponentsXmlResourceTransformerTest</a></td>
 <td>1</td>
 <td>0</td>
 <td>0</td>
 <td>0</td>
 <td>100%</td>
-<td>0.078</td>
+<td>0</td>
 </tr>
-<tr class="a"><td><a href="#org.apache.maven.plugins.shade.resourceXmlAppendingTransformerTest"><img src="images/icon_success_sml.gif" /></a></td>
+<tr class="b"><td><a href="#org.apache.maven.plugins.shade.resourceXmlAppendingTransformerTest"><img src="images/icon_success_sml.gif" /></a></td>
 <td><a href="#org.apache.maven.plugins.shade.resourceXmlAppendingTransformerTest">XmlAppendingTransformerTest</a></td>
 <td>1</td>
 <td>0</td>
@@ -454,8 +504,8 @@ Note: package statistics are not compute
 </tr>
 </table>
 </div>
-<div class="section"><h3><a name="org.apache.maven.plugins.shade"></a>org.apache.maven.plugins.shade</h3>
-<table class="bodyTable"><tr class="b"><th></th>
+<div class="section"><h3><a name="org.apache.maven.plugins.shade.mojo"></a>org.apache.maven.plugins.shade.mojo</h3>
+<table class="bodyTable"><tr class="a"><th></th>
 <th>Class</th>
 <th>Tests</th>
 <th>Errors </th>
@@ -464,36 +514,33 @@ Note: package statistics are not compute
 <th>Success Rate</th>
 <th>Time</th>
 </tr>
-<tr class="a"><td><a href="#org.apache.maven.plugins.shadeDefaultShaderTest"><img src="images/icon_success_sml.gif" /></a></td>
-<td><a href="#org.apache.maven.plugins.shadeDefaultShaderTest">DefaultShaderTest</a></td>
-<td>4</td>
+<tr class="b"><td><a href="#org.apache.maven.plugins.shade.mojoArtifactIdTest"><img src="images/icon_success_sml.gif" /></a></td>
+<td><a href="#org.apache.maven.plugins.shade.mojoArtifactIdTest">ArtifactIdTest</a></td>
+<td>2</td>
 <td>0</td>
 <td>0</td>
 <td>0</td>
 <td>100%</td>
-<td>1.985</td>
-</tr>
-</table>
-</div>
-<div class="section"><h3><a name="org.apache.maven.plugins.shade.relocation"></a>org.apache.maven.plugins.shade.relocation</h3>
-<table class="bodyTable"><tr class="b"><th></th>
-<th>Class</th>
-<th>Tests</th>
-<th>Errors </th>
-<th>Failures</th>
-<th>Skipped</th>
-<th>Success Rate</th>
-<th>Time</th>
+<td>0</td>
 </tr>
-<tr class="a"><td><a href="#org.apache.maven.plugins.shade.relocationSimpleRelocatorTest"><img src="images/icon_success_sml.gif" /></a></td>
-<td><a href="#org.apache.maven.plugins.shade.relocationSimpleRelocatorTest">SimpleRelocatorTest</a></td>
-<td>4</td>
+<tr class="a"><td><a href="#org.apache.maven.plugins.shade.mojoArtifactSelectorTest"><img src="images/icon_success_sml.gif" /></a></td>
+<td><a href="#org.apache.maven.plugins.shade.mojoArtifactSelectorTest">ArtifactSelectorTest</a></td>
+<td>1</td>
 <td>0</td>
 <td>0</td>
 <td>0</td>
 <td>100%</td>
 <td>0</td>
 </tr>
+<tr class="b"><td><a href="#org.apache.maven.plugins.shade.mojoShadeMojoTest"><img src="images/icon_success_sml.gif" /></a></td>
+<td><a href="#org.apache.maven.plugins.shade.mojoShadeMojoTest">ShadeMojoTest</a></td>
+<td>3</td>
+<td>0</td>
+<td>0</td>
+<td>0</td>
+<td>100%</td>
+<td>2.516</td>
+</tr>
 </table>
 </div>
 <br />
@@ -501,88 +548,113 @@ Note: package statistics are not compute
 <div class="section"><h2><a name="Test_Cases"></a>Test Cases</h2>
 <div class="section">[<a href="#Summary">Summary</a>] [<a href="#Package_List">Package List</a>] [<a href="#Test_Cases">Test Cases</a>]</div>
 <div class="section"><h3><a name="org.apache.maven.plugins.shadeDefaultShaderTest"></a>DefaultShaderTest</h3>
-<table class="bodyTable"><tr class="b"><td><img src="images/icon_success_sml.gif" /></td>
+<table class="bodyTable"><tr class="a"><td><img src="images/icon_success_sml.gif" /></td>
 <td>testShaderWithDefaultShadedPattern</td>
-<td>0.766</td>
+<td>0.891</td>
 </tr>
-<tr class="a"><td><img src="images/icon_success_sml.gif" /></td>
+<tr class="b"><td><img src="images/icon_success_sml.gif" /></td>
 <td>testShaderWithStaticInitializedClass</td>
-<td>0.016</td>
+<td>0.015</td>
 </tr>
-<tr class="b"><td><img src="images/icon_success_sml.gif" /></td>
+<tr class="a"><td><img src="images/icon_success_sml.gif" /></td>
 <td>testShaderWithCustomShadedPattern</td>
-<td>0.765</td>
+<td>0.906</td>
 </tr>
-<tr class="a"><td><img src="images/icon_success_sml.gif" /></td>
+<tr class="b"><td><img src="images/icon_success_sml.gif" /></td>
 <td>testShaderWithoutExcludesShouldRemoveReferencesOfOriginalPattern</td>
-<td>0.438</td>
+<td>0.547</td>
 </tr>
 </table>
 </div>
-<div class="section"><h3><a name="org.apache.maven.plugins.shade.mojoShadeMojoTest"></a>ShadeMojoTest</h3>
+<div class="section"><h3><a name="org.apache.maven.plugins.shade.filterSimpleFilterTest"></a>SimpleFilterTest</h3>
+<table class="bodyTable"><tr class="a"><td><img src="images/icon_success_sml.gif" /></td>
+<td>testIsFiltered</td>
+<td>0</td>
+</tr>
+</table>
+</div>
+<div class="section"><h3><a name="org.apache.maven.plugins.shade.mojoArtifactIdTest"></a>ArtifactIdTest</h3>
 <table class="bodyTable"><tr class="b"><td><img src="images/icon_success_sml.gif" /></td>
-<td>testShaderWithDefaultShadedPattern</td>
-<td>1.078</td>
+<td>testIdParsing</td>
+<td>0</td>
 </tr>
 <tr class="a"><td><img src="images/icon_success_sml.gif" /></td>
-<td>testShaderWithCustomShadedPattern</td>
-<td>0.812</td>
+<td>testMatches</td>
+<td>0</td>
+</tr>
+</table>
+</div>
+<div class="section"><h3><a name="org.apache.maven.plugins.shade.mojoArtifactSelectorTest"></a>ArtifactSelectorTest</h3>
+<table class="bodyTable"><tr class="b"><td><img src="images/icon_success_sml.gif" /></td>
+<td>testIsSelected</td>
+<td>0</td>
+</tr>
+</table>
+</div>
+<div class="section"><h3><a name="org.apache.maven.plugins.shade.mojoShadeMojoTest"></a>ShadeMojoTest</h3>
+<table class="bodyTable"><tr class="a"><td><img src="images/icon_success_sml.gif" /></td>
+<td>testShaderWithDefaultShadedPattern</td>
+<td>1.484</td>
 </tr>
 <tr class="b"><td><img src="images/icon_success_sml.gif" /></td>
+<td>testShaderWithCustomShadedPattern</td>
+<td>0.969</td>
+</tr>
+<tr class="a"><td><img src="images/icon_success_sml.gif" /></td>
 <td>testShaderWithExclusions</td>
-<td>0.032</td>
+<td>0.063</td>
 </tr>
 </table>
 </div>
 <div class="section"><h3><a name="org.apache.maven.plugins.shade.relocationSimpleRelocatorTest"></a>SimpleRelocatorTest</h3>
-<table class="bodyTable"><tr class="a"><td><img src="images/icon_success_sml.gif" /></td>
+<table class="bodyTable"><tr class="b"><td><img src="images/icon_success_sml.gif" /></td>
 <td>testCanRelocatePath</td>
 <td>0</td>
 </tr>
-<tr class="b"><td><img src="images/icon_success_sml.gif" /></td>
+<tr class="a"><td><img src="images/icon_success_sml.gif" /></td>
 <td>testCanRelocateClass</td>
 <td>0</td>
 </tr>
-<tr class="a"><td><img src="images/icon_success_sml.gif" /></td>
+<tr class="b"><td><img src="images/icon_success_sml.gif" /></td>
 <td>testRelocatePath</td>
 <td>0</td>
 </tr>
-<tr class="b"><td><img src="images/icon_success_sml.gif" /></td>
+<tr class="a"><td><img src="images/icon_success_sml.gif" /></td>
 <td>testRelocateClass</td>
-<td>0</td>
+<td>0.016</td>
 </tr>
 </table>
 </div>
 <div class="section"><h3><a name="org.apache.maven.plugins.shade.resourceApacheLicenseResourceTransformerTest"></a>ApacheLicenseResourceTransformerTest</h3>
-<table class="bodyTable"><tr class="a"><td><img src="images/icon_success_sml.gif" /></td>
+<table class="bodyTable"><tr class="b"><td><img src="images/icon_success_sml.gif" /></td>
 <td>testCanTransformResource</td>
 <td>0</td>
 </tr>
 </table>
 </div>
 <div class="section"><h3><a name="org.apache.maven.plugins.shade.resourceApacheNoticeResourceTransformerTest"></a>ApacheNoticeResourceTransformerTest</h3>
-<table class="bodyTable"><tr class="b"><td><img src="images/icon_success_sml.gif" /></td>
+<table class="bodyTable"><tr class="a"><td><img src="images/icon_success_sml.gif" /></td>
 <td>testCanTransformResource</td>
-<td>0</td>
+<td>0.015</td>
 </tr>
 </table>
 </div>
 <div class="section"><h3><a name="org.apache.maven.plugins.shade.resourceAppendingTransformerTest"></a>AppendingTransformerTest</h3>
-<table class="bodyTable"><tr class="a"><td><img src="images/icon_success_sml.gif" /></td>
+<table class="bodyTable"><tr class="b"><td><img src="images/icon_success_sml.gif" /></td>
 <td>testCanTransformResource</td>
 <td>0</td>
 </tr>
 </table>
 </div>
 <div class="section"><h3><a name="org.apache.maven.plugins.shade.resourceComponentsXmlResourceTransformerTest"></a>ComponentsXmlResourceTransformerTest</h3>
-<table class="bodyTable"><tr class="b"><td><img src="images/icon_success_sml.gif" /></td>
+<table class="bodyTable"><tr class="a"><td><img src="images/icon_success_sml.gif" /></td>
 <td>testConfigurationMerging</td>
-<td>0.062</td>
+<td>0</td>
 </tr>
 </table>
 </div>
 <div class="section"><h3><a name="org.apache.maven.plugins.shade.resourceXmlAppendingTransformerTest"></a>XmlAppendingTransformerTest</h3>
-<table class="bodyTable"><tr class="a"><td><img src="images/icon_success_sml.gif" /></td>
+<table class="bodyTable"><tr class="b"><td><img src="images/icon_success_sml.gif" /></td>
 <td>testCanTransformResource</td>
 <td>0</td>
 </tr>

Modified: websites/production/maventest/content/plugins/maven-shade-plugin-latest/taglist.html
==============================================================================
--- websites/production/maventest/content/plugins/maven-shade-plugin-latest/taglist.html (original)
+++ websites/production/maventest/content/plugins/maven-shade-plugin-latest/taglist.html Tue May  8 13:22:51 2012
@@ -12,7 +12,7 @@
 
 <html xmlns="http://www.w3.org/1999/xhtml">
   <head>
-    <title>Maven Shade plugin - Tag List report</title>
+    <title>Maven Shade Plugin - Tag List report</title>
     <style type="text/css" media="all">
       @import url("./css/maven-base.css");
       @import url("./css/maven-theme.css");
@@ -21,7 +21,7 @@
     <link rel="stylesheet" href="./css/print.css" type="text/css" media="print" />
         <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
                                                     
-<script src="http://www.google-analytics.com/urchin.js" type="text/javascript"></script>
+<script type="text/javascript" src="http://www.google-analytics.com/urchin.js"></script>
                                                         
 <script type="text/javascript">_uacct = "UA-140879-1";
         urchinTracker();</script>
@@ -72,8 +72,8 @@
             
   
     
-             Last Published: 2009-11-22
-              &nbsp;| Version: 1.2.2
+             Last Published: 2009-12-31
+              &nbsp;| Version: 1.3
             </div>
       <div class="clear">
         <hr/>
@@ -322,7 +322,7 @@
 <th>Line</th>
 </tr>
 <tr class="a"><td>use the tools in Plexus to merge these properly. For now, I just need an all-or-nothing configuration carry over</td>
-<td>111</td>
+<td>109</td>
 </tr>
 </table>
 </div>

Modified: websites/production/maventest/content/plugins/maven-shade-plugin-latest/team-list.html
==============================================================================
--- websites/production/maventest/content/plugins/maven-shade-plugin-latest/team-list.html (original)
+++ websites/production/maventest/content/plugins/maven-shade-plugin-latest/team-list.html Tue May  8 13:22:51 2012
@@ -12,7 +12,7 @@
 
 <html xmlns="http://www.w3.org/1999/xhtml">
   <head>
-    <title>Maven Shade plugin - Team list</title>
+    <title>Maven Shade Plugin - Team list</title>
     <style type="text/css" media="all">
       @import url("./css/maven-base.css");
       @import url("./css/maven-theme.css");
@@ -21,7 +21,7 @@
     <link rel="stylesheet" href="./css/print.css" type="text/css" media="print" />
         <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
                                                     
-<script src="http://www.google-analytics.com/urchin.js" type="text/javascript"></script>
+<script type="text/javascript" src="http://www.google-analytics.com/urchin.js"></script>
                                                         
 <script type="text/javascript">_uacct = "UA-140879-1";
         urchinTracker();</script>
@@ -72,8 +72,8 @@
             
   
     
-             Last Published: 2009-11-22
-              &nbsp;| Version: 1.2.2
+             Last Published: 2009-12-31
+              &nbsp;| Version: 1.3
             </div>
       <div class="clear">
         <hr/>

Modified: websites/production/maventest/content/plugins/maven-shade-plugin-latest/testapidocs/allclasses-frame.html
==============================================================================
--- websites/production/maventest/content/plugins/maven-shade-plugin-latest/testapidocs/allclasses-frame.html (original)
+++ websites/production/maventest/content/plugins/maven-shade-plugin-latest/testapidocs/allclasses-frame.html Tue May  8 13:22:51 2012
@@ -2,13 +2,12 @@
 <!--NewPage-->
 <HTML>
 <HEAD>
-<!-- Generated by javadoc (build 1.6.0_07) on Sun Nov 22 13:40:47 CET 2009 -->
+<!-- Generated by javadoc (build 1.5.0_14) on Thu Dec 31 12:22:24 CET 2009 -->
 <META http-equiv="Content-Type" content="text/html; charset=UTF-8">
 <TITLE>
-All Classes (Maven Shade Plugin 1.2.2 Test API)
+All Classes (Maven Shade Plugin 1.3 Test API)
 </TITLE>
 
-<META NAME="date" CONTENT="2009-11-22">
 
 <LINK REL ="stylesheet" TYPE="text/css" HREF="stylesheet.css" TITLE="Style">
 
@@ -28,12 +27,18 @@ All Classes (Maven Shade Plugin 1.2.2 Te
 <BR>
 <A HREF="org/apache/maven/plugins/shade/resource/AppendingTransformerTest.html" title="class in org.apache.maven.plugins.shade.resource" target="classFrame">AppendingTransformerTest</A>
 <BR>
+<A HREF="org/apache/maven/plugins/shade/mojo/ArtifactIdTest.html" title="class in org.apache.maven.plugins.shade.mojo" target="classFrame">ArtifactIdTest</A>
+<BR>
+<A HREF="org/apache/maven/plugins/shade/mojo/ArtifactSelectorTest.html" title="class in org.apache.maven.plugins.shade.mojo" target="classFrame">ArtifactSelectorTest</A>
+<BR>
 <A HREF="org/apache/maven/plugins/shade/resource/ComponentsXmlResourceTransformerTest.html" title="class in org.apache.maven.plugins.shade.resource" target="classFrame">ComponentsXmlResourceTransformerTest</A>
 <BR>
 <A HREF="org/apache/maven/plugins/shade/DefaultShaderTest.html" title="class in org.apache.maven.plugins.shade" target="classFrame">DefaultShaderTest</A>
 <BR>
 <A HREF="org/apache/maven/plugins/shade/mojo/ShadeMojoTest.html" title="class in org.apache.maven.plugins.shade.mojo" target="classFrame">ShadeMojoTest</A>
 <BR>
+<A HREF="org/apache/maven/plugins/shade/filter/SimpleFilterTest.html" title="class in org.apache.maven.plugins.shade.filter" target="classFrame">SimpleFilterTest</A>
+<BR>
 <A HREF="org/apache/maven/plugins/shade/relocation/SimpleRelocatorTest.html" title="class in org.apache.maven.plugins.shade.relocation" target="classFrame">SimpleRelocatorTest</A>
 <BR>
 <A HREF="org/apache/maven/plugins/shade/resource/XmlAppendingTransformerTest.html" title="class in org.apache.maven.plugins.shade.resource" target="classFrame">XmlAppendingTransformerTest</A>

Modified: websites/production/maventest/content/plugins/maven-shade-plugin-latest/testapidocs/allclasses-noframe.html
==============================================================================
--- websites/production/maventest/content/plugins/maven-shade-plugin-latest/testapidocs/allclasses-noframe.html (original)
+++ websites/production/maventest/content/plugins/maven-shade-plugin-latest/testapidocs/allclasses-noframe.html Tue May  8 13:22:51 2012
@@ -2,13 +2,12 @@
 <!--NewPage-->
 <HTML>
 <HEAD>
-<!-- Generated by javadoc (build 1.6.0_07) on Sun Nov 22 13:40:47 CET 2009 -->
+<!-- Generated by javadoc (build 1.5.0_14) on Thu Dec 31 12:22:24 CET 2009 -->
 <META http-equiv="Content-Type" content="text/html; charset=UTF-8">
 <TITLE>
-All Classes (Maven Shade Plugin 1.2.2 Test API)
+All Classes (Maven Shade Plugin 1.3 Test API)
 </TITLE>
 
-<META NAME="date" CONTENT="2009-11-22">
 
 <LINK REL ="stylesheet" TYPE="text/css" HREF="stylesheet.css" TITLE="Style">
 
@@ -28,12 +27,18 @@ All Classes (Maven Shade Plugin 1.2.2 Te
 <BR>
 <A HREF="org/apache/maven/plugins/shade/resource/AppendingTransformerTest.html" title="class in org.apache.maven.plugins.shade.resource">AppendingTransformerTest</A>
 <BR>
+<A HREF="org/apache/maven/plugins/shade/mojo/ArtifactIdTest.html" title="class in org.apache.maven.plugins.shade.mojo">ArtifactIdTest</A>
+<BR>
+<A HREF="org/apache/maven/plugins/shade/mojo/ArtifactSelectorTest.html" title="class in org.apache.maven.plugins.shade.mojo">ArtifactSelectorTest</A>
+<BR>
 <A HREF="org/apache/maven/plugins/shade/resource/ComponentsXmlResourceTransformerTest.html" title="class in org.apache.maven.plugins.shade.resource">ComponentsXmlResourceTransformerTest</A>
 <BR>
 <A HREF="org/apache/maven/plugins/shade/DefaultShaderTest.html" title="class in org.apache.maven.plugins.shade">DefaultShaderTest</A>
 <BR>
 <A HREF="org/apache/maven/plugins/shade/mojo/ShadeMojoTest.html" title="class in org.apache.maven.plugins.shade.mojo">ShadeMojoTest</A>
 <BR>
+<A HREF="org/apache/maven/plugins/shade/filter/SimpleFilterTest.html" title="class in org.apache.maven.plugins.shade.filter">SimpleFilterTest</A>
+<BR>
 <A HREF="org/apache/maven/plugins/shade/relocation/SimpleRelocatorTest.html" title="class in org.apache.maven.plugins.shade.relocation">SimpleRelocatorTest</A>
 <BR>
 <A HREF="org/apache/maven/plugins/shade/resource/XmlAppendingTransformerTest.html" title="class in org.apache.maven.plugins.shade.resource">XmlAppendingTransformerTest</A>

Modified: websites/production/maventest/content/plugins/maven-shade-plugin-latest/testapidocs/constant-values.html
==============================================================================
--- websites/production/maventest/content/plugins/maven-shade-plugin-latest/testapidocs/constant-values.html (original)
+++ websites/production/maventest/content/plugins/maven-shade-plugin-latest/testapidocs/constant-values.html Tue May  8 13:22:51 2012
@@ -2,22 +2,19 @@
 <!--NewPage-->
 <HTML>
 <HEAD>
-<!-- Generated by javadoc (build 1.6.0_07) on Sun Nov 22 13:40:46 CET 2009 -->
+<!-- Generated by javadoc (build 1.5.0_14) on Thu Dec 31 12:22:24 CET 2009 -->
 <META http-equiv="Content-Type" content="text/html; charset=UTF-8">
 <TITLE>
-Constant Field Values (Maven Shade Plugin 1.2.2 Test API)
+Constant Field Values (Maven Shade Plugin 1.3 Test API)
 </TITLE>
 
-<META NAME="date" CONTENT="2009-11-22">
 
 <LINK REL ="stylesheet" TYPE="text/css" HREF="stylesheet.css" TITLE="Style">
 
 <SCRIPT type="text/javascript">
 function windowTitle()
 {
-    if (location.href.indexOf('is-external=true') == -1) {
-        parent.document.title="Constant Field Values (Maven Shade Plugin 1.2.2 Test API)";
-    }
+    parent.document.title="Constant Field Values (Maven Shade Plugin 1.3 Test API)";
 }
 </SCRIPT>
 <NOSCRIPT>
@@ -26,7 +23,6 @@ function windowTitle()
 </HEAD>
 
 <BODY BGCOLOR="white" onload="windowTitle();">
-<HR>
 
 
 <!-- ========= START OF TOP NAVBAR ======= -->

Modified: websites/production/maventest/content/plugins/maven-shade-plugin-latest/testapidocs/deprecated-list.html
==============================================================================
--- websites/production/maventest/content/plugins/maven-shade-plugin-latest/testapidocs/deprecated-list.html (original)
+++ websites/production/maventest/content/plugins/maven-shade-plugin-latest/testapidocs/deprecated-list.html Tue May  8 13:22:51 2012
@@ -2,22 +2,19 @@
 <!--NewPage-->
 <HTML>
 <HEAD>
-<!-- Generated by javadoc (build 1.6.0_07) on Sun Nov 22 13:40:46 CET 2009 -->
+<!-- Generated by javadoc (build 1.5.0_14) on Thu Dec 31 12:22:24 CET 2009 -->
 <META http-equiv="Content-Type" content="text/html; charset=UTF-8">
 <TITLE>
-Deprecated List (Maven Shade Plugin 1.2.2 Test API)
+Deprecated List (Maven Shade Plugin 1.3 Test API)
 </TITLE>
 
-<META NAME="date" CONTENT="2009-11-22">
 
 <LINK REL ="stylesheet" TYPE="text/css" HREF="stylesheet.css" TITLE="Style">
 
 <SCRIPT type="text/javascript">
 function windowTitle()
 {
-    if (location.href.indexOf('is-external=true') == -1) {
-        parent.document.title="Deprecated List (Maven Shade Plugin 1.2.2 Test API)";
-    }
+    parent.document.title="Deprecated List (Maven Shade Plugin 1.3 Test API)";
 }
 </SCRIPT>
 <NOSCRIPT>
@@ -26,7 +23,6 @@ function windowTitle()
 </HEAD>
 
 <BODY BGCOLOR="white" onload="windowTitle();">
-<HR>
 
 
 <!-- ========= START OF TOP NAVBAR ======= -->

Modified: websites/production/maventest/content/plugins/maven-shade-plugin-latest/testapidocs/help-doc.html
==============================================================================
--- websites/production/maventest/content/plugins/maven-shade-plugin-latest/testapidocs/help-doc.html (original)
+++ websites/production/maventest/content/plugins/maven-shade-plugin-latest/testapidocs/help-doc.html Tue May  8 13:22:51 2012
@@ -2,22 +2,19 @@
 <!--NewPage-->
 <HTML>
 <HEAD>
-<!-- Generated by javadoc (build 1.6.0_07) on Sun Nov 22 13:40:47 CET 2009 -->
+<!-- Generated by javadoc (build 1.5.0_14) on Thu Dec 31 12:22:24 CET 2009 -->
 <META http-equiv="Content-Type" content="text/html; charset=UTF-8">
 <TITLE>
-API Help (Maven Shade Plugin 1.2.2 Test API)
+API Help (Maven Shade Plugin 1.3 Test API)
 </TITLE>
 
-<META NAME="date" CONTENT="2009-11-22">
 
 <LINK REL ="stylesheet" TYPE="text/css" HREF="stylesheet.css" TITLE="Style">
 
 <SCRIPT type="text/javascript">
 function windowTitle()
 {
-    if (location.href.indexOf('is-external=true') == -1) {
-        parent.document.title="API Help (Maven Shade Plugin 1.2.2 Test API)";
-    }
+    parent.document.title="API Help (Maven Shade Plugin 1.3 Test API)";
 }
 </SCRIPT>
 <NOSCRIPT>
@@ -26,7 +23,6 @@ function windowTitle()
 </HEAD>
 
 <BODY BGCOLOR="white" onload="windowTitle();">
-<HR>
 
 
 <!-- ========= START OF TOP NAVBAR ======= -->

Modified: websites/production/maventest/content/plugins/maven-shade-plugin-latest/testapidocs/index-all.html
==============================================================================
--- websites/production/maventest/content/plugins/maven-shade-plugin-latest/testapidocs/index-all.html (original)
+++ websites/production/maventest/content/plugins/maven-shade-plugin-latest/testapidocs/index-all.html Tue May  8 13:22:51 2012
@@ -2,22 +2,19 @@
 <!--NewPage-->
 <HTML>
 <HEAD>
-<!-- Generated by javadoc (build 1.6.0_07) on Sun Nov 22 13:40:46 CET 2009 -->
+<!-- Generated by javadoc (build 1.5.0_14) on Thu Dec 31 12:22:24 CET 2009 -->
 <META http-equiv="Content-Type" content="text/html; charset=UTF-8">
 <TITLE>
-Index (Maven Shade Plugin 1.2.2 Test API)
+Index (Maven Shade Plugin 1.3 Test API)
 </TITLE>
 
-<META NAME="date" CONTENT="2009-11-22">
 
 <LINK REL ="stylesheet" TYPE="text/css" HREF="./stylesheet.css" TITLE="Style">
 
 <SCRIPT type="text/javascript">
 function windowTitle()
 {
-    if (location.href.indexOf('is-external=true') == -1) {
-        parent.document.title="Index (Maven Shade Plugin 1.2.2 Test API)";
-    }
+    parent.document.title="Index (Maven Shade Plugin 1.3 Test API)";
 }
 </SCRIPT>
 <NOSCRIPT>
@@ -26,7 +23,6 @@ function windowTitle()
 </HEAD>
 
 <BODY BGCOLOR="white" onload="windowTitle();">
-<HR>
 
 
 <!-- ========= START OF TOP NAVBAR ======= -->
@@ -92,6 +88,12 @@ Constructor for class org.apache.maven.p
 <DT><A HREF="./org/apache/maven/plugins/shade/resource/AppendingTransformerTest.html" title="class in org.apache.maven.plugins.shade.resource"><B>AppendingTransformerTest</B></A> - Class in <A HREF="./org/apache/maven/plugins/shade/resource/package-summary.html">org.apache.maven.plugins.shade.resource</A><DD>Test for <CODE>AppendingTransformer</CODE>.<DT><A HREF="./org/apache/maven/plugins/shade/resource/AppendingTransformerTest.html#AppendingTransformerTest()"><B>AppendingTransformerTest()</B></A> - 
 Constructor for class org.apache.maven.plugins.shade.resource.<A HREF="./org/apache/maven/plugins/shade/resource/AppendingTransformerTest.html" title="class in org.apache.maven.plugins.shade.resource">AppendingTransformerTest</A>
 <DD>&nbsp;
+<DT><A HREF="./org/apache/maven/plugins/shade/mojo/ArtifactIdTest.html" title="class in org.apache.maven.plugins.shade.mojo"><B>ArtifactIdTest</B></A> - Class in <A HREF="./org/apache/maven/plugins/shade/mojo/package-summary.html">org.apache.maven.plugins.shade.mojo</A><DD>&nbsp;<DT><A HREF="./org/apache/maven/plugins/shade/mojo/ArtifactIdTest.html#ArtifactIdTest()"><B>ArtifactIdTest()</B></A> - 
+Constructor for class org.apache.maven.plugins.shade.mojo.<A HREF="./org/apache/maven/plugins/shade/mojo/ArtifactIdTest.html" title="class in org.apache.maven.plugins.shade.mojo">ArtifactIdTest</A>
+<DD>&nbsp;
+<DT><A HREF="./org/apache/maven/plugins/shade/mojo/ArtifactSelectorTest.html" title="class in org.apache.maven.plugins.shade.mojo"><B>ArtifactSelectorTest</B></A> - Class in <A HREF="./org/apache/maven/plugins/shade/mojo/package-summary.html">org.apache.maven.plugins.shade.mojo</A><DD>&nbsp;<DT><A HREF="./org/apache/maven/plugins/shade/mojo/ArtifactSelectorTest.html#ArtifactSelectorTest()"><B>ArtifactSelectorTest()</B></A> - 
+Constructor for class org.apache.maven.plugins.shade.mojo.<A HREF="./org/apache/maven/plugins/shade/mojo/ArtifactSelectorTest.html" title="class in org.apache.maven.plugins.shade.mojo">ArtifactSelectorTest</A>
+<DD>&nbsp;
 </DL>
 <HR>
 <A NAME="_C_"><!-- --></A><H2>
@@ -113,7 +115,7 @@ Constructor for class org.apache.maven.p
 <A NAME="_O_"><!-- --></A><H2>
 <B>O</B></H2>
 <DL>
-<DT><A HREF="./org/apache/maven/plugins/shade/package-summary.html"><B>org.apache.maven.plugins.shade</B></A> - package org.apache.maven.plugins.shade<DD>&nbsp;<DT><A HREF="./org/apache/maven/plugins/shade/mojo/package-summary.html"><B>org.apache.maven.plugins.shade.mojo</B></A> - package org.apache.maven.plugins.shade.mojo<DD>&nbsp;<DT><A HREF="./org/apache/maven/plugins/shade/relocation/package-summary.html"><B>org.apache.maven.plugins.shade.relocation</B></A> - package org.apache.maven.plugins.shade.relocation<DD>&nbsp;<DT><A HREF="./org/apache/maven/plugins/shade/resource/package-summary.html"><B>org.apache.maven.plugins.shade.resource</B></A> - package org.apache.maven.plugins.shade.resource<DD>&nbsp;</DL>
+<DT><A HREF="./org/apache/maven/plugins/shade/package-summary.html"><B>org.apache.maven.plugins.shade</B></A> - package org.apache.maven.plugins.shade<DD>&nbsp;<DT><A HREF="./org/apache/maven/plugins/shade/filter/package-summary.html"><B>org.apache.maven.plugins.shade.filter</B></A> - package org.apache.maven.plugins.shade.filter<DD>&nbsp;<DT><A HREF="./org/apache/maven/plugins/shade/mojo/package-summary.html"><B>org.apache.maven.plugins.shade.mojo</B></A> - package org.apache.maven.plugins.shade.mojo<DD>&nbsp;<DT><A HREF="./org/apache/maven/plugins/shade/relocation/package-summary.html"><B>org.apache.maven.plugins.shade.relocation</B></A> - package org.apache.maven.plugins.shade.relocation<DD>&nbsp;<DT><A HREF="./org/apache/maven/plugins/shade/resource/package-summary.html"><B>org.apache.maven.plugins.shade.resource</B></A> - package org.apache.maven.plugins.shade.resource<DD>&nbsp;</DL>
 <HR>
 <A NAME="_S_"><!-- --></A><H2>
 <B>S</B></H2>
@@ -142,6 +144,9 @@ Method in class org.apache.maven.plugins
 <DT><A HREF="./org/apache/maven/plugins/shade/mojo/ShadeMojoTest.html#shaderWithPattern(java.lang.String, java.io.File)"><B>shaderWithPattern(String, File)</B></A> - 
 Method in class org.apache.maven.plugins.shade.mojo.<A HREF="./org/apache/maven/plugins/shade/mojo/ShadeMojoTest.html" title="class in org.apache.maven.plugins.shade.mojo">ShadeMojoTest</A>
 <DD>&nbsp;
+<DT><A HREF="./org/apache/maven/plugins/shade/filter/SimpleFilterTest.html" title="class in org.apache.maven.plugins.shade.filter"><B>SimpleFilterTest</B></A> - Class in <A HREF="./org/apache/maven/plugins/shade/filter/package-summary.html">org.apache.maven.plugins.shade.filter</A><DD>&nbsp;<DT><A HREF="./org/apache/maven/plugins/shade/filter/SimpleFilterTest.html#SimpleFilterTest()"><B>SimpleFilterTest()</B></A> - 
+Constructor for class org.apache.maven.plugins.shade.filter.<A HREF="./org/apache/maven/plugins/shade/filter/SimpleFilterTest.html" title="class in org.apache.maven.plugins.shade.filter">SimpleFilterTest</A>
+<DD>&nbsp;
 <DT><A HREF="./org/apache/maven/plugins/shade/relocation/SimpleRelocatorTest.html" title="class in org.apache.maven.plugins.shade.relocation"><B>SimpleRelocatorTest</B></A> - Class in <A HREF="./org/apache/maven/plugins/shade/relocation/package-summary.html">org.apache.maven.plugins.shade.relocation</A><DD>Test for <CODE>SimpleRelocator</CODE>.<DT><A HREF="./org/apache/maven/plugins/shade/relocation/SimpleRelocatorTest.html#SimpleRelocatorTest()"><B>SimpleRelocatorTest()</B></A> - 
 Constructor for class org.apache.maven.plugins.shade.relocation.<A HREF="./org/apache/maven/plugins/shade/relocation/SimpleRelocatorTest.html" title="class in org.apache.maven.plugins.shade.relocation">SimpleRelocatorTest</A>
 <DD>&nbsp;
@@ -171,6 +176,18 @@ Method in class org.apache.maven.plugins
 <DT><A HREF="./org/apache/maven/plugins/shade/resource/ComponentsXmlResourceTransformerTest.html#testConfigurationMerging()"><B>testConfigurationMerging()</B></A> - 
 Method in class org.apache.maven.plugins.shade.resource.<A HREF="./org/apache/maven/plugins/shade/resource/ComponentsXmlResourceTransformerTest.html" title="class in org.apache.maven.plugins.shade.resource">ComponentsXmlResourceTransformerTest</A>
 <DD>&nbsp;
+<DT><A HREF="./org/apache/maven/plugins/shade/mojo/ArtifactIdTest.html#testIdParsing()"><B>testIdParsing()</B></A> - 
+Method in class org.apache.maven.plugins.shade.mojo.<A HREF="./org/apache/maven/plugins/shade/mojo/ArtifactIdTest.html" title="class in org.apache.maven.plugins.shade.mojo">ArtifactIdTest</A>
+<DD>&nbsp;
+<DT><A HREF="./org/apache/maven/plugins/shade/filter/SimpleFilterTest.html#testIsFiltered()"><B>testIsFiltered()</B></A> - 
+Method in class org.apache.maven.plugins.shade.filter.<A HREF="./org/apache/maven/plugins/shade/filter/SimpleFilterTest.html" title="class in org.apache.maven.plugins.shade.filter">SimpleFilterTest</A>
+<DD>&nbsp;
+<DT><A HREF="./org/apache/maven/plugins/shade/mojo/ArtifactSelectorTest.html#testIsSelected()"><B>testIsSelected()</B></A> - 
+Method in class org.apache.maven.plugins.shade.mojo.<A HREF="./org/apache/maven/plugins/shade/mojo/ArtifactSelectorTest.html" title="class in org.apache.maven.plugins.shade.mojo">ArtifactSelectorTest</A>
+<DD>&nbsp;
+<DT><A HREF="./org/apache/maven/plugins/shade/mojo/ArtifactIdTest.html#testMatches()"><B>testMatches()</B></A> - 
+Method in class org.apache.maven.plugins.shade.mojo.<A HREF="./org/apache/maven/plugins/shade/mojo/ArtifactIdTest.html" title="class in org.apache.maven.plugins.shade.mojo">ArtifactIdTest</A>
+<DD>&nbsp;
 <DT><A HREF="./org/apache/maven/plugins/shade/relocation/SimpleRelocatorTest.html#testRelocateClass()"><B>testRelocateClass()</B></A> - 
 Method in class org.apache.maven.plugins.shade.relocation.<A HREF="./org/apache/maven/plugins/shade/relocation/SimpleRelocatorTest.html" title="class in org.apache.maven.plugins.shade.relocation">SimpleRelocatorTest</A>
 <DD>&nbsp;

Modified: websites/production/maventest/content/plugins/maven-shade-plugin-latest/testapidocs/index.html
==============================================================================
--- websites/production/maventest/content/plugins/maven-shade-plugin-latest/testapidocs/index.html (original)
+++ websites/production/maventest/content/plugins/maven-shade-plugin-latest/testapidocs/index.html Tue May  8 13:22:51 2012
@@ -2,10 +2,10 @@
 <!--NewPage-->
 <HTML>
 <HEAD>
-<!-- Generated by javadoc on Sun Nov 22 13:40:47 CET 2009-->
+<!-- Generated by javadoc on Thu Dec 31 12:22:24 CET 2009-->
 <META http-equiv="Content-Type" content="text/html; charset=UTF-8">
 <TITLE>
-Maven Shade Plugin 1.2.2 Test API
+Maven Shade Plugin 1.3 Test API
 </TITLE>
 <SCRIPT type="text/javascript">
     targetPage = "" + window.location.search;