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 [29/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/xref/org/apache/maven/plugins/shade/resource/ComponentsXmlResourceTransformer.html
==============================================================================
--- websites/production/maventest/content/plugins/maven-shade-plugin-latest/xref/org/apache/maven/plugins/shade/resource/ComponentsXmlResourceTransformer.html (original)
+++ websites/production/maventest/content/plugins/maven-shade-plugin-latest/xref/org/apache/maven/plugins/shade/resource/ComponentsXmlResourceTransformer.html Tue May  8 13:22:51 2012
@@ -29,162 +29,205 @@
 <a name="19" href="#19">19</a>  <em class="jxr_comment"> * under the License.</em>
 <a name="20" href="#20">20</a>  <em class="jxr_comment"> */</em>
 <a name="21" href="#21">21</a>  
-<a name="22" href="#22">22</a>  <strong class="jxr_keyword">import</strong> java.io.File;
-<a name="23" href="#23">23</a>  <strong class="jxr_keyword">import</strong> java.io.FileOutputStream;
+<a name="22" href="#22">22</a>  <strong class="jxr_keyword">import</strong> java.io.BufferedInputStream;
+<a name="23" href="#23">23</a>  <strong class="jxr_keyword">import</strong> java.io.ByteArrayOutputStream;
 <a name="24" href="#24">24</a>  <strong class="jxr_keyword">import</strong> java.io.IOException;
 <a name="25" href="#25">25</a>  <strong class="jxr_keyword">import</strong> java.io.InputStream;
-<a name="26" href="#26">26</a>  <strong class="jxr_keyword">import</strong> java.io.OutputStream;
-<a name="27" href="#27">27</a>  <strong class="jxr_keyword">import</strong> java.io.Reader;
-<a name="28" href="#28">28</a>  <strong class="jxr_keyword">import</strong> java.io.Writer;
-<a name="29" href="#29">29</a>  <strong class="jxr_keyword">import</strong> java.util.Iterator;
-<a name="30" href="#30">30</a>  <strong class="jxr_keyword">import</strong> java.util.LinkedHashMap;
+<a name="26" href="#26">26</a>  <strong class="jxr_keyword">import</strong> java.io.Reader;
+<a name="27" href="#27">27</a>  <strong class="jxr_keyword">import</strong> java.io.Writer;
+<a name="28" href="#28">28</a>  <strong class="jxr_keyword">import</strong> java.util.Iterator;
+<a name="29" href="#29">29</a>  <strong class="jxr_keyword">import</strong> java.util.LinkedHashMap;
+<a name="30" href="#30">30</a>  <strong class="jxr_keyword">import</strong> java.util.List;
 <a name="31" href="#31">31</a>  <strong class="jxr_keyword">import</strong> java.util.Map;
 <a name="32" href="#32">32</a>  <strong class="jxr_keyword">import</strong> java.util.jar.JarEntry;
 <a name="33" href="#33">33</a>  <strong class="jxr_keyword">import</strong> java.util.jar.JarOutputStream;
 <a name="34" href="#34">34</a>  
-<a name="35" href="#35">35</a>  <strong class="jxr_keyword">import</strong> org.codehaus.plexus.util.IOUtil;
-<a name="36" href="#36">36</a>  <strong class="jxr_keyword">import</strong> org.codehaus.plexus.util.ReaderFactory;
-<a name="37" href="#37">37</a>  <strong class="jxr_keyword">import</strong> org.codehaus.plexus.util.WriterFactory;
-<a name="38" href="#38">38</a>  <strong class="jxr_keyword">import</strong> org.codehaus.plexus.util.xml.Xpp3Dom;
-<a name="39" href="#39">39</a>  <strong class="jxr_keyword">import</strong> org.codehaus.plexus.util.xml.Xpp3DomBuilder;
-<a name="40" href="#40">40</a>  <strong class="jxr_keyword">import</strong> org.codehaus.plexus.util.xml.Xpp3DomWriter;
-<a name="41" href="#41">41</a>  
-<a name="42" href="#42">42</a>  <em class="jxr_javadoccomment">/**</em>
-<a name="43" href="#43">43</a>  <em class="jxr_javadoccomment"> * A resource processor that aggregates plexus &lt;code&gt;components.xml&lt;/code&gt; files.</em>
-<a name="44" href="#44">44</a>  <em class="jxr_javadoccomment"> * </em>
-<a name="45" href="#45">45</a>  <em class="jxr_javadoccomment"> */</em>
-<a name="46" href="#46">46</a>  <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">class</strong> <a href="../../../../../../org/apache/maven/plugins/shade/resource/ComponentsXmlResourceTransformer.html">ComponentsXmlResourceTransformer</a>
-<a name="47" href="#47">47</a>      implements <a href="../../../../../../org/apache/maven/plugins/shade/resource/ResourceTransformer.html">ResourceTransformer</a>
-<a name="48" href="#48">48</a>  {
-<a name="49" href="#49">49</a>      <strong class="jxr_keyword">private</strong> Map components = <strong class="jxr_keyword">new</strong> LinkedHashMap();
-<a name="50" href="#50">50</a>  
-<a name="51" href="#51">51</a>      <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">static</strong> <strong class="jxr_keyword">final</strong> String COMPONENTS_XML_PATH = <span class="jxr_string">"META-INF/plexus/components.xml"</span>;
-<a name="52" href="#52">52</a>  
-<a name="53" href="#53">53</a>      <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">boolean</strong> canTransformResource( String resource )
-<a name="54" href="#54">54</a>      {
-<a name="55" href="#55">55</a>          <strong class="jxr_keyword">return</strong> COMPONENTS_XML_PATH.equals( resource );
-<a name="56" href="#56">56</a>      }
-<a name="57" href="#57">57</a>  
-<a name="58" href="#58">58</a>      <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> processResource( InputStream is )
-<a name="59" href="#59">59</a>          <strong class="jxr_keyword">throws</strong> IOException
-<a name="60" href="#60">60</a>      {
-<a name="61" href="#61">61</a>          <em class="jxr_comment">// We can't just read the stream because the plexus dom builder closes the stream</em>
-<a name="62" href="#62">62</a>  
-<a name="63" href="#63">63</a>          File f = File.createTempFile( <span class="jxr_string">"maven-shade-plugin"</span>, <span class="jxr_string">"tmp"</span> );
-<a name="64" href="#64">64</a>  
-<a name="65" href="#65">65</a>          f.deleteOnExit();
-<a name="66" href="#66">66</a>  
-<a name="67" href="#67">67</a>          OutputStream os = <strong class="jxr_keyword">new</strong> FileOutputStream( f );
-<a name="68" href="#68">68</a>  
-<a name="69" href="#69">69</a>          IOUtil.copy( is, os );
-<a name="70" href="#70">70</a>  
-<a name="71" href="#71">71</a>          os.close();
-<a name="72" href="#72">72</a>  
-<a name="73" href="#73">73</a>          <em class="jxr_comment">//</em>
+<a name="35" href="#35">35</a>  <strong class="jxr_keyword">import</strong> org.apache.maven.plugins.shade.relocation.Relocator;
+<a name="36" href="#36">36</a>  <strong class="jxr_keyword">import</strong> org.codehaus.plexus.util.IOUtil;
+<a name="37" href="#37">37</a>  <strong class="jxr_keyword">import</strong> org.codehaus.plexus.util.ReaderFactory;
+<a name="38" href="#38">38</a>  <strong class="jxr_keyword">import</strong> org.codehaus.plexus.util.WriterFactory;
+<a name="39" href="#39">39</a>  <strong class="jxr_keyword">import</strong> org.codehaus.plexus.util.xml.Xpp3Dom;
+<a name="40" href="#40">40</a>  <strong class="jxr_keyword">import</strong> org.codehaus.plexus.util.xml.Xpp3DomBuilder;
+<a name="41" href="#41">41</a>  <strong class="jxr_keyword">import</strong> org.codehaus.plexus.util.xml.Xpp3DomWriter;
+<a name="42" href="#42">42</a>  
+<a name="43" href="#43">43</a>  <em class="jxr_javadoccomment">/**</em>
+<a name="44" href="#44">44</a>  <em class="jxr_javadoccomment"> * A resource processor that aggregates plexus &lt;code&gt;components.xml&lt;/code&gt; files.</em>
+<a name="45" href="#45">45</a>  <em class="jxr_javadoccomment"> * </em>
+<a name="46" href="#46">46</a>  <em class="jxr_javadoccomment"> */</em>
+<a name="47" href="#47">47</a>  <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">class</strong> <a href="../../../../../../org/apache/maven/plugins/shade/resource/ComponentsXmlResourceTransformer.html">ComponentsXmlResourceTransformer</a>
+<a name="48" href="#48">48</a>      implements <a href="../../../../../../org/apache/maven/plugins/shade/resource/ResourceTransformer.html">ResourceTransformer</a>
+<a name="49" href="#49">49</a>  {
+<a name="50" href="#50">50</a>      <strong class="jxr_keyword">private</strong> Map components = <strong class="jxr_keyword">new</strong> LinkedHashMap();
+<a name="51" href="#51">51</a>  
+<a name="52" href="#52">52</a>      <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">static</strong> <strong class="jxr_keyword">final</strong> String COMPONENTS_XML_PATH = <span class="jxr_string">"META-INF/plexus/components.xml"</span>;
+<a name="53" href="#53">53</a>  
+<a name="54" href="#54">54</a>      <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">boolean</strong> canTransformResource( String resource )
+<a name="55" href="#55">55</a>      {
+<a name="56" href="#56">56</a>          <strong class="jxr_keyword">return</strong> COMPONENTS_XML_PATH.equals( resource );
+<a name="57" href="#57">57</a>      }
+<a name="58" href="#58">58</a>  
+<a name="59" href="#59">59</a>      <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> processResource( String resource, InputStream is, List relocators )
+<a name="60" href="#60">60</a>          <strong class="jxr_keyword">throws</strong> IOException
+<a name="61" href="#61">61</a>      {
+<a name="62" href="#62">62</a>          Xpp3Dom newDom;
+<a name="63" href="#63">63</a>  
+<a name="64" href="#64">64</a>          <strong class="jxr_keyword">try</strong>
+<a name="65" href="#65">65</a>          {
+<a name="66" href="#66">66</a>              BufferedInputStream bis = <strong class="jxr_keyword">new</strong> BufferedInputStream( is )
+<a name="67" href="#67">67</a>              {
+<a name="68" href="#68">68</a>                  <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> close()
+<a name="69" href="#69">69</a>                      <strong class="jxr_keyword">throws</strong> IOException
+<a name="70" href="#70">70</a>                  {
+<a name="71" href="#71">71</a>                      <em class="jxr_comment">// leave ZIP open</em>
+<a name="72" href="#72">72</a>                  }
+<a name="73" href="#73">73</a>              };
 <a name="74" href="#74">74</a>  
-<a name="75" href="#75">75</a>          Reader reader;
+<a name="75" href="#75">75</a>              Reader reader = ReaderFactory.newXmlReader( bis );
 <a name="76" href="#76">76</a>  
-<a name="77" href="#77">77</a>          Xpp3Dom newDom;
-<a name="78" href="#78">78</a>  
-<a name="79" href="#79">79</a>          <strong class="jxr_keyword">try</strong>
+<a name="77" href="#77">77</a>              newDom = Xpp3DomBuilder.build( reader );
+<a name="78" href="#78">78</a>          }
+<a name="79" href="#79">79</a>          <strong class="jxr_keyword">catch</strong> ( Exception e )
 <a name="80" href="#80">80</a>          {
-<a name="81" href="#81">81</a>              reader = ReaderFactory.newXmlReader( f );
-<a name="82" href="#82">82</a>  
-<a name="83" href="#83">83</a>              newDom = Xpp3DomBuilder.build( reader );
-<a name="84" href="#84">84</a>          }
-<a name="85" href="#85">85</a>          <strong class="jxr_keyword">catch</strong> ( Exception e )
+<a name="81" href="#81">81</a>              <strong class="jxr_keyword">throw</strong> (IOException) <strong class="jxr_keyword">new</strong> IOException( <span class="jxr_string">"Error parsing components.xml in "</span> + is ).initCause( e );
+<a name="82" href="#82">82</a>          }
+<a name="83" href="#83">83</a>  
+<a name="84" href="#84">84</a>          <em class="jxr_comment">// Only try to merge in components if there are some elements in the component-set</em>
+<a name="85" href="#85">85</a>          <strong class="jxr_keyword">if</strong> ( newDom.getChild( <span class="jxr_string">"components"</span> ) == <strong class="jxr_keyword">null</strong> )
 <a name="86" href="#86">86</a>          {
-<a name="87" href="#87">87</a>              <strong class="jxr_keyword">throw</strong> <strong class="jxr_keyword">new</strong> IOException( <span class="jxr_string">"Error parsing components.xml in "</span> + is );
+<a name="87" href="#87">87</a>              <strong class="jxr_keyword">return</strong>;
 <a name="88" href="#88">88</a>          }
 <a name="89" href="#89">89</a>  
-<a name="90" href="#90">90</a>          <em class="jxr_comment">// Only try to merge in components if there are some elements in the component-set</em>
-<a name="91" href="#91">91</a>          <strong class="jxr_keyword">if</strong> ( newDom.getChild( <span class="jxr_string">"components"</span> ) == <strong class="jxr_keyword">null</strong> )
-<a name="92" href="#92">92</a>          {
-<a name="93" href="#93">93</a>              <strong class="jxr_keyword">return</strong>;
-<a name="94" href="#94">94</a>          }
+<a name="90" href="#90">90</a>          Xpp3Dom[] children = newDom.getChild( <span class="jxr_string">"components"</span> ).getChildren( <span class="jxr_string">"component"</span> );
+<a name="91" href="#91">91</a>  
+<a name="92" href="#92">92</a>          <strong class="jxr_keyword">for</strong> ( <strong class="jxr_keyword">int</strong> i = 0; i &lt; children.length; i++ )
+<a name="93" href="#93">93</a>          {
+<a name="94" href="#94">94</a>              Xpp3Dom component = children[i];
 <a name="95" href="#95">95</a>  
-<a name="96" href="#96">96</a>          Xpp3Dom[] children = newDom.getChild( <span class="jxr_string">"components"</span> ).getChildren( <span class="jxr_string">"component"</span> );
-<a name="97" href="#97">97</a>  
-<a name="98" href="#98">98</a>          <strong class="jxr_keyword">for</strong> ( <strong class="jxr_keyword">int</strong> i = 0; i &lt; children.length; i++ )
-<a name="99" href="#99">99</a>          {
-<a name="100" href="#100">100</a>             Xpp3Dom component = children[i];
+<a name="96" href="#96">96</a>              String role = getValue( component, <span class="jxr_string">"role"</span> );
+<a name="97" href="#97">97</a>              role = getRelocatedClass( role, relocators );
+<a name="98" href="#98">98</a>              setValue( component, <span class="jxr_string">"role"</span>, role );
+<a name="99" href="#99">99</a>  
+<a name="100" href="#100">100</a>             String roleHint = getValue( component, <span class="jxr_string">"role-hint"</span> );
 <a name="101" href="#101">101</a> 
-<a name="102" href="#102">102</a>             String role = component.getChild( <span class="jxr_string">"role"</span> ).getValue();
-<a name="103" href="#103">103</a> 
-<a name="104" href="#104">104</a>             Xpp3Dom child = component.getChild( <span class="jxr_string">"role-hint"</span> );
+<a name="102" href="#102">102</a>             String impl = getValue( component, <span class="jxr_string">"implementation"</span> );
+<a name="103" href="#103">103</a>             impl = getRelocatedClass( impl, relocators );
+<a name="104" href="#104">104</a>             setValue( component, <span class="jxr_string">"implementation"</span>, impl );
 <a name="105" href="#105">105</a> 
-<a name="106" href="#106">106</a>             String roleHint = child != <strong class="jxr_keyword">null</strong> ? child.getValue() : <span class="jxr_string">""</span>;
-<a name="107" href="#107">107</a> 
-<a name="108" href="#108">108</a>             String key = role + roleHint;
-<a name="109" href="#109">109</a>             <strong class="jxr_keyword">if</strong> ( components.containsKey( key ) )
-<a name="110" href="#110">110</a>             {
-<a name="111" href="#111">111</a>                 <em class="jxr_comment">// TODO: use the tools in Plexus to merge these properly. For now, I just need an all-or-nothing</em>
-<a name="112" href="#112">112</a>                 <em class="jxr_comment">// configuration carry over</em>
-<a name="113" href="#113">113</a> 
-<a name="114" href="#114">114</a>                 Xpp3Dom dom = (Xpp3Dom) components.get( key );
-<a name="115" href="#115">115</a>                 <strong class="jxr_keyword">if</strong> ( dom.getChild( <span class="jxr_string">"configuration"</span> ) != <strong class="jxr_keyword">null</strong> )
-<a name="116" href="#116">116</a>                 {
-<a name="117" href="#117">117</a>                     component.addChild( dom.getChild( <span class="jxr_string">"configuration"</span> ) );
-<a name="118" href="#118">118</a>                 }
-<a name="119" href="#119">119</a>             }
-<a name="120" href="#120">120</a> 
-<a name="121" href="#121">121</a>             components.put( key, component );
-<a name="122" href="#122">122</a>         }
-<a name="123" href="#123">123</a>     }
-<a name="124" href="#124">124</a> 
-<a name="125" href="#125">125</a>     <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> modifyOutputStream( JarOutputStream jos )
-<a name="126" href="#126">126</a>         <strong class="jxr_keyword">throws</strong> IOException
-<a name="127" href="#127">127</a>     {
-<a name="128" href="#128">128</a>         Reader reader = ReaderFactory.newXmlReader( getTransformedResource() );
-<a name="129" href="#129">129</a> 
-<a name="130" href="#130">130</a>         jos.putNextEntry( <strong class="jxr_keyword">new</strong> JarEntry( COMPONENTS_XML_PATH ) );
+<a name="106" href="#106">106</a>             String key = role + ':' + roleHint;
+<a name="107" href="#107">107</a>             <strong class="jxr_keyword">if</strong> ( components.containsKey( key ) )
+<a name="108" href="#108">108</a>             {
+<a name="109" href="#109">109</a>                 <em class="jxr_comment">// TODO: use the tools in Plexus to merge these properly. For now, I just need an all-or-nothing</em>
+<a name="110" href="#110">110</a>                 <em class="jxr_comment">// configuration carry over</em>
+<a name="111" href="#111">111</a> 
+<a name="112" href="#112">112</a>                 Xpp3Dom dom = (Xpp3Dom) components.get( key );
+<a name="113" href="#113">113</a>                 <strong class="jxr_keyword">if</strong> ( dom.getChild( <span class="jxr_string">"configuration"</span> ) != <strong class="jxr_keyword">null</strong> )
+<a name="114" href="#114">114</a>                 {
+<a name="115" href="#115">115</a>                     component.addChild( dom.getChild( <span class="jxr_string">"configuration"</span> ) );
+<a name="116" href="#116">116</a>                 }
+<a name="117" href="#117">117</a>             }
+<a name="118" href="#118">118</a> 
+<a name="119" href="#119">119</a>             Xpp3Dom requirements = component.getChild( <span class="jxr_string">"requirements"</span> );
+<a name="120" href="#120">120</a>             <strong class="jxr_keyword">if</strong> ( requirements != <strong class="jxr_keyword">null</strong> &amp;&amp; requirements.getChildCount() &gt; 0 )
+<a name="121" href="#121">121</a>             {
+<a name="122" href="#122">122</a>                 <strong class="jxr_keyword">for</strong> ( <strong class="jxr_keyword">int</strong> r = requirements.getChildCount() - 1; r &gt;= 0; r-- )
+<a name="123" href="#123">123</a>                 {
+<a name="124" href="#124">124</a>                     Xpp3Dom requirement = requirements.getChild( r );
+<a name="125" href="#125">125</a> 
+<a name="126" href="#126">126</a>                     String requiredRole = getValue( requirement, <span class="jxr_string">"role"</span> );
+<a name="127" href="#127">127</a>                     requiredRole = getRelocatedClass( requiredRole, relocators );
+<a name="128" href="#128">128</a>                     setValue( requirement, <span class="jxr_string">"role"</span>, requiredRole );
+<a name="129" href="#129">129</a>                 }
+<a name="130" href="#130">130</a>             }
 <a name="131" href="#131">131</a> 
-<a name="132" href="#132">132</a>         IOUtil.copy( reader, jos );
-<a name="133" href="#133">133</a> 
-<a name="134" href="#134">134</a>         reader.close();
+<a name="132" href="#132">132</a>             components.put( key, component );
+<a name="133" href="#133">133</a>         }
+<a name="134" href="#134">134</a>     }
 <a name="135" href="#135">135</a> 
-<a name="136" href="#136">136</a>         components.clear();
-<a name="137" href="#137">137</a>     }
-<a name="138" href="#138">138</a> 
-<a name="139" href="#139">139</a>     <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">boolean</strong> hasTransformedResource()
-<a name="140" href="#140">140</a>     {
-<a name="141" href="#141">141</a>         <strong class="jxr_keyword">return</strong> components.size() &gt; 0;
-<a name="142" href="#142">142</a>     }
-<a name="143" href="#143">143</a> 
-<a name="144" href="#144">144</a>     <strong class="jxr_keyword">public</strong> File getTransformedResource()
-<a name="145" href="#145">145</a>         <strong class="jxr_keyword">throws</strong> IOException
-<a name="146" href="#146">146</a>     {
-<a name="147" href="#147">147</a>         File f = File.createTempFile( <span class="jxr_string">"shade-maven-plugin-plx"</span>, <span class="jxr_string">"tmp"</span> );
-<a name="148" href="#148">148</a> 
-<a name="149" href="#149">149</a>         f.deleteOnExit();
-<a name="150" href="#150">150</a> 
-<a name="151" href="#151">151</a>         Writer writer = WriterFactory.newXmlWriter( f );
-<a name="152" href="#152">152</a>         <strong class="jxr_keyword">try</strong>
-<a name="153" href="#153">153</a>         {
-<a name="154" href="#154">154</a>             Xpp3Dom dom = <strong class="jxr_keyword">new</strong> Xpp3Dom( <span class="jxr_string">"component-set"</span> );
-<a name="155" href="#155">155</a> 
-<a name="156" href="#156">156</a>             Xpp3Dom componentDom = <strong class="jxr_keyword">new</strong> Xpp3Dom( <span class="jxr_string">"components"</span> );
+<a name="136" href="#136">136</a>     <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> modifyOutputStream( JarOutputStream jos )
+<a name="137" href="#137">137</a>         <strong class="jxr_keyword">throws</strong> IOException
+<a name="138" href="#138">138</a>     {
+<a name="139" href="#139">139</a>         byte[] data = getTransformedResource();
+<a name="140" href="#140">140</a> 
+<a name="141" href="#141">141</a>         jos.putNextEntry( <strong class="jxr_keyword">new</strong> JarEntry( COMPONENTS_XML_PATH ) );
+<a name="142" href="#142">142</a> 
+<a name="143" href="#143">143</a>         IOUtil.copy( data, jos );
+<a name="144" href="#144">144</a> 
+<a name="145" href="#145">145</a>         components.clear();
+<a name="146" href="#146">146</a>     }
+<a name="147" href="#147">147</a> 
+<a name="148" href="#148">148</a>     <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">boolean</strong> hasTransformedResource()
+<a name="149" href="#149">149</a>     {
+<a name="150" href="#150">150</a>         <strong class="jxr_keyword">return</strong> !components.isEmpty();
+<a name="151" href="#151">151</a>     }
+<a name="152" href="#152">152</a> 
+<a name="153" href="#153">153</a>     byte[] getTransformedResource()
+<a name="154" href="#154">154</a>         <strong class="jxr_keyword">throws</strong> IOException
+<a name="155" href="#155">155</a>     {
+<a name="156" href="#156">156</a>         ByteArrayOutputStream baos = <strong class="jxr_keyword">new</strong> ByteArrayOutputStream( 1024 * 4 );
 <a name="157" href="#157">157</a> 
-<a name="158" href="#158">158</a>             dom.addChild( componentDom );
-<a name="159" href="#159">159</a> 
-<a name="160" href="#160">160</a>             <strong class="jxr_keyword">for</strong> ( Iterator i = components.values().iterator(); i.hasNext(); )
-<a name="161" href="#161">161</a>             {
-<a name="162" href="#162">162</a>                 Xpp3Dom component = (Xpp3Dom) i.next();
-<a name="163" href="#163">163</a>                 componentDom.addChild( component );
-<a name="164" href="#164">164</a>             }
-<a name="165" href="#165">165</a> 
-<a name="166" href="#166">166</a>             Xpp3DomWriter.write( writer, dom );
-<a name="167" href="#167">167</a>         }
-<a name="168" href="#168">168</a>         <strong class="jxr_keyword">finally</strong>
-<a name="169" href="#169">169</a>         {
-<a name="170" href="#170">170</a>             IOUtil.close( writer );
-<a name="171" href="#171">171</a>         }
+<a name="158" href="#158">158</a>         Writer writer = WriterFactory.newXmlWriter( baos );
+<a name="159" href="#159">159</a>         <strong class="jxr_keyword">try</strong>
+<a name="160" href="#160">160</a>         {
+<a name="161" href="#161">161</a>             Xpp3Dom dom = <strong class="jxr_keyword">new</strong> Xpp3Dom( <span class="jxr_string">"component-set"</span> );
+<a name="162" href="#162">162</a> 
+<a name="163" href="#163">163</a>             Xpp3Dom componentDom = <strong class="jxr_keyword">new</strong> Xpp3Dom( <span class="jxr_string">"components"</span> );
+<a name="164" href="#164">164</a> 
+<a name="165" href="#165">165</a>             dom.addChild( componentDom );
+<a name="166" href="#166">166</a> 
+<a name="167" href="#167">167</a>             <strong class="jxr_keyword">for</strong> ( Iterator i = components.values().iterator(); i.hasNext(); )
+<a name="168" href="#168">168</a>             {
+<a name="169" href="#169">169</a>                 Xpp3Dom component = (Xpp3Dom) i.next();
+<a name="170" href="#170">170</a>                 componentDom.addChild( component );
+<a name="171" href="#171">171</a>             }
 <a name="172" href="#172">172</a> 
-<a name="173" href="#173">173</a>         <strong class="jxr_keyword">return</strong> f;
-<a name="174" href="#174">174</a>     }
-<a name="175" href="#175">175</a> 
-<a name="176" href="#176">176</a> 
-<a name="177" href="#177">177</a> }
+<a name="173" href="#173">173</a>             Xpp3DomWriter.write( writer, dom );
+<a name="174" href="#174">174</a>         }
+<a name="175" href="#175">175</a>         <strong class="jxr_keyword">finally</strong>
+<a name="176" href="#176">176</a>         {
+<a name="177" href="#177">177</a>             IOUtil.close( writer );
+<a name="178" href="#178">178</a>         }
+<a name="179" href="#179">179</a> 
+<a name="180" href="#180">180</a>         <strong class="jxr_keyword">return</strong> baos.toByteArray();
+<a name="181" href="#181">181</a>     }
+<a name="182" href="#182">182</a> 
+<a name="183" href="#183">183</a>     <strong class="jxr_keyword">private</strong> String getRelocatedClass( String className, List relocators )
+<a name="184" href="#184">184</a>     {
+<a name="185" href="#185">185</a>         <strong class="jxr_keyword">if</strong> ( className != <strong class="jxr_keyword">null</strong> &amp;&amp; className.length() &gt; 0 &amp;&amp; relocators != <strong class="jxr_keyword">null</strong> )
+<a name="186" href="#186">186</a>         {
+<a name="187" href="#187">187</a>             <strong class="jxr_keyword">for</strong> ( Iterator it = relocators.iterator(); it.hasNext(); )
+<a name="188" href="#188">188</a>             {
+<a name="189" href="#189">189</a>                 <a href="../../../../../../org/apache/maven/plugins/shade/relocation/Relocator.html">Relocator</a> relocator = (Relocator) it.next();
+<a name="190" href="#190">190</a> 
+<a name="191" href="#191">191</a>                 <strong class="jxr_keyword">if</strong> ( relocator.canRelocateClass( className ) )
+<a name="192" href="#192">192</a>                 {
+<a name="193" href="#193">193</a>                     <strong class="jxr_keyword">return</strong> relocator.relocateClass( className );
+<a name="194" href="#194">194</a>                 }
+<a name="195" href="#195">195</a>             }
+<a name="196" href="#196">196</a>         }
+<a name="197" href="#197">197</a> 
+<a name="198" href="#198">198</a>         <strong class="jxr_keyword">return</strong> className;
+<a name="199" href="#199">199</a>     }
+<a name="200" href="#200">200</a> 
+<a name="201" href="#201">201</a>     <strong class="jxr_keyword">private</strong> <strong class="jxr_keyword">static</strong> String getValue( Xpp3Dom dom, String element )
+<a name="202" href="#202">202</a>     {
+<a name="203" href="#203">203</a>         Xpp3Dom child = dom.getChild( element );
+<a name="204" href="#204">204</a> 
+<a name="205" href="#205">205</a>         <strong class="jxr_keyword">return</strong> ( child != <strong class="jxr_keyword">null</strong> &amp;&amp; child.getValue() != <strong class="jxr_keyword">null</strong> ) ? child.getValue() : <span class="jxr_string">""</span>;
+<a name="206" href="#206">206</a>     }
+<a name="207" href="#207">207</a> 
+<a name="208" href="#208">208</a>     <strong class="jxr_keyword">private</strong> <strong class="jxr_keyword">static</strong> <strong class="jxr_keyword">void</strong> setValue( Xpp3Dom dom, String element, String value )
+<a name="209" href="#209">209</a>     {
+<a name="210" href="#210">210</a>         Xpp3Dom child = dom.getChild( element );
+<a name="211" href="#211">211</a> 
+<a name="212" href="#212">212</a>         <strong class="jxr_keyword">if</strong> ( child == <strong class="jxr_keyword">null</strong> || value == <strong class="jxr_keyword">null</strong> || value.length() &lt;= 0 )
+<a name="213" href="#213">213</a>         {
+<a name="214" href="#214">214</a>             <strong class="jxr_keyword">return</strong>;
+<a name="215" href="#215">215</a>         }
+<a name="216" href="#216">216</a> 
+<a name="217" href="#217">217</a>         child.setValue( value );
+<a name="218" href="#218">218</a>     }
+<a name="219" href="#219">219</a> 
+<a name="220" href="#220">220</a> }
 </pre>
 <hr/><div id="footer">This page was automatically generated by <a href="http://maven.apache.org/">Maven</a></div></body>
 </html>

