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

svn commit: r933058 - in /lucene/mahout/trunk/collections: README.txt pom.xml src/main/assembly/ src/main/assembly/bin.xml src/main/assembly/doc.xml src/main/assembly/src.xml

Author: bimargulies
Date: Mon Apr 12 00:48:58 2010
New Revision: 933058

URL: http://svn.apache.org/viewvc?rev=933058&view=rev
Log:
Set up release materiel.

Added:
    lucene/mahout/trunk/collections/README.txt   (with props)
    lucene/mahout/trunk/collections/src/main/assembly/
    lucene/mahout/trunk/collections/src/main/assembly/bin.xml   (with props)
    lucene/mahout/trunk/collections/src/main/assembly/doc.xml   (with props)
    lucene/mahout/trunk/collections/src/main/assembly/src.xml   (with props)
Modified:
    lucene/mahout/trunk/collections/pom.xml

Added: lucene/mahout/trunk/collections/README.txt
URL: http://svn.apache.org/viewvc/lucene/mahout/trunk/collections/README.txt?rev=933058&view=auto
==============================================================================
--- lucene/mahout/trunk/collections/README.txt (added)
+++ lucene/mahout/trunk/collections/README.txt Mon Apr 12 00:48:58 2010
@@ -0,0 +1,26 @@
+====================================
+Mahout Collections
+====================================
+
+Mahout Collections is a set of classes that provide lists, sets, and
+maps of primitive types, and open hash tables of objects. 
+
+
+===================
+   Documentation
+===================
+ 
+Documentation can be found in the 'documents' distribution of this release and in
+the main site.
+
+===================
+      Support
+===================
+ 
+Any problem with this release can be reported to the mahout-user
+mailing list. 
+
+To the subscribe to the mailing list send an empty email to:
+
+  mahout-user-subscribe@lucene.apache.org
+

Propchange: lucene/mahout/trunk/collections/README.txt
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: lucene/mahout/trunk/collections/README.txt
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Modified: lucene/mahout/trunk/collections/pom.xml
URL: http://svn.apache.org/viewvc/lucene/mahout/trunk/collections/pom.xml?rev=933058&r1=933057&r2=933058&view=diff
==============================================================================
--- lucene/mahout/trunk/collections/pom.xml (original)
+++ lucene/mahout/trunk/collections/pom.xml Mon Apr 12 00:48:58 2010
@@ -52,6 +52,43 @@
             <goals>deploy</goals>
           </configuration>
         </plugin>
+        <plugin>
+          <artifactId>maven-assembly-plugin</artifactId>
+          <configuration>
+            <descriptors>
+              <descriptor>src/main/assembly/bin.xml</descriptor>
+              <descriptor>src/main/assembly/src.xml</descriptor>
+              <descriptor>src/main/assembly/doc.xml</descriptor>
+            </descriptors>
+            <tarLongFileMode>gnu</tarLongFileMode>
+          </configuration>
+        </plugin>
+        <plugin>
+          <artifactId>maven-site-plugin</artifactId>
+           <executions>
+             <execution>
+               <id>site</id>
+               <phase>package</phase>
+               <goals>
+                 <goal>site</goal>
+               </goals>
+             </execution>
+           </executions>
+         </plugin>
+        <plugin>
+          <artifactId>maven-source-plugin</artifactId>
+          <executions>
+            <execution>
+              <goals>
+                <goal>jar</goal>
+              </goals>
+            </execution>
+          </executions>
+          <configuration>
+            <attach>true</attach>
+          </configuration>
+        </plugin>
+
       </plugins>
     </pluginManagement>
     <plugins>
@@ -86,10 +123,9 @@
           </execution>
         </executions>
       </plugin>
-
       <plugin>
         <artifactId>maven-javadoc-plugin</artifactId>
-        <version>2.4</version>
+        <version>2.6.1</version>
       </plugin>
       <plugin>
         <groupId>org.apache.maven.plugins</groupId>

