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:18:21 UTC

svn commit: r816625 [46/46] - in /websites/production/maventest/content/plugins/maven-shade-plugin-latest: ./ apidocs/ apidocs/org/ apidocs/org/apache/ apidocs/org/apache/maven/ apidocs/org/apache/maven/plugins/ apidocs/org/apache/maven/plugins/shade/ ...

Added: 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 (added)
+++ websites/production/maventest/content/plugins/maven-shade-plugin-latest/xref/org/apache/maven/plugins/shade/resource/ComponentsXmlResourceTransformer.html Tue May  8 13:18:10 2012
@@ -0,0 +1,190 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
+<head>
+<meta http-equiv="content-type" content="text/html; charset=ISO-8859-1" />
+<title>ComponentsXmlResourceTransformer xref</title>
+<link type="text/css" rel="stylesheet" href="../../../../../../stylesheet.css" />
+</head>
+<body>
+<div id="overview"><a href="../../../../../../../../../../../../../site/apidocs/org/apache/maven/plugins/shade/resource/ComponentsXmlResourceTransformer.html">View Javadoc</a></div><pre>
+
+<a name="1" href="#1">1</a>   <strong class="jxr_keyword">package</strong> org.apache.maven.plugins.shade.resource;
+<a name="2" href="#2">2</a>   
+<a name="3" href="#3">3</a>   <em class="jxr_comment">/*</em>
+<a name="4" href="#4">4</a>   <em class="jxr_comment"> * Licensed to the Apache Software Foundation (ASF) under one</em>
+<a name="5" href="#5">5</a>   <em class="jxr_comment"> * or more contributor license agreements.  See the NOTICE file</em>
+<a name="6" href="#6">6</a>   <em class="jxr_comment"> * distributed with this work for additional information</em>
+<a name="7" href="#7">7</a>   <em class="jxr_comment"> * regarding copyright ownership.  The ASF licenses this file</em>
+<a name="8" href="#8">8</a>   <em class="jxr_comment"> * to you under the Apache License, Version 2.0 (the</em>
+<a name="9" href="#9">9</a>   <em class="jxr_comment"> * "License"); you may not use this file except in compliance</em>
+<a name="10" href="#10">10</a>  <em class="jxr_comment"> * with the License.  You may obtain a copy of the License at</em>
+<a name="11" href="#11">11</a>  <em class="jxr_comment"> *</em>
+<a name="12" href="#12">12</a>  <em class="jxr_comment"> *   <a href="http://www.apache.org/licenses/LICENSE-2.0" target="alexandria_uri">http://www.apache.org/licenses/LICENSE-2.0</a></em>
+<a name="13" href="#13">13</a>  <em class="jxr_comment"> *</em>
+<a name="14" href="#14">14</a>  <em class="jxr_comment"> * Unless required by applicable law or agreed to in writing,</em>
+<a name="15" href="#15">15</a>  <em class="jxr_comment"> * software distributed under the License is distributed on an</em>
+<a name="16" href="#16">16</a>  <em class="jxr_comment"> * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY</em>
+<a name="17" href="#17">17</a>  <em class="jxr_comment"> * KIND, either express or implied.  See the License for the</em>
+<a name="18" href="#18">18</a>  <em class="jxr_comment"> * specific language governing permissions and limitations</em>
+<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="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="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="74" href="#74">74</a>  
+<a name="75" href="#75">75</a>          Reader reader;
+<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="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="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="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="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="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="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="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="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="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="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> }
+</pre>
+<hr/><div id="footer">This page was automatically generated by <a href="http://maven.apache.org/">Maven</a></div></body>
+</html>

Propchange: websites/production/maventest/content/plugins/maven-shade-plugin-latest/xref/org/apache/maven/plugins/shade/resource/ComponentsXmlResourceTransformer.html
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: websites/production/maventest/content/plugins/maven-shade-plugin-latest/xref/org/apache/maven/plugins/shade/resource/ComponentsXmlResourceTransformer.html
------------------------------------------------------------------------------
    svn:keywords = Author Date Id Revision

Added: 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 (added)
+++ websites/production/maventest/content/plugins/maven-shade-plugin-latest/xref/org/apache/maven/plugins/shade/resource/DontIncludeResourceTransformer.html Tue May  8 13:18:10 2012
@@ -0,0 +1,74 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
+<head>
+<meta http-equiv="content-type" content="text/html; charset=ISO-8859-1" />
+<title>DontIncludeResourceTransformer xref</title>
+<link type="text/css" rel="stylesheet" href="../../../../../../stylesheet.css" />
+</head>
+<body>
+<div id="overview"><a href="../../../../../../../../../../../../../site/apidocs/org/apache/maven/plugins/shade/resource/DontIncludeResourceTransformer.html">View Javadoc</a></div><pre>
+
+<a name="1" href="#1">1</a>   <strong class="jxr_keyword">package</strong> org.apache.maven.plugins.shade.resource;
+<a name="2" href="#2">2</a>   
+<a name="3" href="#3">3</a>   <em class="jxr_comment">/*</em>
+<a name="4" href="#4">4</a>   <em class="jxr_comment"> * Licensed to the Apache Software Foundation (ASF) under one</em>
+<a name="5" href="#5">5</a>   <em class="jxr_comment"> * or more contributor license agreements.  See the NOTICE file</em>
+<a name="6" href="#6">6</a>   <em class="jxr_comment"> * distributed with this work for additional information</em>
+<a name="7" href="#7">7</a>   <em class="jxr_comment"> * regarding copyright ownership.  The ASF licenses this file</em>
+<a name="8" href="#8">8</a>   <em class="jxr_comment"> * to you under the Apache License, Version 2.0 (the</em>
+<a name="9" href="#9">9</a>   <em class="jxr_comment"> * "License"); you may not use this file except in compliance</em>
+<a name="10" href="#10">10</a>  <em class="jxr_comment"> * with the License.  You may obtain a copy of the License at</em>
+<a name="11" href="#11">11</a>  <em class="jxr_comment"> *</em>
+<a name="12" href="#12">12</a>  <em class="jxr_comment"> *   <a href="http://www.apache.org/licenses/LICENSE-2.0" target="alexandria_uri">http://www.apache.org/licenses/LICENSE-2.0</a></em>
+<a name="13" href="#13">13</a>  <em class="jxr_comment"> *</em>
+<a name="14" href="#14">14</a>  <em class="jxr_comment"> * Unless required by applicable law or agreed to in writing,</em>
+<a name="15" href="#15">15</a>  <em class="jxr_comment"> * software distributed under the License is distributed on an</em>
+<a name="16" href="#16">16</a>  <em class="jxr_comment"> * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY</em>
+<a name="17" href="#17">17</a>  <em class="jxr_comment"> * KIND, either express or implied.  See the License for the</em>
+<a name="18" href="#18">18</a>  <em class="jxr_comment"> * specific language governing permissions and limitations</em>
+<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.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>  }
+</pre>
+<hr/><div id="footer">This page was automatically generated by <a href="http://maven.apache.org/">Maven</a></div></body>
+</html>

Propchange: websites/production/maventest/content/plugins/maven-shade-plugin-latest/xref/org/apache/maven/plugins/shade/resource/DontIncludeResourceTransformer.html
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: websites/production/maventest/content/plugins/maven-shade-plugin-latest/xref/org/apache/maven/plugins/shade/resource/DontIncludeResourceTransformer.html
------------------------------------------------------------------------------
    svn:keywords = Author Date Id Revision

Added: 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 (added)
+++ websites/production/maventest/content/plugins/maven-shade-plugin-latest/xref/org/apache/maven/plugins/shade/resource/IncludeResourceTransformer.html Tue May  8 13:18:10 2012
@@ -0,0 +1,79 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
+<head>
+<meta http-equiv="content-type" content="text/html; charset=ISO-8859-1" />
+<title>IncludeResourceTransformer xref</title>
+<link type="text/css" rel="stylesheet" href="../../../../../../stylesheet.css" />
+</head>
+<body>
+<div id="overview"><a href="../../../../../../../../../../../../../site/apidocs/org/apache/maven/plugins/shade/resource/IncludeResourceTransformer.html">View Javadoc</a></div><pre>
+
+<a name="1" href="#1">1</a>   <strong class="jxr_keyword">package</strong> org.apache.maven.plugins.shade.resource;
+<a name="2" href="#2">2</a>   
+<a name="3" href="#3">3</a>   <em class="jxr_comment">/*</em>
+<a name="4" href="#4">4</a>   <em class="jxr_comment"> * Licensed to the Apache Software Foundation (ASF) under one</em>
+<a name="5" href="#5">5</a>   <em class="jxr_comment"> * or more contributor license agreements.  See the NOTICE file</em>
+<a name="6" href="#6">6</a>   <em class="jxr_comment"> * distributed with this work for additional information</em>
+<a name="7" href="#7">7</a>   <em class="jxr_comment"> * regarding copyright ownership.  The ASF licenses this file</em>
+<a name="8" href="#8">8</a>   <em class="jxr_comment"> * to you under the Apache License, Version 2.0 (the</em>
+<a name="9" href="#9">9</a>   <em class="jxr_comment"> * "License"); you may not use this file except in compliance</em>
+<a name="10" href="#10">10</a>  <em class="jxr_comment"> * with the License.  You may obtain a copy of the License at</em>
+<a name="11" href="#11">11</a>  <em class="jxr_comment"> *</em>
+<a name="12" href="#12">12</a>  <em class="jxr_comment"> *   <a href="http://www.apache.org/licenses/LICENSE-2.0" target="alexandria_uri">http://www.apache.org/licenses/LICENSE-2.0</a></em>
+<a name="13" href="#13">13</a>  <em class="jxr_comment"> *</em>
+<a name="14" href="#14">14</a>  <em class="jxr_comment"> * Unless required by applicable law or agreed to in writing,</em>
+<a name="15" href="#15">15</a>  <em class="jxr_comment"> * software distributed under the License is distributed on an</em>
+<a name="16" href="#16">16</a>  <em class="jxr_comment"> * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY</em>
+<a name="17" href="#17">17</a>  <em class="jxr_comment"> * KIND, either express or implied.  See the License for the</em>
+<a name="18" href="#18">18</a>  <em class="jxr_comment"> * specific language governing permissions and limitations</em>
+<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.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>  }
+</pre>
+<hr/><div id="footer">This page was automatically generated by <a href="http://maven.apache.org/">Maven</a></div></body>
+</html>

Propchange: websites/production/maventest/content/plugins/maven-shade-plugin-latest/xref/org/apache/maven/plugins/shade/resource/IncludeResourceTransformer.html
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: websites/production/maventest/content/plugins/maven-shade-plugin-latest/xref/org/apache/maven/plugins/shade/resource/IncludeResourceTransformer.html
------------------------------------------------------------------------------
    svn:keywords = Author Date Id Revision

Added: 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 (added)
+++ websites/production/maventest/content/plugins/maven-shade-plugin-latest/xref/org/apache/maven/plugins/shade/resource/ManifestResourceTransformer.html Tue May  8 13:18:10 2012
@@ -0,0 +1,124 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
+<head>
+<meta http-equiv="content-type" content="text/html; charset=ISO-8859-1" />
+<title>ManifestResourceTransformer xref</title>
+<link type="text/css" rel="stylesheet" href="../../../../../../stylesheet.css" />
+</head>
+<body>
+<div id="overview"><a href="../../../../../../../../../../../../../site/apidocs/org/apache/maven/plugins/shade/resource/ManifestResourceTransformer.html">View Javadoc</a></div><pre>
+
+<a name="1" href="#1">1</a>   <strong class="jxr_keyword">package</strong> org.apache.maven.plugins.shade.resource;
+<a name="2" href="#2">2</a>   
+<a name="3" href="#3">3</a>   <em class="jxr_comment">/*</em>
+<a name="4" href="#4">4</a>   <em class="jxr_comment"> * Licensed to the Apache Software Foundation (ASF) under one</em>
+<a name="5" href="#5">5</a>   <em class="jxr_comment"> * or more contributor license agreements.  See the NOTICE file</em>
+<a name="6" href="#6">6</a>   <em class="jxr_comment"> * distributed with this work for additional information</em>
+<a name="7" href="#7">7</a>   <em class="jxr_comment"> * regarding copyright ownership.  The ASF licenses this file</em>
+<a name="8" href="#8">8</a>   <em class="jxr_comment"> * to you under the Apache License, Version 2.0 (the</em>
+<a name="9" href="#9">9</a>   <em class="jxr_comment"> * "License"); you may not use this file except in compliance</em>
+<a name="10" href="#10">10</a>  <em class="jxr_comment"> * with the License.  You may obtain a copy of the License at</em>
+<a name="11" href="#11">11</a>  <em class="jxr_comment"> *</em>
+<a name="12" href="#12">12</a>  <em class="jxr_comment"> *   <a href="http://www.apache.org/licenses/LICENSE-2.0" target="alexandria_uri">http://www.apache.org/licenses/LICENSE-2.0</a></em>
+<a name="13" href="#13">13</a>  <em class="jxr_comment"> *</em>
+<a name="14" href="#14">14</a>  <em class="jxr_comment"> * Unless required by applicable law or agreed to in writing,</em>
+<a name="15" href="#15">15</a>  <em class="jxr_comment"> * software distributed under the License is distributed on an</em>
+<a name="16" href="#16">16</a>  <em class="jxr_comment"> * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY</em>
+<a name="17" href="#17">17</a>  <em class="jxr_comment"> * KIND, either express or implied.  See the License for the</em>
+<a name="18" href="#18">18</a>  <em class="jxr_comment"> * specific language governing permissions and limitations</em>
+<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.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> }
+</pre>
+<hr/><div id="footer">This page was automatically generated by <a href="http://maven.apache.org/">Maven</a></div></body>
+</html>

Propchange: websites/production/maventest/content/plugins/maven-shade-plugin-latest/xref/org/apache/maven/plugins/shade/resource/ManifestResourceTransformer.html
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: websites/production/maventest/content/plugins/maven-shade-plugin-latest/xref/org/apache/maven/plugins/shade/resource/ManifestResourceTransformer.html
------------------------------------------------------------------------------
    svn:keywords = Author Date Id Revision

Added: 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 (added)
+++ websites/production/maventest/content/plugins/maven-shade-plugin-latest/xref/org/apache/maven/plugins/shade/resource/ResourceTransformer.html Tue May  8 13:18:10 2012
@@ -0,0 +1,51 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
+<head>
+<meta http-equiv="content-type" content="text/html; charset=ISO-8859-1" />
+<title>ResourceTransformer xref</title>
+<link type="text/css" rel="stylesheet" href="../../../../../../stylesheet.css" />
+</head>
+<body>
+<div id="overview"><a href="../../../../../../../../../../../../../site/apidocs/org/apache/maven/plugins/shade/resource/ResourceTransformer.html">View Javadoc</a></div><pre>
+
+<a name="1" href="#1">1</a>   <strong class="jxr_keyword">package</strong> org.apache.maven.plugins.shade.resource;
+<a name="2" href="#2">2</a>   
+<a name="3" href="#3">3</a>   <em class="jxr_comment">/*</em>
+<a name="4" href="#4">4</a>   <em class="jxr_comment"> * Licensed to the Apache Software Foundation (ASF) under one</em>
+<a name="5" href="#5">5</a>   <em class="jxr_comment"> * or more contributor license agreements.  See the NOTICE file</em>
+<a name="6" href="#6">6</a>   <em class="jxr_comment"> * distributed with this work for additional information</em>
+<a name="7" href="#7">7</a>   <em class="jxr_comment"> * regarding copyright ownership.  The ASF licenses this file</em>
+<a name="8" href="#8">8</a>   <em class="jxr_comment"> * to you under the Apache License, Version 2.0 (the</em>
+<a name="9" href="#9">9</a>   <em class="jxr_comment"> * "License"); you may not use this file except in compliance</em>
+<a name="10" href="#10">10</a>  <em class="jxr_comment"> * with the License.  You may obtain a copy of the License at</em>
+<a name="11" href="#11">11</a>  <em class="jxr_comment"> *</em>
+<a name="12" href="#12">12</a>  <em class="jxr_comment"> *   <a href="http://www.apache.org/licenses/LICENSE-2.0" target="alexandria_uri">http://www.apache.org/licenses/LICENSE-2.0</a></em>
+<a name="13" href="#13">13</a>  <em class="jxr_comment"> *</em>
+<a name="14" href="#14">14</a>  <em class="jxr_comment"> * Unless required by applicable law or agreed to in writing,</em>
+<a name="15" href="#15">15</a>  <em class="jxr_comment"> * software distributed under the License is distributed on an</em>
+<a name="16" href="#16">16</a>  <em class="jxr_comment"> * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY</em>
+<a name="17" href="#17">17</a>  <em class="jxr_comment"> * KIND, either express or implied.  See the License for the</em>
+<a name="18" href="#18">18</a>  <em class="jxr_comment"> * specific language governing permissions and limitations</em>
+<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.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>  }
+</pre>
+<hr/><div id="footer">This page was automatically generated by <a href="http://maven.apache.org/">Maven</a></div></body>
+</html>

Propchange: websites/production/maventest/content/plugins/maven-shade-plugin-latest/xref/org/apache/maven/plugins/shade/resource/ResourceTransformer.html
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: websites/production/maventest/content/plugins/maven-shade-plugin-latest/xref/org/apache/maven/plugins/shade/resource/ResourceTransformer.html
------------------------------------------------------------------------------
    svn:keywords = Author Date Id Revision

Added: 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 (added)
+++ websites/production/maventest/content/plugins/maven-shade-plugin-latest/xref/org/apache/maven/plugins/shade/resource/ServicesResourceTransformer.html Tue May  8 13:18:10 2012
@@ -0,0 +1,107 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
+<head>
+<meta http-equiv="content-type" content="text/html; charset=ISO-8859-1" />
+<title>ServicesResourceTransformer xref</title>
+<link type="text/css" rel="stylesheet" href="../../../../../../stylesheet.css" />
+</head>
+<body>
+<div id="overview"><a href="../../../../../../../../../../../../../site/apidocs/org/apache/maven/plugins/shade/resource/ServicesResourceTransformer.html">View Javadoc</a></div><pre>
+
+<a name="1" href="#1">1</a>   <strong class="jxr_keyword">package</strong> org.apache.maven.plugins.shade.resource;
+<a name="2" href="#2">2</a>   
+<a name="3" href="#3">3</a>   <em class="jxr_comment">/*</em>
+<a name="4" href="#4">4</a>   <em class="jxr_comment"> * Licensed to the Apache Software Foundation (ASF) under one</em>
+<a name="5" href="#5">5</a>   <em class="jxr_comment"> * or more contributor license agreements.  See the NOTICE file</em>
+<a name="6" href="#6">6</a>   <em class="jxr_comment"> * distributed with this work for additional information</em>
+<a name="7" href="#7">7</a>   <em class="jxr_comment"> * regarding copyright ownership.  The ASF licenses this file</em>
+<a name="8" href="#8">8</a>   <em class="jxr_comment"> * to you under the Apache License, Version 2.0 (the</em>
+<a name="9" href="#9">9</a>   <em class="jxr_comment"> * "License"); you may not use this file except in compliance</em>
+<a name="10" href="#10">10</a>  <em class="jxr_comment"> * with the License.  You may obtain a copy of the License at</em>
+<a name="11" href="#11">11</a>  <em class="jxr_comment"> *</em>
+<a name="12" href="#12">12</a>  <em class="jxr_comment"> *   <a href="http://www.apache.org/licenses/LICENSE-2.0" target="alexandria_uri">http://www.apache.org/licenses/LICENSE-2.0</a></em>
+<a name="13" href="#13">13</a>  <em class="jxr_comment"> *</em>
+<a name="14" href="#14">14</a>  <em class="jxr_comment"> * Unless required by applicable law or agreed to in writing,</em>
+<a name="15" href="#15">15</a>  <em class="jxr_comment"> * software distributed under the License is distributed on an</em>
+<a name="16" href="#16">16</a>  <em class="jxr_comment"> * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY</em>
+<a name="17" href="#17">17</a>  <em class="jxr_comment"> * KIND, either express or implied.  See the License for the</em>
+<a name="18" href="#18">18</a>  <em class="jxr_comment"> * specific language governing permissions and limitations</em>
+<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.ByteArrayInputStream;
+<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.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>  }
+</pre>
+<hr/><div id="footer">This page was automatically generated by <a href="http://maven.apache.org/">Maven</a></div></body>
+</html>

Propchange: websites/production/maventest/content/plugins/maven-shade-plugin-latest/xref/org/apache/maven/plugins/shade/resource/ServicesResourceTransformer.html
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: websites/production/maventest/content/plugins/maven-shade-plugin-latest/xref/org/apache/maven/plugins/shade/resource/ServicesResourceTransformer.html
------------------------------------------------------------------------------
    svn:keywords = Author Date Id Revision

Added: websites/production/maventest/content/plugins/maven-shade-plugin-latest/xref/org/apache/maven/plugins/shade/resource/XmlAppendingTransformer.html
==============================================================================
--- websites/production/maventest/content/plugins/maven-shade-plugin-latest/xref/org/apache/maven/plugins/shade/resource/XmlAppendingTransformer.html (added)
+++ websites/production/maventest/content/plugins/maven-shade-plugin-latest/xref/org/apache/maven/plugins/shade/resource/XmlAppendingTransformer.html Tue May  8 13:18:10 2012
@@ -0,0 +1,126 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
+<head>
+<meta http-equiv="content-type" content="text/html; charset=ISO-8859-1" />
+<title>XmlAppendingTransformer xref</title>
+<link type="text/css" rel="stylesheet" href="../../../../../../stylesheet.css" />
+</head>
+<body>
+<div id="overview"><a href="../../../../../../../../../../../../../site/apidocs/org/apache/maven/plugins/shade/resource/XmlAppendingTransformer.html">View Javadoc</a></div><pre>
+
+<a name="1" href="#1">1</a>   <strong class="jxr_keyword">package</strong> org.apache.maven.plugins.shade.resource;
+<a name="2" href="#2">2</a>   
+<a name="3" href="#3">3</a>   <em class="jxr_comment">/*</em>
+<a name="4" href="#4">4</a>   <em class="jxr_comment"> * Licensed to the Apache Software Foundation (ASF) under one</em>
+<a name="5" href="#5">5</a>   <em class="jxr_comment"> * or more contributor license agreements.  See the NOTICE file</em>
+<a name="6" href="#6">6</a>   <em class="jxr_comment"> * distributed with this work for additional information</em>
+<a name="7" href="#7">7</a>   <em class="jxr_comment"> * regarding copyright ownership.  The ASF licenses this file</em>
+<a name="8" href="#8">8</a>   <em class="jxr_comment"> * to you under the Apache License, Version 2.0 (the</em>
+<a name="9" href="#9">9</a>   <em class="jxr_comment"> * "License"); you may not use this file except in compliance</em>
+<a name="10" href="#10">10</a>  <em class="jxr_comment"> * with the License.  You may obtain a copy of the License at</em>
+<a name="11" href="#11">11</a>  <em class="jxr_comment"> *</em>
+<a name="12" href="#12">12</a>  <em class="jxr_comment"> *   <a href="http://www.apache.org/licenses/LICENSE-2.0" target="alexandria_uri">http://www.apache.org/licenses/LICENSE-2.0</a></em>
+<a name="13" href="#13">13</a>  <em class="jxr_comment"> *</em>
+<a name="14" href="#14">14</a>  <em class="jxr_comment"> * Unless required by applicable law or agreed to in writing,</em>
+<a name="15" href="#15">15</a>  <em class="jxr_comment"> * software distributed under the License is distributed on an</em>
+<a name="16" href="#16">16</a>  <em class="jxr_comment"> * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY</em>
+<a name="17" href="#17">17</a>  <em class="jxr_comment"> * KIND, either express or implied.  See the License for the</em>
+<a name="18" href="#18">18</a>  <em class="jxr_comment"> * specific language governing permissions and limitations</em>
+<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.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.jar.JarEntry;
+<a name="26" href="#26">26</a>  <strong class="jxr_keyword">import</strong> java.util.jar.JarOutputStream;
+<a name="27" href="#27">27</a>  
+<a name="28" href="#28">28</a>  <strong class="jxr_keyword">import</strong> org.jdom.Attribute;
+<a name="29" href="#29">29</a>  <strong class="jxr_keyword">import</strong> org.jdom.Content;
+<a name="30" href="#30">30</a>  <strong class="jxr_keyword">import</strong> org.jdom.Document;
+<a name="31" href="#31">31</a>  <strong class="jxr_keyword">import</strong> org.jdom.Element;
+<a name="32" href="#32">32</a>  <strong class="jxr_keyword">import</strong> org.jdom.JDOMException;
+<a name="33" href="#33">33</a>  <strong class="jxr_keyword">import</strong> org.jdom.input.SAXBuilder;
+<a name="34" href="#34">34</a>  <strong class="jxr_keyword">import</strong> org.jdom.output.Format;
+<a name="35" href="#35">35</a>  <strong class="jxr_keyword">import</strong> org.jdom.output.XMLOutputter;
+<a name="36" href="#36">36</a>  
+<a name="37" href="#37">37</a>  <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">class</strong> <a href="../../../../../../org/apache/maven/plugins/shade/resource/XmlAppendingTransformer.html">XmlAppendingTransformer</a>
+<a name="38" href="#38">38</a>      implements <a href="../../../../../../org/apache/maven/plugins/shade/resource/ResourceTransformer.html">ResourceTransformer</a>
+<a name="39" href="#39">39</a>  {
+<a name="40" href="#40">40</a>      <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">static</strong> <strong class="jxr_keyword">final</strong> String XSI_NS = <span class="jxr_string">"http://www.w3.org/2001/XMLSchema-instance"</span>;
+<a name="41" href="#41">41</a>  
+<a name="42" href="#42">42</a>      String resource;
+<a name="43" href="#43">43</a>      Document doc;
+<a name="44" href="#44">44</a>  
+<a name="45" href="#45">45</a>      <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">boolean</strong> canTransformResource( String r )
+<a name="46" href="#46">46</a>      {
+<a name="47" href="#47">47</a>          <strong class="jxr_keyword">if</strong> ( resource != <strong class="jxr_keyword">null</strong> &amp;&amp; resource.equalsIgnoreCase( r ) )
+<a name="48" href="#48">48</a>          {
+<a name="49" href="#49">49</a>              <strong class="jxr_keyword">return</strong> <strong class="jxr_keyword">true</strong>;
+<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">return</strong> false;
+<a name="53" href="#53">53</a>      }
+<a name="54" href="#54">54</a>  
+<a name="55" href="#55">55</a>      <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> processResource( InputStream is )
+<a name="56" href="#56">56</a>          <strong class="jxr_keyword">throws</strong> IOException
+<a name="57" href="#57">57</a>      {
+<a name="58" href="#58">58</a>          Document r;
+<a name="59" href="#59">59</a>          <strong class="jxr_keyword">try</strong>
+<a name="60" href="#60">60</a>          {
+<a name="61" href="#61">61</a>              r = <strong class="jxr_keyword">new</strong> SAXBuilder().build( is );
+<a name="62" href="#62">62</a>          }
+<a name="63" href="#63">63</a>          <strong class="jxr_keyword">catch</strong> ( JDOMException e )
+<a name="64" href="#64">64</a>          {
+<a name="65" href="#65">65</a>              <strong class="jxr_keyword">throw</strong> <strong class="jxr_keyword">new</strong> RuntimeException( e );
+<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">if</strong> ( doc == <strong class="jxr_keyword">null</strong> )
+<a name="69" href="#69">69</a>          {
+<a name="70" href="#70">70</a>              doc = r;
+<a name="71" href="#71">71</a>          }
+<a name="72" href="#72">72</a>          <strong class="jxr_keyword">else</strong>
+<a name="73" href="#73">73</a>          {
+<a name="74" href="#74">74</a>              Element root = r.getRootElement();
+<a name="75" href="#75">75</a>  
+<a name="76" href="#76">76</a>              <strong class="jxr_keyword">for</strong> ( Iterator itr = root.getAttributes().iterator(); itr.hasNext(); )
+<a name="77" href="#77">77</a>              {
+<a name="78" href="#78">78</a>                  Attribute a = (Attribute) itr.next();
+<a name="79" href="#79">79</a>                  itr.remove();
+<a name="80" href="#80">80</a>  
+<a name="81" href="#81">81</a>                  Element mergedEl = doc.getRootElement();
+<a name="82" href="#82">82</a>                  Attribute mergedAtt = mergedEl.getAttribute( a.getName(), a.getNamespace() );
+<a name="83" href="#83">83</a>                  <strong class="jxr_keyword">if</strong> ( mergedAtt == <strong class="jxr_keyword">null</strong> )
+<a name="84" href="#84">84</a>                  {
+<a name="85" href="#85">85</a>                      mergedEl.setAttribute( a );
+<a name="86" href="#86">86</a>                  }
+<a name="87" href="#87">87</a>              }
+<a name="88" href="#88">88</a>  
+<a name="89" href="#89">89</a>              <strong class="jxr_keyword">for</strong> ( Iterator itr = root.getChildren().iterator(); itr.hasNext(); )
+<a name="90" href="#90">90</a>              {
+<a name="91" href="#91">91</a>                  Content n = (Content) itr.next();
+<a name="92" href="#92">92</a>                  itr.remove();
+<a name="93" href="#93">93</a>  
+<a name="94" href="#94">94</a>                  doc.getRootElement().addContent( n );
+<a name="95" href="#95">95</a>              }
+<a name="96" href="#96">96</a>          }
+<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">public</strong> <strong class="jxr_keyword">boolean</strong> hasTransformedResource()
+<a name="100" href="#100">100</a>     {
+<a name="101" href="#101">101</a>         <strong class="jxr_keyword">return</strong> doc != <strong class="jxr_keyword">null</strong>;
+<a name="102" href="#102">102</a>     }
+<a name="103" href="#103">103</a> 
+<a name="104" href="#104">104</a>     <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> modifyOutputStream( JarOutputStream jos )
+<a name="105" href="#105">105</a>         <strong class="jxr_keyword">throws</strong> IOException
+<a name="106" href="#106">106</a>     {
+<a name="107" href="#107">107</a>         jos.putNextEntry( <strong class="jxr_keyword">new</strong> JarEntry( resource ) );
+<a name="108" href="#108">108</a> 
+<a name="109" href="#109">109</a>         <strong class="jxr_keyword">new</strong> XMLOutputter( Format.getPrettyFormat() ).output( doc, jos );
+<a name="110" href="#110">110</a> 
+<a name="111" href="#111">111</a>         doc = <strong class="jxr_keyword">null</strong>;
+<a name="112" href="#112">112</a>     }
+<a name="113" href="#113">113</a> }
+</pre>
+<hr/><div id="footer">This page was automatically generated by <a href="http://maven.apache.org/">Maven</a></div></body>
+</html>

Propchange: websites/production/maventest/content/plugins/maven-shade-plugin-latest/xref/org/apache/maven/plugins/shade/resource/XmlAppendingTransformer.html
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: websites/production/maventest/content/plugins/maven-shade-plugin-latest/xref/org/apache/maven/plugins/shade/resource/XmlAppendingTransformer.html
------------------------------------------------------------------------------
    svn:keywords = Author Date Id Revision

Added: websites/production/maventest/content/plugins/maven-shade-plugin-latest/xref/org/apache/maven/plugins/shade/resource/package-frame.html
==============================================================================
--- websites/production/maventest/content/plugins/maven-shade-plugin-latest/xref/org/apache/maven/plugins/shade/resource/package-frame.html (added)
+++ websites/production/maventest/content/plugins/maven-shade-plugin-latest/xref/org/apache/maven/plugins/shade/resource/package-frame.html Tue May  8 13:18:10 2012
@@ -0,0 +1,51 @@
+
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "DTD/xhtml1-transitional.dtd">
+<html xml:lang="en" lang="en">
+	<head>
+		<meta http-equiv="content-type" content="text/html; charset=ISO-8859-1" />
+		<title>Maven Shade Plugin 1.2.1 Reference Package org.apache.maven.plugins.shade.resource</title>
+		<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="style" />
+	</head>
+	<body>
+
+		<h3>
+        	<a href="package-summary.html" target="classFrame">org.apache.maven.plugins.shade.resource</a>
+      	</h3>
+
+      	<h3>Classes</h3>
+
+      	<ul>
+      		          	<li>
+            	<a href="ApacheLicenseResourceTransformer.html" target="classFrame">ApacheLicenseResourceTransformer</a>
+          	</li>
+          	          	<li>
+            	<a href="ApacheNoticeResourceTransformer.html" target="classFrame">ApacheNoticeResourceTransformer</a>
+          	</li>
+          	          	<li>
+            	<a href="AppendingTransformer.html" target="classFrame">AppendingTransformer</a>
+          	</li>
+          	          	<li>
+            	<a href="ComponentsXmlResourceTransformer.html" target="classFrame">ComponentsXmlResourceTransformer</a>
+          	</li>
+          	          	<li>
+            	<a href="DontIncludeResourceTransformer.html" target="classFrame">DontIncludeResourceTransformer</a>
+          	</li>
+          	          	<li>
+            	<a href="IncludeResourceTransformer.html" target="classFrame">IncludeResourceTransformer</a>
+          	</li>
+          	          	<li>
+            	<a href="ManifestResourceTransformer.html" target="classFrame">ManifestResourceTransformer</a>
+          	</li>
+          	          	<li>
+            	<a href="ResourceTransformer.html" target="classFrame">ResourceTransformer</a>
+          	</li>
+          	          	<li>
+            	<a href="ServicesResourceTransformer.html" target="classFrame">ServicesResourceTransformer</a>
+          	</li>
+          	          	<li>
+            	<a href="XmlAppendingTransformer.html" target="classFrame">XmlAppendingTransformer</a>
+          	</li>
+          	      	</ul>
+
+	</body>
+</html>
\ No newline at end of file

Propchange: websites/production/maventest/content/plugins/maven-shade-plugin-latest/xref/org/apache/maven/plugins/shade/resource/package-frame.html
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: websites/production/maventest/content/plugins/maven-shade-plugin-latest/xref/org/apache/maven/plugins/shade/resource/package-frame.html
------------------------------------------------------------------------------
    svn:keywords = Author Date Id Revision

Added: websites/production/maventest/content/plugins/maven-shade-plugin-latest/xref/org/apache/maven/plugins/shade/resource/package-summary.html
==============================================================================
--- websites/production/maventest/content/plugins/maven-shade-plugin-latest/xref/org/apache/maven/plugins/shade/resource/package-summary.html (added)
+++ websites/production/maventest/content/plugins/maven-shade-plugin-latest/xref/org/apache/maven/plugins/shade/resource/package-summary.html Tue May  8 13:18:10 2012
@@ -0,0 +1,112 @@
+
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "DTD/xhtml1-transitional.dtd">
+<html xml:lang="en" lang="en">
+	<head>
+		<meta http-equiv="content-type" content="text/html; charset=ISO-8859-1" />
+		<title>Maven Shade Plugin 1.2.1 Reference Package org.apache.maven.plugins.shade.resource</title>
+		<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="style" />
+	</head>
+	<body>
+		      	<div class="overview">
+        	<ul>
+          		<li>
+            		<a href="../../../../../../overview-summary.html">Overview</a>
+          		</li>
+          		<li class="selected">Package</li>
+        	</ul>
+      	</div>
+      	<div class="framenoframe">
+        	<ul>
+          		<li>
+            		<a href="../../../../../../index.html" target="_top">FRAMES</a>
+          		</li>
+          		<li>
+            		<a href="package-summary.html" target="_top">NO FRAMES</a>
+          		</li>
+        	</ul>
+      	</div>
+		
+		      	<h2>Package org.apache.maven.plugins.shade.resource</h2>
+
+		<table class="summary">
+        	<thead>
+          		<tr>
+            		<th>Class Summary</th>
+          		</tr>
+        	</thead>
+        	<tbody>
+        		            	<tr>
+              		<td>
+                		<a href="ApacheLicenseResourceTransformer.html" target="classFrame">ApacheLicenseResourceTransformer</a>
+              		</td>
+            	</tr>
+				            	<tr>
+              		<td>
+                		<a href="ApacheNoticeResourceTransformer.html" target="classFrame">ApacheNoticeResourceTransformer</a>
+              		</td>
+            	</tr>
+				            	<tr>
+              		<td>
+                		<a href="AppendingTransformer.html" target="classFrame">AppendingTransformer</a>
+              		</td>
+            	</tr>
+				            	<tr>
+              		<td>
+                		<a href="ComponentsXmlResourceTransformer.html" target="classFrame">ComponentsXmlResourceTransformer</a>
+              		</td>
+            	</tr>
+				            	<tr>
+              		<td>
+                		<a href="DontIncludeResourceTransformer.html" target="classFrame">DontIncludeResourceTransformer</a>
+              		</td>
+            	</tr>
+				            	<tr>
+              		<td>
+                		<a href="IncludeResourceTransformer.html" target="classFrame">IncludeResourceTransformer</a>
+              		</td>
+            	</tr>
+				            	<tr>
+              		<td>
+                		<a href="ManifestResourceTransformer.html" target="classFrame">ManifestResourceTransformer</a>
+              		</td>
+            	</tr>
+				            	<tr>
+              		<td>
+                		<a href="ResourceTransformer.html" target="classFrame">ResourceTransformer</a>
+              		</td>
+            	</tr>
+				            	<tr>
+              		<td>
+                		<a href="ServicesResourceTransformer.html" target="classFrame">ServicesResourceTransformer</a>
+              		</td>
+            	</tr>
+				            	<tr>
+              		<td>
+                		<a href="XmlAppendingTransformer.html" target="classFrame">XmlAppendingTransformer</a>
+              		</td>
+            	</tr>
+				        	</tbody>
+      	</table>
+		
+		      	<div class="overview">
+        	<ul>
+          		<li>
+            		<a href="../../../../../../overview-summary.html">Overview</a>
+          		</li>
+          		<li class="selected">Package</li>
+        	</ul>
+      	</div>
+      	<div class="framenoframe">
+        	<ul>
+          		<li>
+            		<a href="../../../../../../index.html" target="_top">FRAMES</a>
+          		</li>
+          		<li>
+            		<a href="package-summary.html" target="_top">NO FRAMES</a>
+          		</li>
+        	</ul>
+      	</div>
+				<hr />
+		Copyright &copy; 2002-2009 The Apache Software Foundation. All Rights Reserved.
+	</body>
+</html>
\ No newline at end of file

Propchange: websites/production/maventest/content/plugins/maven-shade-plugin-latest/xref/org/apache/maven/plugins/shade/resource/package-summary.html
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: websites/production/maventest/content/plugins/maven-shade-plugin-latest/xref/org/apache/maven/plugins/shade/resource/package-summary.html
------------------------------------------------------------------------------
    svn:keywords = Author Date Id Revision

Added: websites/production/maventest/content/plugins/maven-shade-plugin-latest/xref/overview-frame.html
==============================================================================
--- websites/production/maventest/content/plugins/maven-shade-plugin-latest/xref/overview-frame.html (added)
+++ websites/production/maventest/content/plugins/maven-shade-plugin-latest/xref/overview-frame.html Tue May  8 13:18:10 2012
@@ -0,0 +1,39 @@
+
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "DTD/xhtml1-transitional.dtd">
+<html xml:lang="en" lang="en">
+	<head>
+		<meta http-equiv="content-type" content="text/html; charset=ISO-8859-1" />
+		<title>Maven Shade Plugin 1.2.1 Reference</title>
+		<link rel="stylesheet" type="text/css" href="stylesheet.css" title="style" />
+	</head>
+	<body>
+
+		<h3>
+			<a href="allclasses-frame.html" target="packageFrame">All Classes</a>
+		</h3>
+
+		<h3>Packages</h3>
+
+		<ul>
+						<li>
+				<a href="org/apache/maven/plugins/shade/package-frame.html" target="packageFrame">org.apache.maven.plugins.shade</a>
+			</li>
+						<li>
+				<a href="org/apache/maven/plugins/shade/filter/package-frame.html" target="packageFrame">org.apache.maven.plugins.shade.filter</a>
+			</li>
+						<li>
+				<a href="org/apache/maven/plugins/shade/mojo/package-frame.html" target="packageFrame">org.apache.maven.plugins.shade.mojo</a>
+			</li>
+						<li>
+				<a href="org/apache/maven/plugins/shade/pom/package-frame.html" target="packageFrame">org.apache.maven.plugins.shade.pom</a>
+			</li>
+						<li>
+				<a href="org/apache/maven/plugins/shade/relocation/package-frame.html" target="packageFrame">org.apache.maven.plugins.shade.relocation</a>
+			</li>
+						<li>
+				<a href="org/apache/maven/plugins/shade/resource/package-frame.html" target="packageFrame">org.apache.maven.plugins.shade.resource</a>
+			</li>
+					</ul>
+
+	</body>
+</html>

Propchange: websites/production/maventest/content/plugins/maven-shade-plugin-latest/xref/overview-frame.html
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: websites/production/maventest/content/plugins/maven-shade-plugin-latest/xref/overview-frame.html
------------------------------------------------------------------------------
    svn:keywords = Author Date Id Revision

Added: websites/production/maventest/content/plugins/maven-shade-plugin-latest/xref/overview-summary.html
==============================================================================
--- websites/production/maventest/content/plugins/maven-shade-plugin-latest/xref/overview-summary.html (added)
+++ websites/production/maventest/content/plugins/maven-shade-plugin-latest/xref/overview-summary.html Tue May  8 13:18:10 2012
@@ -0,0 +1,89 @@
+
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "DTD/xhtml1-transitional.dtd">
+<html xml:lang="en" lang="en">
+	<head>
+		<meta http-equiv="content-type" content="text/html; charset=ISO-8859-1" />
+		<title>Maven Shade Plugin 1.2.1 Reference</title>
+		<link rel="stylesheet" type="text/css" href="stylesheet.css" title="style" />
+	</head>
+	<body>
+				<div class="overview">
+			<ul>
+				<li class="selected">Overview</li>
+				<li>Package</li>
+			</ul>
+		</div>
+		<div class="framenoframe">
+			<ul>
+				<li>
+					<a href="index.html" target="_top">FRAMES</a>
+				</li>
+				<li>
+    	        	<a href="overview-summary.html" target="_top">NO FRAMES</a>
+        	  	</li>
+	        </ul>
+      	</div>
+		
+		      	<h2>Maven Shade Plugin 1.2.1 Reference</h2>
+
+		<table class="summary">
+        	<thead>
+          		<tr>
+            		<th>Packages</th>
+          		</tr>
+        	</thead>
+        	<tbody>
+    	    	            	<tr>
+              		<td>
+                		<a href="org/apache/maven/plugins/shade/package-summary.html">org.apache.maven.plugins.shade</a>
+              		</td>
+            	</tr>
+	          	            	<tr>
+              		<td>
+                		<a href="org/apache/maven/plugins/shade/filter/package-summary.html">org.apache.maven.plugins.shade.filter</a>
+              		</td>
+            	</tr>
+	          	            	<tr>
+              		<td>
+                		<a href="org/apache/maven/plugins/shade/mojo/package-summary.html">org.apache.maven.plugins.shade.mojo</a>
+              		</td>
+            	</tr>
+	          	            	<tr>
+              		<td>
+                		<a href="org/apache/maven/plugins/shade/pom/package-summary.html">org.apache.maven.plugins.shade.pom</a>
+              		</td>
+            	</tr>
+	          	            	<tr>
+              		<td>
+                		<a href="org/apache/maven/plugins/shade/relocation/package-summary.html">org.apache.maven.plugins.shade.relocation</a>
+              		</td>
+            	</tr>
+	          	            	<tr>
+              		<td>
+                		<a href="org/apache/maven/plugins/shade/resource/package-summary.html">org.apache.maven.plugins.shade.resource</a>
+              		</td>
+            	</tr>
+	          	        	</tbody>
+      	</table>
+		
+				<div class="overview">
+			<ul>
+				<li class="selected">Overview</li>
+				<li>Package</li>
+			</ul>
+		</div>
+		<div class="framenoframe">
+			<ul>
+				<li>
+					<a href="index.html" target="_top">FRAMES</a>
+				</li>
+				<li>
+    	        	<a href="overview-summary.html" target="_top">NO FRAMES</a>
+        	  	</li>
+	        </ul>
+      	</div>
+		
+		<hr />
+		Copyright &copy; 2002-2009 The Apache Software Foundation. All Rights Reserved.
+	</body>
+</html>
\ No newline at end of file

Propchange: websites/production/maventest/content/plugins/maven-shade-plugin-latest/xref/overview-summary.html
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: websites/production/maventest/content/plugins/maven-shade-plugin-latest/xref/overview-summary.html
------------------------------------------------------------------------------
    svn:keywords = Author Date Id Revision

Added: websites/production/maventest/content/plugins/maven-shade-plugin-latest/xref/stylesheet.css
==============================================================================
--- websites/production/maventest/content/plugins/maven-shade-plugin-latest/xref/stylesheet.css (added)
+++ websites/production/maventest/content/plugins/maven-shade-plugin-latest/xref/stylesheet.css Tue May  8 13:18:10 2012
@@ -0,0 +1,116 @@
+/* Javadoc style sheet */
+/* Define colors, fonts and other style attributes here to override the defaults  */
+body {
+    background-color: #fff;
+    font-family: Arial, Helvetica, sans-serif;
+}
+
+a:link {
+    color: #00f;
+}
+a:visited {
+    color: #00a;
+}
+
+a:active, a:hover {
+    color: #f30 !important;
+}
+
+ul, li {
+    list-style-type:none;
+    margin:0;
+    padding:0;
+}
+
+table td {
+    padding: 3px;
+    border: 1px solid #000;
+}
+table {
+    width:100%;
+    border: 1px solid #000;
+    border-collapse: collapse;
+}
+
+div.overview {
+    background-color:#ddd;
+    padding: 4px 4px 4px 0;
+}
+div.overview li, div.framenoframe li {
+    display: inline;
+}
+div.framenoframe {
+    text-align: center;
+    font-size: x-small;
+}
+div.framenoframe li {
+    margin: 0 3px 0 3px;
+}
+div.overview li {
+    margin:3px 3px 0 3px;
+    padding: 4px;
+}
+li.selected {
+    background-color:#888;
+    color: #fff;
+    font-weight: bold;
+}
+
+table.summary {
+    margin-bottom: 20px;
+}
+table.summary td, table.summary th {
+    font-weight: bold;
+    text-align: left;
+    padding: 3px;
+}
+table.summary th {
+    background-color:#036;
+    color: #fff;
+}
+table.summary td {
+    background-color:#eee;
+    border: 1px solid black;
+}
+
+em {
+    color: #A00;
+}
+em.comment {
+    color: #390;
+}
+.string {
+    color: #009;
+}
+div#footer {
+    text-align:center;
+}
+#overview {
+    padding:2px;
+}
+
+hr {
+    height: 1px;
+    color: #000;
+}
+
+/* JXR style sheet */
+.jxr_comment
+{
+    color: #390;
+}
+
+.jxr_javadoccomment
+{
+    color: #A00;
+}
+
+.jxr_string
+{
+    color: #009;
+}
+
+.jxr_keyword
+{
+    color: #000;
+}
\ No newline at end of file

Propchange: websites/production/maventest/content/plugins/maven-shade-plugin-latest/xref/stylesheet.css
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: websites/production/maventest/content/plugins/maven-shade-plugin-latest/xref/stylesheet.css
------------------------------------------------------------------------------
    svn:keywords = Author Date Id Revision