Modified: websites/production/maventest/content/plugins/maven-shade-plugin-latest/xref/org/apache/maven/plugins/shade/resource/DontIncludeResourceTransformer.html
==============================================================================
--- websites/production/maventest/content/plugins/maven-shade-plugin-latest/xref/org/apache/maven/plugins/shade/resource/DontIncludeResourceTransformer.html (original)
+++ websites/production/maventest/content/plugins/maven-shade-plugin-latest/xref/org/apache/maven/plugins/shade/resource/DontIncludeResourceTransformer.html Tue May  8 13:22:51 2012
@@ -31,44 +31,45 @@
 <a name="21" href="#21">21</a>  
 <a name="22" href="#22">22</a>  <strong class="jxr_keyword">import</strong> java.io.IOException;
 <a name="23" href="#23">23</a>  <strong class="jxr_keyword">import</strong> java.io.InputStream;
-<a name="24" href="#24">24</a>  <strong class="jxr_keyword">import</strong> java.util.jar.JarOutputStream;
-<a name="25" href="#25">25</a>  
-<a name="26" href="#26">26</a>  <em class="jxr_javadoccomment">/**</em>
-<a name="27" href="#27">27</a>  <em class="jxr_javadoccomment"> * A resource processor that prevents the inclusion of an arbitrary</em>
-<a name="28" href="#28">28</a>  <em class="jxr_javadoccomment"> * resource into the shaded JAR.</em>
-<a name="29" href="#29">29</a>  <em class="jxr_javadoccomment"> *</em>
-<a name="30" href="#30">30</a>  <em class="jxr_javadoccomment"> */</em>
-<a name="31" href="#31">31</a>  <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">class</strong> <a href="../../../../../../org/apache/maven/plugins/shade/resource/DontIncludeResourceTransformer.html">DontIncludeResourceTransformer</a>
-<a name="32" href="#32">32</a>      implements <a href="../../../../../../org/apache/maven/plugins/shade/resource/ResourceTransformer.html">ResourceTransformer</a>
-<a name="33" href="#33">33</a>  {
-<a name="34" href="#34">34</a>      String resource;
-<a name="35" href="#35">35</a>  
-<a name="36" href="#36">36</a>      <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">boolean</strong> canTransformResource( String r )
-<a name="37" href="#37">37</a>      {
-<a name="38" href="#38">38</a>          <strong class="jxr_keyword">if</strong> ( r.endsWith( resource ) )
-<a name="39" href="#39">39</a>          {
-<a name="40" href="#40">40</a>              <strong class="jxr_keyword">return</strong> <strong class="jxr_keyword">true</strong>;
-<a name="41" href="#41">41</a>          }
-<a name="42" href="#42">42</a>  
-<a name="43" href="#43">43</a>          <strong class="jxr_keyword">return</strong> false;
-<a name="44" href="#44">44</a>      }
-<a name="45" href="#45">45</a>  
-<a name="46" href="#46">46</a>      <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> processResource( InputStream is )
-<a name="47" href="#47">47</a>          <strong class="jxr_keyword">throws</strong> IOException
-<a name="48" href="#48">48</a>      {
-<a name="49" href="#49">49</a>  
-<a name="50" href="#50">50</a>      }
-<a name="51" href="#51">51</a>  
-<a name="52" href="#52">52</a>      <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">boolean</strong> hasTransformedResource()
-<a name="53" href="#53">53</a>      {
-<a name="54" href="#54">54</a>          <strong class="jxr_keyword">return</strong> false;
-<a name="55" href="#55">55</a>      }
-<a name="56" href="#56">56</a>  
-<a name="57" href="#57">57</a>      <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> modifyOutputStream( JarOutputStream os )
-<a name="58" href="#58">58</a>          <strong class="jxr_keyword">throws</strong> IOException
-<a name="59" href="#59">59</a>      {
-<a name="60" href="#60">60</a>      }
-<a name="61" href="#61">61</a>  }
+<a name="24" href="#24">24</a>  <strong class="jxr_keyword">import</strong> java.util.List;
+<a name="25" href="#25">25</a>  <strong class="jxr_keyword">import</strong> java.util.jar.JarOutputStream;
+<a name="26" href="#26">26</a>  
+<a name="27" href="#27">27</a>  <em class="jxr_javadoccomment">/**</em>
+<a name="28" href="#28">28</a>  <em class="jxr_javadoccomment"> * A resource processor that prevents the inclusion of an arbitrary</em>
+<a name="29" href="#29">29</a>  <em class="jxr_javadoccomment"> * resource into the shaded JAR.</em>
+<a name="30" href="#30">30</a>  <em class="jxr_javadoccomment"> *</em>
+<a name="31" href="#31">31</a>  <em class="jxr_javadoccomment"> */</em>
+<a name="32" href="#32">32</a>  <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">class</strong> <a href="../../../../../../org/apache/maven/plugins/shade/resource/DontIncludeResourceTransformer.html">DontIncludeResourceTransformer</a>
+<a name="33" href="#33">33</a>      implements <a href="../../../../../../org/apache/maven/plugins/shade/resource/ResourceTransformer.html">ResourceTransformer</a>
+<a name="34" href="#34">34</a>  {
+<a name="35" href="#35">35</a>      String resource;
+<a name="36" href="#36">36</a>  
+<a name="37" href="#37">37</a>      <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">boolean</strong> canTransformResource( String r )
+<a name="38" href="#38">38</a>      {
+<a name="39" href="#39">39</a>          <strong class="jxr_keyword">if</strong> ( r.endsWith( resource ) )
+<a name="40" href="#40">40</a>          {
+<a name="41" href="#41">41</a>              <strong class="jxr_keyword">return</strong> <strong class="jxr_keyword">true</strong>;
+<a name="42" href="#42">42</a>          }
+<a name="43" href="#43">43</a>  
+<a name="44" href="#44">44</a>          <strong class="jxr_keyword">return</strong> false;
+<a name="45" href="#45">45</a>      }
+<a name="46" href="#46">46</a>  
+<a name="47" href="#47">47</a>      <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> processResource( String resource, InputStream is, List relocators )
+<a name="48" href="#48">48</a>          <strong class="jxr_keyword">throws</strong> IOException
+<a name="49" href="#49">49</a>      {
+<a name="50" href="#50">50</a>  
+<a name="51" href="#51">51</a>      }
+<a name="52" href="#52">52</a>  
+<a name="53" href="#53">53</a>      <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">boolean</strong> hasTransformedResource()
+<a name="54" href="#54">54</a>      {
+<a name="55" href="#55">55</a>          <strong class="jxr_keyword">return</strong> false;
+<a name="56" href="#56">56</a>      }
+<a name="57" href="#57">57</a>  
+<a name="58" href="#58">58</a>      <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> modifyOutputStream( JarOutputStream os )
+<a name="59" href="#59">59</a>          <strong class="jxr_keyword">throws</strong> IOException
+<a name="60" href="#60">60</a>      {
+<a name="61" href="#61">61</a>      }
+<a name="62" href="#62">62</a>  }
 </pre>
 <hr/><div id="footer">This page was automatically generated by <a href="http://maven.apache.org/">Maven</a></div></body>
 </html>