Added: lucene/mahout/trunk/collections/src/main/assembly/bin.xml
URL: http://svn.apache.org/viewvc/lucene/mahout/trunk/collections/src/main/assembly/bin.xml?rev=933058&view=auto
==============================================================================
--- lucene/mahout/trunk/collections/src/main/assembly/bin.xml (added)
+++ lucene/mahout/trunk/collections/src/main/assembly/bin.xml Mon Apr 12 00:48:58 2010
@@ -0,0 +1,78 @@
+<!--
+  ~ Licensed to the Apache Software Foundation (ASF) under one
+  ~ or more contributor license agreements. See the NOTICE file
+  ~ distributed with this work for additional information
+  ~ regarding copyright ownership. The ASF licenses this file
+  ~ to you under the Apache License, Version 2.0 (the
+  ~ "License"); you may not use this file except in compliance
+  ~ with the License. You may obtain a copy of the License at
+  ~
+  ~ http://www.apache.org/licenses/LICENSE-2.0
+  ~
+  ~ Unless required by applicable law or agreed to in writing,
+  ~ software distributed under the License is distributed on an
+  ~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+  ~ KIND, either express or implied. See the License for the
+  ~ specific language governing permissions and limitations
+  ~ under the License.
+  -->
+
+<assembly>
+    <id>bin</id>
+    <formats>
+        <format>zip</format>
+        <format>dir</format>
+    </formats>
+    <includeSiteDirectory>false</includeSiteDirectory>
+    <fileSets>
+        <fileSet>
+            <includes>
+                <include>*.txt</include>
+            </includes>
+			<!-- Note that we exclude these txt files and later copy them with
+				 filteres -->
+ 			<excludes>
+                <exclude>README.txt</exclude>
+                <exclude>RELEASE-NOTE.txt</exclude>
+            </excludes>
+        </fileSet>
+        <fileSet>
+            <directory>target</directory>
+            <outputDirectory></outputDirectory>
+            <includes>
+                <include>*.jar</include>
+            </includes>
+            <!-- exclude sources -->
+             <excludes>
+                <exclude>*-sources.jar</exclude>
+            </excludes>
+        </fileSet>
+       <fileSet>
+         <directory>target/maven-shared-archive-resources/META-INF</directory>
+         <outputDirectory>.</outputDirectory>
+         <includes>
+             <include>*</include>
+         </includes>
+         <excludes>
+             <exclude>DEPENDENCIES</exclude>
+         </excludes>
+     </fileSet>
+    </fileSets>
+    <files>
+	<file>
+      <source>README.txt</source>
+      <outputDirectory>/</outputDirectory>
+      <filtered>true</filtered>
+    </file>
+     <file>
+      <source>RELEASE-NOTE.txt</source>
+      <outputDirectory>/</outputDirectory>
+      <filtered>true</filtered>
+    </file>
+ </files>
+    <dependencySets>
+        <dependencySet>
+            <outputDirectory>/lib</outputDirectory>
+        </dependencySet>
+    </dependencySets>
+</assembly>

Propchange: lucene/mahout/trunk/collections/src/main/assembly/bin.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: lucene/mahout/trunk/collections/src/main/assembly/bin.xml
------------------------------------------------------------------------------
    svn:mime-type = text/xml

Added: lucene/mahout/trunk/collections/src/main/assembly/doc.xml
URL: http://svn.apache.org/viewvc/lucene/mahout/trunk/collections/src/main/assembly/doc.xml?rev=933058&view=auto
==============================================================================
--- lucene/mahout/trunk/collections/src/main/assembly/doc.xml (added)
+++ lucene/mahout/trunk/collections/src/main/assembly/doc.xml Mon Apr 12 00:48:58 2010
@@ -0,0 +1,61 @@
+<!--
+  ~ Licensed to the Apache Software Foundation (ASF) under one
+  ~ or more contributor license agreements. See the NOTICE file
+  ~ distributed with this work for additional information
+  ~ regarding copyright ownership. The ASF licenses this file
+  ~ to you under the Apache License, Version 2.0 (the
+  ~ "License"); you may not use this file except in compliance
+  ~ with the License. You may obtain a copy of the License at
+  ~
+  ~ http://www.apache.org/licenses/LICENSE-2.0
+  ~
+  ~ Unless required by applicable law or agreed to in writing,
+  ~ software distributed under the License is distributed on an
+  ~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+  ~ KIND, either express or implied. See the License for the
+  ~ specific language governing permissions and limitations
+  ~ under the License.
+  -->
+
+<assembly>
+    <id>docs</id>
+    <formats>
+        <format>zip</format>
+        <format>dir</format>
+    </formats>
+    <includeSiteDirectory>true</includeSiteDirectory>
+    <fileSets>
+        <fileSet>
+            <includes>
+                <include>*.txt</include>
+            </includes>
+            <excludes>
+               <exclude>README.txt</exclude>
+               <exclude>RELEASE-NOTE.txt</exclude>
+            </excludes>
+     </fileSet>
+        <fileSet>
+            <directory>target/maven-shared-archive-resources/META-INF</directory>
+            <outputDirectory>.</outputDirectory>
+            <includes>
+                <include>*</include>
+            </includes>
+            <excludes>
+                <exclude>DEPENDENCIES</exclude>
+            </excludes>
+        </fileSet>
+    </fileSets>
+    <files>
+     <file>
+       <source>README.txt</source>
+       <outputDirectory>/</outputDirectory>
+       <filtered>true</filtered>
+     </file>
+      <file>
+       <source>RELEASE-NOTE.txt</source>
+       <outputDirectory>/</outputDirectory>
+       <filtered>true</filtered>
+     </file>
+  </files>
+
+</assembly>

