MAPREDUCE-3465. Fixed project pom to create test dirs - and fix failing tests. Contributed by Hitesh Shah

git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/branches/branch-0.23@1207728 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Siddharth Seth 2011-11-29 01:13:42 +00:00
parent 441f6a3b05
commit 180b0177bb
2 changed files with 22 additions and 0 deletions

View File

@ -42,6 +42,9 @@ Release 0.23.1 - Unreleased
HADOOP-7859. TestViewFsHdfs.testgetFileLinkStatus is failing an assert. (eli)
MAPREDUCE-3465. Fixed project pom to create test dirs (and fix failing tests).
(Hitesh Shah via sseth)
Release 0.23.0 - 2011-11-01
INCOMPATIBLE CHANGES

View File

@ -576,6 +576,25 @@
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-antrun-plugin</artifactId>
<executions>
<execution>
<id>create-testdirs</id>
<phase>validate</phase>
<goals>
<goal>run</goal>
</goals>
<configuration>
<target>
<mkdir dir="${test.build.dir}"/>
<mkdir dir="${test.build.data}"/>
</target>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>