Modified: websites/production/maventest/content/plugins/maven-shade-plugin-latest/xref/org/apache/maven/plugins/shade/resource/IncludeResourceTransformer.html
==============================================================================
--- websites/production/maventest/content/plugins/maven-shade-plugin-latest/xref/org/apache/maven/plugins/shade/resource/IncludeResourceTransformer.html (original)
+++ websites/production/maventest/content/plugins/maven-shade-plugin-latest/xref/org/apache/maven/plugins/shade/resource/IncludeResourceTransformer.html Tue May  8 13:22:51 2012
@@ -33,47 +33,48 @@
 <a name="23" href="#23">23</a>  <strong class="jxr_keyword">import</strong> java.io.FileInputStream;
 <a name="24" href="#24">24</a>  <strong class="jxr_keyword">import</strong> java.io.IOException;
 <a name="25" href="#25">25</a>  <strong class="jxr_keyword">import</strong> java.io.InputStream;
-<a name="26" href="#26">26</a>  <strong class="jxr_keyword">import</strong> java.util.jar.JarEntry;
-<a name="27" href="#27">27</a>  <strong class="jxr_keyword">import</strong> java.util.jar.JarOutputStream;
-<a name="28" href="#28">28</a>  
-<a name="29" href="#29">29</a>  <strong class="jxr_keyword">import</strong> org.codehaus.plexus.util.IOUtil;
-<a name="30" href="#30">30</a>  
-<a name="31" href="#31">31</a>  <em class="jxr_javadoccomment">/**</em>
-<a name="32" href="#32">32</a>  <em class="jxr_javadoccomment"> * A resource processor that allows the addition of an arbitrary file</em>
-<a name="33" href="#33">33</a>  <em class="jxr_javadoccomment"> * content into the shaded JAR.</em>
-<a name="34" href="#34">34</a>  <em class="jxr_javadoccomment"> */</em>
-<a name="35" href="#35">35</a>  <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">class</strong> <a href="../../../../../../org/apache/maven/plugins/shade/resource/IncludeResourceTransformer.html">IncludeResourceTransformer</a>
-<a name="36" href="#36">36</a>      implements <a href="../../../../../../org/apache/maven/plugins/shade/resource/ResourceTransformer.html">ResourceTransformer</a>
-<a name="37" href="#37">37</a>  {
-<a name="38" href="#38">38</a>      File file;
-<a name="39" href="#39">39</a>      String resource;
-<a name="40" href="#40">40</a>  
-<a name="41" href="#41">41</a>      <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">boolean</strong> canTransformResource( String r )
-<a name="42" href="#42">42</a>      {
-<a name="43" href="#43">43</a>          <strong class="jxr_keyword">return</strong> false;
-<a name="44" href="#44">44</a>      }
-<a name="45" href="#45">45</a>  
-<a name="46" href="#46">46</a>      <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> processResource( InputStream is )
-<a name="47" href="#47">47</a>          <strong class="jxr_keyword">throws</strong> IOException
-<a name="48" href="#48">48</a>      {
-<a name="49" href="#49">49</a>  
-<a name="50" href="#50">50</a>      }
-<a name="51" href="#51">51</a>  
-<a name="52" href="#52">52</a>      <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">boolean</strong> hasTransformedResource()
-<a name="53" href="#53">53</a>      {
-<a name="54" href="#54">54</a>          <strong class="jxr_keyword">return</strong> file != <strong class="jxr_keyword">null</strong> ? file.exists() : false;
-<a name="55" href="#55">55</a>      }
-<a name="56" href="#56">56</a>  
-<a name="57" href="#57">57</a>      <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> modifyOutputStream( JarOutputStream jos )
-<a name="58" href="#58">58</a>          <strong class="jxr_keyword">throws</strong> IOException
-<a name="59" href="#59">59</a>      {
-<a name="60" href="#60">60</a>          jos.putNextEntry( <strong class="jxr_keyword">new</strong> JarEntry( resource ) );
-<a name="61" href="#61">61</a>  
-<a name="62" href="#62">62</a>          InputStream in = <strong class="jxr_keyword">new</strong> FileInputStream( file );
-<a name="63" href="#63">63</a>          IOUtil.copy( in, jos );
-<a name="64" href="#64">64</a>          in.close();
-<a name="65" href="#65">65</a>      }
-<a name="66" href="#66">66</a>  }
+<a name="26" href="#26">26</a>  <strong class="jxr_keyword">import</strong> java.util.List;
+<a name="27" href="#27">27</a>  <strong class="jxr_keyword">import</strong> java.util.jar.JarEntry;
+<a name="28" href="#28">28</a>  <strong class="jxr_keyword">import</strong> java.util.jar.JarOutputStream;
+<a name="29" href="#29">29</a>  
+<a name="30" href="#30">30</a>  <strong class="jxr_keyword">import</strong> org.codehaus.plexus.util.IOUtil;
+<a name="31" href="#31">31</a>  
+<a name="32" href="#32">32</a>  <em class="jxr_javadoccomment">/**</em>
+<a name="33" href="#33">33</a>  <em class="jxr_javadoccomment"> * A resource processor that allows the addition of an arbitrary file</em>
+<a name="34" href="#34">34</a>  <em class="jxr_javadoccomment"> * content into the shaded JAR.</em>
+<a name="35" href="#35">35</a>  <em class="jxr_javadoccomment"> */</em>
+<a name="36" href="#36">36</a>  <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">class</strong> <a href="../../../../../../org/apache/maven/plugins/shade/resource/IncludeResourceTransformer.html">IncludeResourceTransformer</a>
+<a name="37" href="#37">37</a>      implements <a href="../../../../../../org/apache/maven/plugins/shade/resource/ResourceTransformer.html">ResourceTransformer</a>
+<a name="38" href="#38">38</a>  {
+<a name="39" href="#39">39</a>      File file;
+<a name="40" href="#40">40</a>      String resource;
+<a name="41" href="#41">41</a>  
+<a name="42" href="#42">42</a>      <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">boolean</strong> canTransformResource( String r )
+<a name="43" href="#43">43</a>      {
+<a name="44" href="#44">44</a>          <strong class="jxr_keyword">return</strong> false;
+<a name="45" href="#45">45</a>      }
+<a name="46" href="#46">46</a>  
+<a name="47" href="#47">47</a>      <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> processResource( String resource, InputStream is, List relocators )
+<a name="48" href="#48">48</a>          <strong class="jxr_keyword">throws</strong> IOException
+<a name="49" href="#49">49</a>      {
+<a name="50" href="#50">50</a>  
+<a name="51" href="#51">51</a>      }
+<a name="52" href="#52">52</a>  
+<a name="53" href="#53">53</a>      <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">boolean</strong> hasTransformedResource()
+<a name="54" href="#54">54</a>      {
+<a name="55" href="#55">55</a>          <strong class="jxr_keyword">return</strong> file != <strong class="jxr_keyword">null</strong> ? file.exists() : false;
+<a name="56" href="#56">56</a>      }
+<a name="57" href="#57">57</a>  
+<a name="58" href="#58">58</a>      <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> modifyOutputStream( JarOutputStream jos )
+<a name="59" href="#59">59</a>          <strong class="jxr_keyword">throws</strong> IOException
+<a name="60" href="#60">60</a>      {
+<a name="61" href="#61">61</a>          jos.putNextEntry( <strong class="jxr_keyword">new</strong> JarEntry( resource ) );
+<a name="62" href="#62">62</a>  
+<a name="63" href="#63">63</a>          InputStream in = <strong class="jxr_keyword">new</strong> FileInputStream( file );
+<a name="64" href="#64">64</a>          IOUtil.copy( in, jos );
+<a name="65" href="#65">65</a>          in.close();
+<a name="66" href="#66">66</a>      }
+<a name="67" href="#67">67</a>  }
 </pre>
 <hr/><div id="footer">This page was automatically generated by <a href="http://maven.apache.org/">Maven</a></div></body>
 </html>

