MAPREDUCE-3447. mapreduce examples not working (mahadev)

git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@1204695 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Mahadev Konar 2011-11-21 20:50:20 +00:00
parent 39ce694d05
commit 6ee82eefa8
2 changed files with 18 additions and 1 deletions

View File

@ -155,6 +155,8 @@ Release 0.23.1 - Unreleased
MAPREDUCE-3434. Nightly build broken (Hitesh Shah via mahadev)
MAPREDUCE-3447. mapreduce examples not working (mahadev)
Release 0.23.0 - 2011-11-01
INCOMPATIBLE CHANGES

View File

@ -44,5 +44,20 @@
<scope>provided</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<configuration>
<archive>
<manifest>
<mainClass>org.apache.hadoop.examples.ExampleDriver</mainClass>
</manifest>
</archive>
</configuration>
</plugin>
</plugins>
</build>
</project>