Propchange: lucene/mahout/trunk/collections/src/main/assembly/doc.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: lucene/mahout/trunk/collections/src/main/assembly/doc.xml
------------------------------------------------------------------------------
    svn:mime-type = text/xml

Added: lucene/mahout/trunk/collections/src/main/assembly/src.xml
URL: http://svn.apache.org/viewvc/lucene/mahout/trunk/collections/src/main/assembly/src.xml?rev=933058&view=auto
==============================================================================
--- lucene/mahout/trunk/collections/src/main/assembly/src.xml (added)
+++ lucene/mahout/trunk/collections/src/main/assembly/src.xml Mon Apr 12 00:48:58 2010
@@ -0,0 +1,66 @@
+<!--
+  ~ Licensed to the Apache Software Foundation (ASF) under one
+  ~ or more contributor license agreements. See the NOTICE file
+  ~ distributed with this work for additional information
+  ~ regarding copyright ownership. The ASF licenses this file
+  ~ to you under the Apache License, Version 2.0 (the
+  ~ "License"); you may not use this file except in compliance
+  ~ with the License. You may obtain a copy of the License at
+  ~
+  ~ http://www.apache.org/licenses/LICENSE-2.0
+  ~
+  ~ Unless required by applicable law or agreed to in writing,
+  ~ software distributed under the License is distributed on an
+  ~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+  ~ KIND, either express or implied. See the License for the
+  ~ specific language governing permissions and limitations
+  ~ under the License.
+  -->
+
+<assembly>
+  <id>src</id>
+  <formats>
+    <format>zip</format>
+    <format>dir</format>
+  </formats>
+  <fileSets>
+    <fileSet>
+      <includes>
+        <include>*.txt</include>
+        <include>*.xml</include>
+        <include>*.properties</include>
+      </includes>
+	 <!-- Note that we exclude these txt files and later copy them with
+		 filteres -->
+ 	  <excludes>
+         <exclude>README.txt</exclude>
+		 <exclude>RELEASE-NOTE.txt</exclude>
+      </excludes>
+    </fileSet>
+    <fileSet>
+      <directory>src</directory>
+    </fileSet>
+    <fileSet>
+        <directory>target/maven-shared-archive-resources/META-INF</directory>
+        <outputDirectory>.</outputDirectory>
+        <includes>
+            <include>*</include>
+        </includes>
+        <excludes>
+            <exclude>DEPENDENCIES</exclude>
+        </excludes>
+    </fileSet>
+  </fileSets>
+   <files>
+	<file>
+      <source>README.txt</source>
+      <outputDirectory>/</outputDirectory>
+      <filtered>true</filtered>
+    </file>
+     <file>
+      <source>RELEASE-NOTE.txt</source>
+      <outputDirectory>/</outputDirectory>
+      <filtered>true</filtered>
+    </file>
+ </files>
+</assembly>
\ No newline at end of file

Propchange: lucene/mahout/trunk/collections/src/main/assembly/src.xml
------------------------------------------------------------------------------
    svn:mime-type = text/xml