Modified: websites/production/maventest/content/plugins/maven-shade-plugin-latest/xref/org/apache/maven/plugins/shade/resource/ManifestResourceTransformer.html
==============================================================================
--- websites/production/maventest/content/plugins/maven-shade-plugin-latest/xref/org/apache/maven/plugins/shade/resource/ManifestResourceTransformer.html (original)
+++ websites/production/maventest/content/plugins/maven-shade-plugin-latest/xref/org/apache/maven/plugins/shade/resource/ManifestResourceTransformer.html Tue May  8 13:22:51 2012
@@ -32,93 +32,94 @@
 <a name="22" href="#22">22</a>  <strong class="jxr_keyword">import</strong> java.io.IOException;
 <a name="23" href="#23">23</a>  <strong class="jxr_keyword">import</strong> java.io.InputStream;
 <a name="24" href="#24">24</a>  <strong class="jxr_keyword">import</strong> java.util.Iterator;
-<a name="25" href="#25">25</a>  <strong class="jxr_keyword">import</strong> java.util.Map;
-<a name="26" href="#26">26</a>  <strong class="jxr_keyword">import</strong> java.util.jar.Attributes;
-<a name="27" href="#27">27</a>  <strong class="jxr_keyword">import</strong> java.util.jar.JarEntry;
-<a name="28" href="#28">28</a>  <strong class="jxr_keyword">import</strong> java.util.jar.JarOutputStream;
-<a name="29" href="#29">29</a>  <strong class="jxr_keyword">import</strong> java.util.jar.Manifest;
-<a name="30" href="#30">30</a>  
-<a name="31" href="#31">31</a>  <strong class="jxr_keyword">import</strong> org.codehaus.plexus.util.IOUtil;
-<a name="32" href="#32">32</a>  
-<a name="33" href="#33">33</a>  <em class="jxr_javadoccomment">/**</em>
-<a name="34" href="#34">34</a>  <em class="jxr_javadoccomment"> * A resource processor that allows the arbitrary addition of attributes to</em>
-<a name="35" href="#35">35</a>  <em class="jxr_javadoccomment"> * the first MANIFEST.MF that is found in the set of JARs being processed, or</em>
-<a name="36" href="#36">36</a>  <em class="jxr_javadoccomment"> * to a newly created manifest for the shaded JAR.</em>
-<a name="37" href="#37">37</a>  <em class="jxr_javadoccomment"> *</em>
-<a name="38" href="#38">38</a>  <em class="jxr_javadoccomment"> * @author Jason van Zyl</em>
-<a name="39" href="#39">39</a>  <em class="jxr_javadoccomment"> * @since 1.2</em>
-<a name="40" href="#40">40</a>  <em class="jxr_javadoccomment"> */</em>
-<a name="41" href="#41">41</a>  <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">class</strong> <a href="../../../../../../org/apache/maven/plugins/shade/resource/ManifestResourceTransformer.html">ManifestResourceTransformer</a>
-<a name="42" href="#42">42</a>      implements <a href="../../../../../../org/apache/maven/plugins/shade/resource/ResourceTransformer.html">ResourceTransformer</a>
-<a name="43" href="#43">43</a>  {
-<a name="44" href="#44">44</a>      <strong class="jxr_keyword">private</strong> <strong class="jxr_keyword">static</strong> <strong class="jxr_keyword">final</strong> String MANIFEST_PATH = <span class="jxr_string">"META-INF/MANIFEST.MF"</span>;
-<a name="45" href="#45">45</a>  
-<a name="46" href="#46">46</a>      <em class="jxr_comment">// Configuration</em>
-<a name="47" href="#47">47</a>      <strong class="jxr_keyword">private</strong> String mainClass;
-<a name="48" href="#48">48</a>      <strong class="jxr_keyword">private</strong> Map manifestEntries;
-<a name="49" href="#49">49</a>  
-<a name="50" href="#50">50</a>      <em class="jxr_comment">// Fields</em>
-<a name="51" href="#51">51</a>      <strong class="jxr_keyword">private</strong> <strong class="jxr_keyword">boolean</strong> manifestDiscovered;
-<a name="52" href="#52">52</a>      <strong class="jxr_keyword">private</strong> Manifest manifest;
-<a name="53" href="#53">53</a>  
-<a name="54" href="#54">54</a>      <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">boolean</strong> canTransformResource( String resource )
-<a name="55" href="#55">55</a>      {
-<a name="56" href="#56">56</a>          <strong class="jxr_keyword">if</strong> ( MANIFEST_PATH.equalsIgnoreCase( resource ) )
-<a name="57" href="#57">57</a>          {
-<a name="58" href="#58">58</a>              <strong class="jxr_keyword">return</strong> <strong class="jxr_keyword">true</strong>;
-<a name="59" href="#59">59</a>          }
-<a name="60" href="#60">60</a>  
-<a name="61" href="#61">61</a>          <strong class="jxr_keyword">return</strong> false;
-<a name="62" href="#62">62</a>      }
-<a name="63" href="#63">63</a>  
-<a name="64" href="#64">64</a>      <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> processResource( InputStream is )
-<a name="65" href="#65">65</a>          <strong class="jxr_keyword">throws</strong> IOException
-<a name="66" href="#66">66</a>      {
-<a name="67" href="#67">67</a>          <em class="jxr_comment">// We just want to take the first manifest we come across as that's our project's manifest. This is the behavior</em>
-<a name="68" href="#68">68</a>          <em class="jxr_comment">// now which is situational at best. Right now there is no context passed in with the processing so we cannot</em>
-<a name="69" href="#69">69</a>          <em class="jxr_comment">// tell what artifact is being processed.</em>
-<a name="70" href="#70">70</a>          <strong class="jxr_keyword">if</strong> ( !manifestDiscovered )
-<a name="71" href="#71">71</a>          {
-<a name="72" href="#72">72</a>              manifest = <strong class="jxr_keyword">new</strong> Manifest( is );
-<a name="73" href="#73">73</a>              manifestDiscovered = <strong class="jxr_keyword">true</strong>;
-<a name="74" href="#74">74</a>              IOUtil.close( is );
-<a name="75" href="#75">75</a>          }
-<a name="76" href="#76">76</a>      }
-<a name="77" href="#77">77</a>  
-<a name="78" href="#78">78</a>      <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">boolean</strong> hasTransformedResource()
-<a name="79" href="#79">79</a>      {
-<a name="80" href="#80">80</a>          <strong class="jxr_keyword">return</strong> <strong class="jxr_keyword">true</strong>;
-<a name="81" href="#81">81</a>      }
-<a name="82" href="#82">82</a>  
-<a name="83" href="#83">83</a>      <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> modifyOutputStream( JarOutputStream jos )
-<a name="84" href="#84">84</a>          <strong class="jxr_keyword">throws</strong> IOException
-<a name="85" href="#85">85</a>      {
-<a name="86" href="#86">86</a>          <em class="jxr_comment">// If we didn't find a manifest, then let's create one.</em>
-<a name="87" href="#87">87</a>          <strong class="jxr_keyword">if</strong> ( manifest == <strong class="jxr_keyword">null</strong> )
-<a name="88" href="#88">88</a>          {
-<a name="89" href="#89">89</a>              manifest = <strong class="jxr_keyword">new</strong> Manifest();
-<a name="90" href="#90">90</a>          }
-<a name="91" href="#91">91</a>  
-<a name="92" href="#92">92</a>          Attributes attributes = manifest.getMainAttributes();
-<a name="93" href="#93">93</a>  
-<a name="94" href="#94">94</a>          <strong class="jxr_keyword">if</strong> ( mainClass != <strong class="jxr_keyword">null</strong> )
-<a name="95" href="#95">95</a>          {
-<a name="96" href="#96">96</a>              attributes.put( Attributes.Name.MAIN_CLASS, mainClass );
-<a name="97" href="#97">97</a>          }
-<a name="98" href="#98">98</a>  
-<a name="99" href="#99">99</a>          <strong class="jxr_keyword">if</strong> ( manifestEntries != <strong class="jxr_keyword">null</strong> )
-<a name="100" href="#100">100</a>         {
-<a name="101" href="#101">101</a>             <strong class="jxr_keyword">for</strong> ( Iterator i = manifestEntries.keySet().iterator(); i.hasNext(); )
-<a name="102" href="#102">102</a>             {
-<a name="103" href="#103">103</a>                 String key = (String) i.next();
-<a name="104" href="#104">104</a>                 attributes.put( <strong class="jxr_keyword">new</strong> Attributes.Name( key ), manifestEntries.get( key ) );
-<a name="105" href="#105">105</a>             }
-<a name="106" href="#106">106</a>         }
-<a name="107" href="#107">107</a> 
-<a name="108" href="#108">108</a>         jos.putNextEntry( <strong class="jxr_keyword">new</strong> JarEntry( MANIFEST_PATH ) );
-<a name="109" href="#109">109</a>         manifest.write( jos );
-<a name="110" href="#110">110</a>     }
-<a name="111" href="#111">111</a> }
+<a name="25" href="#25">25</a>  <strong class="jxr_keyword">import</strong> java.util.List;
+<a name="26" href="#26">26</a>  <strong class="jxr_keyword">import</strong> java.util.Map;
+<a name="27" href="#27">27</a>  <strong class="jxr_keyword">import</strong> java.util.jar.Attributes;
+<a name="28" href="#28">28</a>  <strong class="jxr_keyword">import</strong> java.util.jar.JarEntry;
+<a name="29" href="#29">29</a>  <strong class="jxr_keyword">import</strong> java.util.jar.JarOutputStream;
+<a name="30" href="#30">30</a>  <strong class="jxr_keyword">import</strong> java.util.jar.Manifest;
+<a name="31" href="#31">31</a>  
+<a name="32" href="#32">32</a>  <strong class="jxr_keyword">import</strong> org.codehaus.plexus.util.IOUtil;
+<a name="33" href="#33">33</a>  
+<a name="34" href="#34">34</a>  <em class="jxr_javadoccomment">/**</em>
+<a name="35" href="#35">35</a>  <em class="jxr_javadoccomment"> * A resource processor that allows the arbitrary addition of attributes to</em>
+<a name="36" href="#36">36</a>  <em class="jxr_javadoccomment"> * the first MANIFEST.MF that is found in the set of JARs being processed, or</em>
+<a name="37" href="#37">37</a>  <em class="jxr_javadoccomment"> * to a newly created manifest for the shaded JAR.</em>
+<a name="38" href="#38">38</a>  <em class="jxr_javadoccomment"> *</em>
+<a name="39" href="#39">39</a>  <em class="jxr_javadoccomment"> * @author Jason van Zyl</em>
+<a name="40" href="#40">40</a>  <em class="jxr_javadoccomment"> * @since 1.2</em>
+<a name="41" href="#41">41</a>  <em class="jxr_javadoccomment"> */</em>
+<a name="42" href="#42">42</a>  <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">class</strong> <a href="../../../../../../org/apache/maven/plugins/shade/resource/ManifestResourceTransformer.html">ManifestResourceTransformer</a>
+<a name="43" href="#43">43</a>      implements <a href="../../../../../../org/apache/maven/plugins/shade/resource/ResourceTransformer.html">ResourceTransformer</a>
+<a name="44" href="#44">44</a>  {
+<a name="45" href="#45">45</a>      <strong class="jxr_keyword">private</strong> <strong class="jxr_keyword">static</strong> <strong class="jxr_keyword">final</strong> String MANIFEST_PATH = <span class="jxr_string">"META-INF/MANIFEST.MF"</span>;
+<a name="46" href="#46">46</a>  
+<a name="47" href="#47">47</a>      <em class="jxr_comment">// Configuration</em>
+<a name="48" href="#48">48</a>      <strong class="jxr_keyword">private</strong> String mainClass;
+<a name="49" href="#49">49</a>      <strong class="jxr_keyword">private</strong> Map manifestEntries;
+<a name="50" href="#50">50</a>  
+<a name="51" href="#51">51</a>      <em class="jxr_comment">// Fields</em>
+<a name="52" href="#52">52</a>      <strong class="jxr_keyword">private</strong> <strong class="jxr_keyword">boolean</strong> manifestDiscovered;
+<a name="53" href="#53">53</a>      <strong class="jxr_keyword">private</strong> Manifest manifest;
+<a name="54" href="#54">54</a>  
+<a name="55" href="#55">55</a>      <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">boolean</strong> canTransformResource( String resource )
+<a name="56" href="#56">56</a>      {
+<a name="57" href="#57">57</a>          <strong class="jxr_keyword">if</strong> ( MANIFEST_PATH.equalsIgnoreCase( resource ) )
+<a name="58" href="#58">58</a>          {
+<a name="59" href="#59">59</a>              <strong class="jxr_keyword">return</strong> <strong class="jxr_keyword">true</strong>;
+<a name="60" href="#60">60</a>          }
+<a name="61" href="#61">61</a>  
+<a name="62" href="#62">62</a>          <strong class="jxr_keyword">return</strong> false;
+<a name="63" href="#63">63</a>      }
+<a name="64" href="#64">64</a>  
+<a name="65" href="#65">65</a>      <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> processResource( String resource, InputStream is, List relocators )
+<a name="66" href="#66">66</a>          <strong class="jxr_keyword">throws</strong> IOException
+<a name="67" href="#67">67</a>      {
+<a name="68" href="#68">68</a>          <em class="jxr_comment">// We just want to take the first manifest we come across as that's our project's manifest. This is the behavior</em>
+<a name="69" href="#69">69</a>          <em class="jxr_comment">// now which is situational at best. Right now there is no context passed in with the processing so we cannot</em>
+<a name="70" href="#70">70</a>          <em class="jxr_comment">// tell what artifact is being processed.</em>
+<a name="71" href="#71">71</a>          <strong class="jxr_keyword">if</strong> ( !manifestDiscovered )
+<a name="72" href="#72">72</a>          {
+<a name="73" href="#73">73</a>              manifest = <strong class="jxr_keyword">new</strong> Manifest( is );
+<a name="74" href="#74">74</a>              manifestDiscovered = <strong class="jxr_keyword">true</strong>;
+<a name="75" href="#75">75</a>              IOUtil.close( is );
+<a name="76" href="#76">76</a>          }
+<a name="77" href="#77">77</a>      }
+<a name="78" href="#78">78</a>  
+<a name="79" href="#79">79</a>      <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">boolean</strong> hasTransformedResource()
+<a name="80" href="#80">80</a>      {
+<a name="81" href="#81">81</a>          <strong class="jxr_keyword">return</strong> <strong class="jxr_keyword">true</strong>;
+<a name="82" href="#82">82</a>      }
+<a name="83" href="#83">83</a>  
+<a name="84" href="#84">84</a>      <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> modifyOutputStream( JarOutputStream jos )
+<a name="85" href="#85">85</a>          <strong class="jxr_keyword">throws</strong> IOException
+<a name="86" href="#86">86</a>      {
+<a name="87" href="#87">87</a>          <em class="jxr_comment">// If we didn't find a manifest, then let's create one.</em>
+<a name="88" href="#88">88</a>          <strong class="jxr_keyword">if</strong> ( manifest == <strong class="jxr_keyword">null</strong> )
+<a name="89" href="#89">89</a>          {
+<a name="90" href="#90">90</a>              manifest = <strong class="jxr_keyword">new</strong> Manifest();
+<a name="91" href="#91">91</a>          }
+<a name="92" href="#92">92</a>  
+<a name="93" href="#93">93</a>          Attributes attributes = manifest.getMainAttributes();
+<a name="94" href="#94">94</a>  
+<a name="95" href="#95">95</a>          <strong class="jxr_keyword">if</strong> ( mainClass != <strong class="jxr_keyword">null</strong> )
+<a name="96" href="#96">96</a>          {
+<a name="97" href="#97">97</a>              attributes.put( Attributes.Name.MAIN_CLASS, mainClass );
+<a name="98" href="#98">98</a>          }
+<a name="99" href="#99">99</a>  
+<a name="100" href="#100">100</a>         <strong class="jxr_keyword">if</strong> ( manifestEntries != <strong class="jxr_keyword">null</strong> )
+<a name="101" href="#101">101</a>         {
+<a name="102" href="#102">102</a>             <strong class="jxr_keyword">for</strong> ( Iterator i = manifestEntries.keySet().iterator(); i.hasNext(); )
+<a name="103" href="#103">103</a>             {
+<a name="104" href="#104">104</a>                 String key = (String) i.next();
+<a name="105" href="#105">105</a>                 attributes.put( <strong class="jxr_keyword">new</strong> Attributes.Name( key ), manifestEntries.get( key ) );
+<a name="106" href="#106">106</a>             }
+<a name="107" href="#107">107</a>         }
+<a name="108" href="#108">108</a> 
+<a name="109" href="#109">109</a>         jos.putNextEntry( <strong class="jxr_keyword">new</strong> JarEntry( MANIFEST_PATH ) );
+<a name="110" href="#110">110</a>         manifest.write( jos );
+<a name="111" href="#111">111</a>     }
+<a name="112" href="#112">112</a> }
 </pre>
 <hr/><div id="footer">This page was automatically generated by <a href="http://maven.apache.org/">Maven</a></div></body>
 </html>

