You are viewing a plain text version of this content. The canonical link for it is here.
Posted to mapreduce-commits@hadoop.apache.org by tu...@apache.org on 2012/03/29 23:43:50 UTC

svn commit: r1307124 - in /hadoop/common/trunk/hadoop-mapreduce-project: CHANGES.txt hadoop-mapreduce-client/hadoop-mapreduce-client-app/pom.xml

Author: tucu
Date: Thu Mar 29 21:43:50 2012
New Revision: 1307124

URL: http://svn.apache.org/viewvc?rev=1307124&view=rev
Log:
hadoop-mapreduce-client-app's mrapp-generated-classpath file should not be in the module JAR (tucu)

Modified:
    hadoop/common/trunk/hadoop-mapreduce-project/CHANGES.txt
    hadoop/common/trunk/hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-app/pom.xml

Modified: hadoop/common/trunk/hadoop-mapreduce-project/CHANGES.txt
URL: http://svn.apache.org/viewvc/hadoop/common/trunk/hadoop-mapreduce-project/CHANGES.txt?rev=1307124&r1=1307123&r2=1307124&view=diff
==============================================================================
--- hadoop/common/trunk/hadoop-mapreduce-project/CHANGES.txt (original)
+++ hadoop/common/trunk/hadoop-mapreduce-project/CHANGES.txt Thu Mar 29 21:43:50 2012
@@ -185,6 +185,9 @@ Release 2.0.0 - UNRELEASED
     MAPREDUCE-4081. TestMROutputFormat.java does not compile (Jason Lowe via
     bobby)
 
+    MAPREDUCE-4082. hadoop-mapreduce-client-app's mrapp-generated-classpath 
+    file should not be in the module JAR (tucu)
+
 Release 0.23.2 - UNRELEASED
 
   INCOMPATIBLE CHANGES

Modified: hadoop/common/trunk/hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-app/pom.xml
URL: http://svn.apache.org/viewvc/hadoop/common/trunk/hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-app/pom.xml?rev=1307124&r1=1307123&r2=1307124&view=diff
==============================================================================
--- hadoop/common/trunk/hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-app/pom.xml (original)
+++ hadoop/common/trunk/hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-app/pom.xml Thu Mar 29 21:43:50 2012
@@ -97,7 +97,7 @@
               <goal>build-classpath</goal>
             </goals>
             <configuration>
-              <outputFile>target/classes/mrapp-generated-classpath</outputFile>
+              <outputFile>target/test-classes/mrapp-generated-classpath</outputFile>
             </configuration>
           </execution>
         </executions>