You are viewing a plain text version of this content. The canonical link for it is here.
Posted to common-commits@hadoop.apache.org by ma...@apache.org on 2011/11/30 22:17:07 UTC

svn commit: r1208792 - /hadoop/common/trunk/hadoop-tools/hadoop-streaming/pom.xml

Author: mahadev
Date: Wed Nov 30 21:17:06 2011
New Revision: 1208792

URL: http://svn.apache.org/viewvc?rev=1208792&view=rev
Log:
MAPREDUCE-3488. Streaming jobs are failing because the main class isnt set in the pom files. (mahadev)

Modified:
    hadoop/common/trunk/hadoop-tools/hadoop-streaming/pom.xml

Modified: hadoop/common/trunk/hadoop-tools/hadoop-streaming/pom.xml
URL: http://svn.apache.org/viewvc/hadoop/common/trunk/hadoop-tools/hadoop-streaming/pom.xml?rev=1208792&r1=1208791&r2=1208792&view=diff
==============================================================================
--- hadoop/common/trunk/hadoop-tools/hadoop-streaming/pom.xml (original)
+++ hadoop/common/trunk/hadoop-tools/hadoop-streaming/pom.xml Wed Nov 30 21:17:06 2011
@@ -116,6 +116,17 @@
           </execution>
         </executions>
       </plugin>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-jar-plugin</artifactId>
+         <configuration>
+          <archive>
+           <manifest>
+            <mainClass>org.apache.hadoop.streaming.HadoopStreaming</mainClass>
+           </manifest>
+         </archive>
+        </configuration>
+       </plugin>
     </plugins>
   </build>
 </project>