Author: sseth
Date: Tue Nov 29 01:13:42 2011
New Revision: 1207728

URL: http://svn.apache.org/viewvc?rev=1207728&view=rev
Log:
MAPREDUCE-3465. Fixed project pom to create test dirs - and fix failing tests. 
Contributed by Hitesh Shah

Modified:
    hadoop/common/branches/branch-0.23/hadoop-project/pom.xml

Modified: hadoop/common/branches/branch-0.23/hadoop-project/pom.xml
URL: 
http://svn.apache.org/viewvc/hadoop/common/branches/branch-0.23/hadoop-project/pom.xml?rev=1207728&r1=1207727&r2=1207728&view=diff
==============================================================================
--- hadoop/common/branches/branch-0.23/hadoop-project/pom.xml (original)
+++ hadoop/common/branches/branch-0.23/hadoop-project/pom.xml Tue Nov 29 
01:13:42 2011
@@ -578,6 +578,25 @@
       </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>
         <configuration>
           <source>1.6</source>


Reply via email to