You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by jv...@apache.org on 2008/05/13 16:40:25 UTC

svn commit: r655884 - /maven/plugins/trunk/maven-shade-plugin/src/site/apt/examples.apt

Author: jvanzyl
Date: Tue May 13 07:40:25 2008
New Revision: 655884

URL: http://svn.apache.org/viewvc?rev=655884&view=rev
Log:
MSHADE-29: Fixing unmatched excludes
Submitted by: Michael Mattox

Modified:
    maven/plugins/trunk/maven-shade-plugin/src/site/apt/examples.apt

Modified: maven/plugins/trunk/maven-shade-plugin/src/site/apt/examples.apt
URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-shade-plugin/src/site/apt/examples.apt?rev=655884&r1=655883&r2=655884&view=diff
==============================================================================
--- maven/plugins/trunk/maven-shade-plugin/src/site/apt/examples.apt (original)
+++ maven/plugins/trunk/maven-shade-plugin/src/site/apt/examples.apt Tue May 13 07:40:25 2008
@@ -266,8 +266,8 @@
                   <include>org/junit/**</include>
                 </includes>
                 <excludes>
-                  <exclude>org/junit/experimental/**</include>
-                  <exclude>org/junit/runners/**</include>
+                  <exclude>org/junit/experimental/**</exclude>
+                  <exclude>org/junit/runners/**</exclude>
                 </excludes>
               </filter>
             </filters>
@@ -318,4 +318,4 @@
   </build>
   ...
 </project>
-+-----
\ No newline at end of file
++-----