Modified: websites/production/maventest/content/plugins/maven-shade-plugin-latest/xref/org/apache/maven/plugins/shade/resource/ResourceTransformer.html
==============================================================================
--- websites/production/maventest/content/plugins/maven-shade-plugin-latest/xref/org/apache/maven/plugins/shade/resource/ResourceTransformer.html (original)
+++ websites/production/maventest/content/plugins/maven-shade-plugin-latest/xref/org/apache/maven/plugins/shade/resource/ResourceTransformer.html Tue May  8 13:22:51 2012
@@ -31,21 +31,22 @@
 <a name="21" href="#21">21</a>  
 <a name="22" href="#22">22</a>  <strong class="jxr_keyword">import</strong> java.io.IOException;
 <a name="23" href="#23">23</a>  <strong class="jxr_keyword">import</strong> java.io.InputStream;
-<a name="24" href="#24">24</a>  <strong class="jxr_keyword">import</strong> java.util.jar.JarOutputStream;
-<a name="25" href="#25">25</a>  
-<a name="26" href="#26">26</a>  <em class="jxr_javadoccomment">/**</em><em class="jxr_javadoccomment"> @author Jason van Zyl */</em>
-<a name="27" href="#27">27</a>  <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">interface</strong> <a href="../../../../../../org/apache/maven/plugins/shade/resource/ResourceTransformer.html">ResourceTransformer</a>
-<a name="28" href="#28">28</a>  {
-<a name="29" href="#29">29</a>      <strong class="jxr_keyword">boolean</strong> canTransformResource( String resource );
-<a name="30" href="#30">30</a>  
-<a name="31" href="#31">31</a>      <strong class="jxr_keyword">void</strong> processResource( InputStream is )
-<a name="32" href="#32">32</a>          <strong class="jxr_keyword">throws</strong> IOException;
-<a name="33" href="#33">33</a>  
-<a name="34" href="#34">34</a>      <strong class="jxr_keyword">boolean</strong> hasTransformedResource();
-<a name="35" href="#35">35</a>  
-<a name="36" href="#36">36</a>      <strong class="jxr_keyword">void</strong> modifyOutputStream( JarOutputStream os )
-<a name="37" href="#37">37</a>          <strong class="jxr_keyword">throws</strong> IOException;
-<a name="38" href="#38">38</a>  }
+<a name="24" href="#24">24</a>  <strong class="jxr_keyword">import</strong> java.util.List;
+<a name="25" href="#25">25</a>  <strong class="jxr_keyword">import</strong> java.util.jar.JarOutputStream;
+<a name="26" href="#26">26</a>  
+<a name="27" href="#27">27</a>  <em class="jxr_javadoccomment">/**</em><em class="jxr_javadoccomment"> @author Jason van Zyl */</em>
+<a name="28" href="#28">28</a>  <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">interface</strong> <a href="../../../../../../org/apache/maven/plugins/shade/resource/ResourceTransformer.html">ResourceTransformer</a>
+<a name="29" href="#29">29</a>  {
+<a name="30" href="#30">30</a>      <strong class="jxr_keyword">boolean</strong> canTransformResource( String resource );
+<a name="31" href="#31">31</a>  
+<a name="32" href="#32">32</a>      <strong class="jxr_keyword">void</strong> processResource( String resource, InputStream is, List relocators )
+<a name="33" href="#33">33</a>          <strong class="jxr_keyword">throws</strong> IOException;
+<a name="34" href="#34">34</a>  
+<a name="35" href="#35">35</a>      <strong class="jxr_keyword">boolean</strong> hasTransformedResource();
+<a name="36" href="#36">36</a>  
+<a name="37" href="#37">37</a>      <strong class="jxr_keyword">void</strong> modifyOutputStream( JarOutputStream os )
+<a name="38" href="#38">38</a>          <strong class="jxr_keyword">throws</strong> IOException;
+<a name="39" href="#39">39</a>  }
 </pre>
 <hr/><div id="footer">This page was automatically generated by <a href="http://maven.apache.org/">Maven</a></div></body>
 </html>

