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 2013/12/03 20:31:47 UTC

svn commit: r1547543 - in /mahout/trunk: examples/pom.xml pom.xml

Author: sslavic
Date: Tue Dec  3 19:31:47 2013
New Revision: 1547543

URL: http://svn.apache.org/r1547543
Log:
Reverted removal of copy-dependencies, it's required by mahout examples scripts

Modified:
    mahout/trunk/examples/pom.xml
    mahout/trunk/pom.xml

Modified: mahout/trunk/examples/pom.xml
URL: http://svn.apache.org/viewvc/mahout/trunk/examples/pom.xml?rev=1547543&r1=1547542&r2=1547543&view=diff
==============================================================================
--- mahout/trunk/examples/pom.xml (original)
+++ mahout/trunk/examples/pom.xml Tue Dec  3 19:31:47 2013
@@ -37,6 +37,23 @@
   </properties>
   <build>
     <plugins>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-dependency-plugin</artifactId>
+        <executions>
+          <execution>
+            <id>copy-dependencies</id>
+            <phase>package</phase>
+            <goals>
+              <goal>copy-dependencies</goal>
+            </goals>
+            <configuration>
+              <!-- configure the plugin here -->
+            </configuration>
+          </execution>
+        </executions>
+      </plugin>
+
       <!-- create examples hadoop job jar -->
       <plugin>
         <groupId>org.apache.maven.plugins</groupId>

Modified: mahout/trunk/pom.xml
URL: http://svn.apache.org/viewvc/mahout/trunk/pom.xml?rev=1547543&r1=1547542&r2=1547543&view=diff
==============================================================================
--- mahout/trunk/pom.xml (original)
+++ mahout/trunk/pom.xml Tue Dec  3 19:31:47 2013
@@ -449,6 +449,19 @@
               <pluginExecutions>
                 <pluginExecution>
                   <pluginExecutionFilter>
+                    <groupId>org.apache.maven.plugins</groupId>
+                    <artifactId>maven-dependency-plugin</artifactId>
+                    <versionRange>2.8</versionRange>
+                    <goals>
+                      <goal>copy-dependencies</goal>
+                    </goals>
+                  </pluginExecutionFilter>
+                  <action>
+                    <ignore />
+                  </action>
+                </pluginExecution>
+                <pluginExecution>
+                  <pluginExecutionFilter>
                     <groupId>org.apache.mahout</groupId>
                     <artifactId>mahout-collection-codegen-plugin</artifactId>
                     <versionRange>[1.0,)</versionRange>