You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mahout.apache.org by sr...@apache.org on 2011/08/03 15:15:30 UTC

svn commit: r1153473 - /mahout/trunk/examples/src/main/assembly/job.xml

Author: srowen
Date: Wed Aug  3 13:15:29 2011
New Revision: 1153473

URL: http://svn.apache.org/viewvc?rev=1153473&view=rev
Log:
MAHOUT-780 exclude unnecessary transitive dependency, creating a funny case-insensitive-file-system problem in unpacking the combined job jar

Modified:
    mahout/trunk/examples/src/main/assembly/job.xml

Modified: mahout/trunk/examples/src/main/assembly/job.xml
URL: http://svn.apache.org/viewvc/mahout/trunk/examples/src/main/assembly/job.xml?rev=1153473&r1=1153472&r2=1153473&view=diff
==============================================================================
--- mahout/trunk/examples/src/main/assembly/job.xml (original)
+++ mahout/trunk/examples/src/main/assembly/job.xml Wed Aug  3 13:15:29 2011
@@ -15,8 +15,10 @@
       <outputDirectory>/</outputDirectory>
       <excludes>
         <exclude>org.apache.hadoop:hadoop-core</exclude>
-        <exclude>META-INF</exclude>
-        <exclude>META-INF/**</exclude>
+        <!-- This jar contains a LICENSE file in the combined package. Another JAR includes
+          a licenses/ directory. That's OK except when unpacked on case-insensitive file
+          systems like Mac HFS+. Since this isn't really needed, we just remove it. -->
+        <exclude>com.github.stephenc.high-scale-lib:high-scale-lib</exclude>
       </excludes>
     </dependencySet>
   </dependencySets>