Modified: websites/production/maventest/content/plugins/maven-shade-plugin-latest/xref/org/apache/maven/plugins/shade/resource/ServicesResourceTransformer.html
==============================================================================
--- websites/production/maventest/content/plugins/maven-shade-plugin-latest/xref/org/apache/maven/plugins/shade/resource/ServicesResourceTransformer.html (original)
+++ websites/production/maventest/content/plugins/maven-shade-plugin-latest/xref/org/apache/maven/plugins/shade/resource/ServicesResourceTransformer.html Tue May  8 13:22:51 2012
@@ -35,73 +35,74 @@
 <a name="25" href="#25">25</a>  <strong class="jxr_keyword">import</strong> java.io.InputStream;
 <a name="26" href="#26">26</a>  <strong class="jxr_keyword">import</strong> java.util.HashMap;
 <a name="27" href="#27">27</a>  <strong class="jxr_keyword">import</strong> java.util.Iterator;
-<a name="28" href="#28">28</a>  <strong class="jxr_keyword">import</strong> java.util.Map;
-<a name="29" href="#29">29</a>  <strong class="jxr_keyword">import</strong> java.util.jar.JarEntry;
-<a name="30" href="#30">30</a>  <strong class="jxr_keyword">import</strong> java.util.jar.JarOutputStream;
-<a name="31" href="#31">31</a>  
-<a name="32" href="#32">32</a>  <strong class="jxr_keyword">import</strong> org.codehaus.plexus.util.IOUtil;
-<a name="33" href="#33">33</a>  
-<a name="34" href="#34">34</a>  <em class="jxr_javadoccomment">/**</em>
-<a name="35" href="#35">35</a>  <em class="jxr_javadoccomment"> * Resources transformer that appends entries in META-INF/services resources into</em>
-<a name="36" href="#36">36</a>  <em class="jxr_javadoccomment"> * a single resource. For example, if there are several META-INF/services/org.apache.maven.project.ProjectBuilder</em>
-<a name="37" href="#37">37</a>  <em class="jxr_javadoccomment"> * resources spread across many JARs the individual entries will all be concatenated into a single</em>
-<a name="38" href="#38">38</a>  <em class="jxr_javadoccomment"> * META-INF/services/org.apache.maven.project.ProjectBuilder resource packaged into the resultant JAR produced</em>
-<a name="39" href="#39">39</a>  <em class="jxr_javadoccomment"> * by the shading process.</em>
-<a name="40" href="#40">40</a>  <em class="jxr_javadoccomment"> *</em>
-<a name="41" href="#41">41</a>  <em class="jxr_javadoccomment"> * @author jvanzyl</em>
-<a name="42" href="#42">42</a>  <em class="jxr_javadoccomment"> */</em>
-<a name="43" href="#43">43</a>  <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">class</strong> <a href="../../../../../../org/apache/maven/plugins/shade/resource/ServicesResourceTransformer.html">ServicesResourceTransformer</a>
-<a name="44" href="#44">44</a>      implements <a href="../../../../../../org/apache/maven/plugins/shade/resource/ResourceTransformer.html">ResourceTransformer</a>
-<a name="45" href="#45">45</a>  {
-<a name="46" href="#46">46</a>      <strong class="jxr_keyword">private</strong> <strong class="jxr_keyword">static</strong> <strong class="jxr_keyword">final</strong> String SERVICES_PATH = <span class="jxr_string">"META-INF/services"</span>;
-<a name="47" href="#47">47</a>  
-<a name="48" href="#48">48</a>      <strong class="jxr_keyword">private</strong> ByteArrayOutputStream data;
-<a name="49" href="#49">49</a>  
-<a name="50" href="#50">50</a>      <strong class="jxr_keyword">private</strong> Map serviceEntries = <strong class="jxr_keyword">new</strong> HashMap();
-<a name="51" href="#51">51</a>  
-<a name="52" href="#52">52</a>      <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">boolean</strong> canTransformResource( String resource )
-<a name="53" href="#53">53</a>      {
-<a name="54" href="#54">54</a>          <strong class="jxr_keyword">if</strong> ( resource.startsWith( SERVICES_PATH ) )
-<a name="55" href="#55">55</a>          {
-<a name="56" href="#56">56</a>              data = (ByteArrayOutputStream) serviceEntries.get( resource );
-<a name="57" href="#57">57</a>  
-<a name="58" href="#58">58</a>              <strong class="jxr_keyword">if</strong> ( data == <strong class="jxr_keyword">null</strong> )
-<a name="59" href="#59">59</a>              {
-<a name="60" href="#60">60</a>                  data = <strong class="jxr_keyword">new</strong> ByteArrayOutputStream();
-<a name="61" href="#61">61</a>                  serviceEntries.put( resource, data );
-<a name="62" href="#62">62</a>              }
-<a name="63" href="#63">63</a>  
-<a name="64" href="#64">64</a>              <strong class="jxr_keyword">return</strong> <strong class="jxr_keyword">true</strong>;
-<a name="65" href="#65">65</a>          }
-<a name="66" href="#66">66</a>  
-<a name="67" href="#67">67</a>          <strong class="jxr_keyword">return</strong> false;
-<a name="68" href="#68">68</a>      }
-<a name="69" href="#69">69</a>  
-<a name="70" href="#70">70</a>      <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> processResource( InputStream is )
-<a name="71" href="#71">71</a>          <strong class="jxr_keyword">throws</strong> IOException
-<a name="72" href="#72">72</a>      {
-<a name="73" href="#73">73</a>          IOUtil.copy( is, data );
-<a name="74" href="#74">74</a>          is.close();
-<a name="75" href="#75">75</a>      }
-<a name="76" href="#76">76</a>  
-<a name="77" href="#77">77</a>      <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">boolean</strong> hasTransformedResource()
-<a name="78" href="#78">78</a>      {
-<a name="79" href="#79">79</a>          <strong class="jxr_keyword">return</strong> serviceEntries.size() &gt; 0;
-<a name="80" href="#80">80</a>      }
-<a name="81" href="#81">81</a>  
-<a name="82" href="#82">82</a>      <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> modifyOutputStream( JarOutputStream jos )
-<a name="83" href="#83">83</a>          <strong class="jxr_keyword">throws</strong> IOException
-<a name="84" href="#84">84</a>      {
-<a name="85" href="#85">85</a>          <strong class="jxr_keyword">for</strong> ( Iterator i = serviceEntries.keySet().iterator(); i.hasNext(); )
-<a name="86" href="#86">86</a>          {
-<a name="87" href="#87">87</a>              String key = (String) i.next();
-<a name="88" href="#88">88</a>              ByteArrayOutputStream data = (ByteArrayOutputStream) serviceEntries.get( key );
-<a name="89" href="#89">89</a>              jos.putNextEntry( <strong class="jxr_keyword">new</strong> JarEntry( key ) );
-<a name="90" href="#90">90</a>              IOUtil.copy( <strong class="jxr_keyword">new</strong> ByteArrayInputStream( data.toByteArray() ), jos );
-<a name="91" href="#91">91</a>              data.reset();
-<a name="92" href="#92">92</a>          }
-<a name="93" href="#93">93</a>      }
-<a name="94" href="#94">94</a>  }
+<a name="28" href="#28">28</a>  <strong class="jxr_keyword">import</strong> java.util.List;
+<a name="29" href="#29">29</a>  <strong class="jxr_keyword">import</strong> java.util.Map;
+<a name="30" href="#30">30</a>  <strong class="jxr_keyword">import</strong> java.util.jar.JarEntry;
+<a name="31" href="#31">31</a>  <strong class="jxr_keyword">import</strong> java.util.jar.JarOutputStream;
+<a name="32" href="#32">32</a>  
+<a name="33" href="#33">33</a>  <strong class="jxr_keyword">import</strong> org.codehaus.plexus.util.IOUtil;
+<a name="34" href="#34">34</a>  
+<a name="35" href="#35">35</a>  <em class="jxr_javadoccomment">/**</em>
+<a name="36" href="#36">36</a>  <em class="jxr_javadoccomment"> * Resources transformer that appends entries in META-INF/services resources into</em>
+<a name="37" href="#37">37</a>  <em class="jxr_javadoccomment"> * a single resource. For example, if there are several META-INF/services/org.apache.maven.project.ProjectBuilder</em>
+<a name="38" href="#38">38</a>  <em class="jxr_javadoccomment"> * resources spread across many JARs the individual entries will all be concatenated into a single</em>
+<a name="39" href="#39">39</a>  <em class="jxr_javadoccomment"> * META-INF/services/org.apache.maven.project.ProjectBuilder resource packaged into the resultant JAR produced</em>
+<a name="40" href="#40">40</a>  <em class="jxr_javadoccomment"> * by the shading process.</em>
+<a name="41" href="#41">41</a>  <em class="jxr_javadoccomment"> *</em>
+<a name="42" href="#42">42</a>  <em class="jxr_javadoccomment"> * @author jvanzyl</em>
+<a name="43" href="#43">43</a>  <em class="jxr_javadoccomment"> */</em>
+<a name="44" href="#44">44</a>  <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">class</strong> <a href="../../../../../../org/apache/maven/plugins/shade/resource/ServicesResourceTransformer.html">ServicesResourceTransformer</a>
+<a name="45" href="#45">45</a>      implements <a href="../../../../../../org/apache/maven/plugins/shade/resource/ResourceTransformer.html">ResourceTransformer</a>
+<a name="46" href="#46">46</a>  {
+<a name="47" href="#47">47</a>      <strong class="jxr_keyword">private</strong> <strong class="jxr_keyword">static</strong> <strong class="jxr_keyword">final</strong> String SERVICES_PATH = <span class="jxr_string">"META-INF/services"</span>;
+<a name="48" href="#48">48</a>  
+<a name="49" href="#49">49</a>      <strong class="jxr_keyword">private</strong> ByteArrayOutputStream data;
+<a name="50" href="#50">50</a>  
+<a name="51" href="#51">51</a>      <strong class="jxr_keyword">private</strong> Map serviceEntries = <strong class="jxr_keyword">new</strong> HashMap();
+<a name="52" href="#52">52</a>  
+<a name="53" href="#53">53</a>      <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">boolean</strong> canTransformResource( String resource )
+<a name="54" href="#54">54</a>      {
+<a name="55" href="#55">55</a>          <strong class="jxr_keyword">if</strong> ( resource.startsWith( SERVICES_PATH ) )
+<a name="56" href="#56">56</a>          {
+<a name="57" href="#57">57</a>              data = (ByteArrayOutputStream) serviceEntries.get( resource );
+<a name="58" href="#58">58</a>  
+<a name="59" href="#59">59</a>              <strong class="jxr_keyword">if</strong> ( data == <strong class="jxr_keyword">null</strong> )
+<a name="60" href="#60">60</a>              {
+<a name="61" href="#61">61</a>                  data = <strong class="jxr_keyword">new</strong> ByteArrayOutputStream();
+<a name="62" href="#62">62</a>                  serviceEntries.put( resource, data );
+<a name="63" href="#63">63</a>              }
+<a name="64" href="#64">64</a>  
+<a name="65" href="#65">65</a>              <strong class="jxr_keyword">return</strong> <strong class="jxr_keyword">true</strong>;
+<a name="66" href="#66">66</a>          }
+<a name="67" href="#67">67</a>  
+<a name="68" href="#68">68</a>          <strong class="jxr_keyword">return</strong> false;
+<a name="69" href="#69">69</a>      }
+<a name="70" href="#70">70</a>  
+<a name="71" href="#71">71</a>      <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> processResource( String resource, InputStream is, List relocators )
+<a name="72" href="#72">72</a>          <strong class="jxr_keyword">throws</strong> IOException
+<a name="73" href="#73">73</a>      {
+<a name="74" href="#74">74</a>          IOUtil.copy( is, data );
+<a name="75" href="#75">75</a>          is.close();
+<a name="76" href="#76">76</a>      }
+<a name="77" href="#77">77</a>  
+<a name="78" href="#78">78</a>      <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">boolean</strong> hasTransformedResource()
+<a name="79" href="#79">79</a>      {
+<a name="80" href="#80">80</a>          <strong class="jxr_keyword">return</strong> serviceEntries.size() &gt; 0;
+<a name="81" href="#81">81</a>      }
+<a name="82" href="#82">82</a>  
+<a name="83" href="#83">83</a>      <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> modifyOutputStream( JarOutputStream jos )
+<a name="84" href="#84">84</a>          <strong class="jxr_keyword">throws</strong> IOException
+<a name="85" href="#85">85</a>      {
+<a name="86" href="#86">86</a>          <strong class="jxr_keyword">for</strong> ( Iterator i = serviceEntries.keySet().iterator(); i.hasNext(); )
+<a name="87" href="#87">87</a>          {
+<a name="88" href="#88">88</a>              String key = (String) i.next();
+<a name="89" href="#89">89</a>              ByteArrayOutputStream data = (ByteArrayOutputStream) serviceEntries.get( key );
+<a name="90" href="#90">90</a>              jos.putNextEntry( <strong class="jxr_keyword">new</strong> JarEntry( key ) );
+<a name="91" href="#91">91</a>              IOUtil.copy( <strong class="jxr_keyword">new</strong> ByteArrayInputStream( data.toByteArray() ), jos );
+<a name="92" href="#92">92</a>              data.reset();
+<a name="93" href="#93">93</a>          }
+<a name="94" href="#94">94</a>      }
+<a name="95" href="#95">95</a>  }
 </pre>
 <hr/><div id="footer">This page was automatically generated by <a href="http://maven.apache.org/">Maven</a></div></body>
 </html>