You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mahout.apache.org by jm...@apache.org on 2010/02/02 06:59:33 UTC

svn commit: r905524 - in /lucene/mahout/trunk/src/main/assembly: ./ bin.xml src.xml

Author: jmannix
Date: Tue Feb  2 05:59:27 2010
New Revision: 905524

URL: http://svn.apache.org/viewvc?rev=905524&view=rev
Log:
Missing files from MAHOUT-215

Added:
    lucene/mahout/trunk/src/main/assembly/
    lucene/mahout/trunk/src/main/assembly/bin.xml
    lucene/mahout/trunk/src/main/assembly/src.xml

Added: lucene/mahout/trunk/src/main/assembly/bin.xml
URL: http://svn.apache.org/viewvc/lucene/mahout/trunk/src/main/assembly/bin.xml?rev=905524&view=auto
==============================================================================
--- lucene/mahout/trunk/src/main/assembly/bin.xml (added)
+++ lucene/mahout/trunk/src/main/assembly/bin.xml Tue Feb  2 05:59:27 2010
@@ -0,0 +1,77 @@
+<assembly xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.0"
+  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+  xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.0 http://maven.apache.org/xsd/assembly-1.1.0.xsd">
+  <id>bin</id>
+  <formats>
+    <format>tar.gz</format>
+    <format>tar.bz2</format>
+    <format>zip</format>
+  </formats>
+
+  <moduleSets>
+    <moduleSet>
+      <includes>
+        <include>org.apache.mahout:mahout-math</include>
+        <include>org.apache.mahout:mahout-core</include>
+        <include>org.apache.mahout:mahout-utils</include>
+        <include>org.apache.mahout:mahout-examples</include>
+        <include>org.apache.mahout:mahout-taste-webapp</include>
+      </includes>
+      <binaries>
+        <outputDirectory/>
+        <unpack>false</unpack>
+         <dependencySets>
+          <dependencySet>
+            <excludes>
+              <exclude>org.apache.mahout:*</exclude>
+            </excludes>
+            <outputDirectory>lib</outputDirectory>
+          </dependencySet>
+        </dependencySets>
+      </binaries>
+    </moduleSet>
+  </moduleSets>
+
+  <fileSets>
+    <fileSet>
+      <directory>core/target</directory>
+      <includes>
+        <include>*.job</include>
+      </includes>
+      <outputDirectory/>
+    </fileSet>
+    <fileSet>
+      <directory>examples/target</directory>
+      <includes>
+        <include>*.job</include>
+      </includes>
+      <outputDirectory/>
+    </fileSet>
+    <fileSet>
+      <directory>math/target/apidocs</directory>
+      <outputDirectory>docs/mahout-math</outputDirectory>
+    </fileSet>
+    <fileSet>
+      <directory>core/target/apidocs</directory>
+      <outputDirectory>docs/mahout-core</outputDirectory>
+    </fileSet>
+    <fileSet>
+      <directory>utils/target/apidocs</directory>
+      <outputDirectory>docs/mahout-utils</outputDirectory>
+    </fileSet>
+    <fileSet>
+      <directory>examples/target/apidocs</directory>
+      <outputDirectory>docs/mahout-examples</outputDirectory>
+    </fileSet>
+    <fileSet>
+      <directory></directory>
+      <outputDirectory/>
+      <includes>
+        <include>README*</include>
+        <include>LICENSE*</include>
+        <include>NOTICE*</include>
+        <include>KEYS</include>
+      </includes>
+    </fileSet>
+  </fileSets>
+</assembly>

Added: lucene/mahout/trunk/src/main/assembly/src.xml
URL: http://svn.apache.org/viewvc/lucene/mahout/trunk/src/main/assembly/src.xml?rev=905524&view=auto
==============================================================================
--- lucene/mahout/trunk/src/main/assembly/src.xml (added)
+++ lucene/mahout/trunk/src/main/assembly/src.xml Tue Feb  2 05:59:27 2010
@@ -0,0 +1,30 @@
+<assembly xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.0"
+  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+  xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.0 http://maven.apache.org/xsd/assembly-1.1.0.xsd">
+  <id>src</id>
+  <formats>
+    <format>tar.gz</format>
+    <format>tar.bz2</format>
+    <format>zip</format>
+  </formats>
+  <fileSets>
+    <fileSet>
+      <directory/>
+      <outputDirectory/>
+      <useDefaultExcludes>true</useDefaultExcludes>
+      <includes>
+        <include>${project.basedir}/**/README*</include>
+        <include>${project.basedir}/**/LICENSE*</include>
+        <include>${project.basedir}/**/NOTICE*</include>
+        <include>${project.basedir}/**/pom.xml</include>
+        <include>${project.basedir}/**/src/**</include>
+        <include>${project.basedir}/**/build.xml</include>
+        <include>${project.basedir}/**/*.properties</include>
+      </includes>
+      <excludes>
+        <exclude>target/**</exclude>
+        <exclude>**/target/**</exclude>
+      </excludes>
+    </fileSet>
+  </fileSets>
+</assembly>