You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mahout.apache.org by ss...@apache.org on 2014/05/19 00:24:27 UTC

svn commit: r1595700 - in /mahout/trunk: pom.xml spark-shell/pom.xml spark/pom.xml

Author: sslavic
Date: Sun May 18 22:24:26 2014
New Revision: 1595700

URL: http://svn.apache.org/r1595700
Log:
Fixed Maven warnings (usage of deprecated pom.version, and missing plugin version for maven-scala-plugin)

Modified:
    mahout/trunk/pom.xml
    mahout/trunk/spark-shell/pom.xml
    mahout/trunk/spark/pom.xml

Modified: mahout/trunk/pom.xml
URL: http://svn.apache.org/viewvc/mahout/trunk/pom.xml?rev=1595700&r1=1595699&r2=1595700&view=diff
==============================================================================
--- mahout/trunk/pom.xml (original)
+++ mahout/trunk/pom.xml Sun May 18 22:24:26 2014
@@ -182,6 +182,24 @@
         <optional>true</optional>
       </dependency>
 
+      <dependency>
+        <artifactId>mahout-math-scala</artifactId>
+        <groupId>${project.groupId}</groupId>
+        <version>${project.version}</version>
+      </dependency>
+      <dependency>
+        <groupId>${project.groupId}</groupId>
+        <version>${project.version}</version>
+        <artifactId>mahout-math-scala</artifactId>
+        <classifier>tests</classifier>
+      </dependency>
+
+      <dependency>
+        <artifactId>mahout-spark</artifactId>
+        <groupId>${project.groupId}</groupId>
+        <version>${project.version}</version>
+      </dependency>
+
       <!-- 3rd party  -->
       <dependency>
         <groupId>org.apache.lucene</groupId>
@@ -525,6 +543,11 @@
           <artifactId>build-helper-maven-plugin</artifactId>
           <version>1.8</version>
         </plugin>
+        <plugin>
+          <groupId>org.scala-tools</groupId>
+          <artifactId>maven-scala-plugin</artifactId>
+          <version>2.15.2</version>
+        </plugin>
       </plugins>
     </pluginManagement>
     <plugins>

Modified: mahout/trunk/spark-shell/pom.xml
URL: http://svn.apache.org/viewvc/mahout/trunk/spark-shell/pom.xml?rev=1595700&r1=1595699&r2=1595700&view=diff
==============================================================================
--- mahout/trunk/spark-shell/pom.xml (original)
+++ mahout/trunk/spark-shell/pom.xml Sun May 18 22:24:26 2014
@@ -166,14 +166,12 @@
     <dependency>
       <groupId>org.apache.mahout</groupId>
       <artifactId>mahout-spark</artifactId>
-      <version>${pom.version}</version>
     </dependency>
 
     <dependency>
       <groupId>org.apache.mahout</groupId>
       <artifactId>mahout-math-scala</artifactId>
       <classifier>tests</classifier>
-      <version>${pom.version}</version>
       <scope>test</scope>
     </dependency>
 

Modified: mahout/trunk/spark/pom.xml
URL: http://svn.apache.org/viewvc/mahout/trunk/spark/pom.xml?rev=1595700&r1=1595699&r2=1595700&view=diff
==============================================================================
--- mahout/trunk/spark/pom.xml (original)
+++ mahout/trunk/spark/pom.xml Sun May 18 22:24:26 2014
@@ -181,7 +181,6 @@
         <dependency>
           <groupId>org.apache.mahout</groupId>
           <artifactId>mahout-mrlegacy</artifactId>
-          <version>${pom.version}</version>
           <exclusions>
             <exclusion>
               <groupId>asm</groupId>
@@ -235,7 +234,6 @@
       <dependency>
         <groupId>org.apache.mahout</groupId>
         <artifactId>mahout-mrlegacy</artifactId>
-        <version>${pom.version}</version>
         <exclusions>
           <exclusion>
             <groupId>asm</groupId>
@@ -274,7 +272,6 @@
     <dependency>
       <groupId>org.apache.mahout</groupId>
       <artifactId>mahout-mrlegacy</artifactId>
-      <version>${pom.version}</version>
       <exclusions>
         <exclusion>
           <groupId>asm</groupId>
@@ -286,14 +283,12 @@
     <dependency>
       <groupId>org.apache.mahout</groupId>
       <artifactId>mahout-math-scala</artifactId>
-      <version>${pom.version}</version>
     </dependency>
 
     <dependency>
       <groupId>org.apache.mahout</groupId>
       <artifactId>mahout-math-scala</artifactId>
       <classifier>tests</classifier>
-      <version>${pom.version}</version>
       <scope>test</scope>
     </dependency>