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/01/25 16:31:03 UTC

svn commit: r1063318 - in /mahout/trunk: core/pom.xml examples/pom.xml math/pom.xml pom.xml utils/pom.xml

Author: srowen
Date: Tue Jan 25 15:31:02 2011
New Revision: 1063318

URL: http://svn.apache.org/viewvc?rev=1063318&view=rev
Log:
MAHOUT-595 Add sources artifacts to Maven output

Modified:
    mahout/trunk/core/pom.xml
    mahout/trunk/examples/pom.xml
    mahout/trunk/math/pom.xml
    mahout/trunk/pom.xml
    mahout/trunk/utils/pom.xml

Modified: mahout/trunk/core/pom.xml
URL: http://svn.apache.org/viewvc/mahout/trunk/core/pom.xml?rev=1063318&r1=1063317&r2=1063318&view=diff
==============================================================================
--- mahout/trunk/core/pom.xml (original)
+++ mahout/trunk/core/pom.xml Tue Jan 25 15:31:02 2011
@@ -108,6 +108,10 @@
       </plugin>
 
       <plugin>
+        <artifactId>maven-source-plugin</artifactId>
+      </plugin>
+
+      <plugin>
         <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-remote-resources-plugin</artifactId>
         <configuration>

Modified: mahout/trunk/examples/pom.xml
URL: http://svn.apache.org/viewvc/mahout/trunk/examples/pom.xml?rev=1063318&r1=1063317&r2=1063318&view=diff
==============================================================================
--- mahout/trunk/examples/pom.xml (original)
+++ mahout/trunk/examples/pom.xml Tue Jan 25 15:31:02 2011
@@ -125,6 +125,10 @@
           </supplementalModels>
         </configuration>
       </plugin>
+
+      <plugin>
+        <artifactId>maven-source-plugin</artifactId>
+      </plugin>
     </plugins>
 
   </build>

Modified: mahout/trunk/math/pom.xml
URL: http://svn.apache.org/viewvc/mahout/trunk/math/pom.xml?rev=1063318&r1=1063317&r2=1063318&view=diff
==============================================================================
--- mahout/trunk/math/pom.xml (original)
+++ mahout/trunk/math/pom.xml Tue Jan 25 15:31:02 2011
@@ -69,6 +69,11 @@
       <plugin>
         <artifactId>maven-javadoc-plugin</artifactId>
       </plugin>
+
+      <plugin>
+        <artifactId>maven-source-plugin</artifactId>
+      </plugin>
+
       <plugin>
         <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-remote-resources-plugin</artifactId>

Modified: mahout/trunk/pom.xml
URL: http://svn.apache.org/viewvc/mahout/trunk/pom.xml?rev=1063318&r1=1063317&r2=1063318&view=diff
==============================================================================
--- mahout/trunk/pom.xml (original)
+++ mahout/trunk/pom.xml Tue Jan 25 15:31:02 2011
@@ -250,6 +250,15 @@
           <groupId>org.apache.maven.plugins</groupId>
           <artifactId>maven-source-plugin</artifactId>
           <version>2.1.2</version>
+          <executions>
+            <execution>
+              <id>attach-sources</id>
+              <phase>verify</phase>
+              <goals>
+                <goal>jar-no-fork</goal>
+              </goals>
+            </execution>
+          </executions>
         </plugin>
         <plugin>
           <groupId>org.apache.maven.plugins</groupId>

Modified: mahout/trunk/utils/pom.xml
URL: http://svn.apache.org/viewvc/mahout/trunk/utils/pom.xml?rev=1063318&r1=1063317&r2=1063318&view=diff
==============================================================================
--- mahout/trunk/utils/pom.xml (original)
+++ mahout/trunk/utils/pom.xml Tue Jan 25 15:31:02 2011
@@ -108,6 +108,10 @@
           </supplementalModels>
         </configuration>
       </plugin>
+
+      <plugin>
+        <artifactId>maven-source-plugin</artifactId>
+      </plugin>
     </plugins>
 
   </build>