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 om...@apache.org on 2008/09/26 19:48:45 UTC

svn commit: r699432 - in /hadoop/core/branches/branch-0.19: CHANGES.txt build.xml

Author: omalley
Date: Fri Sep 26 10:48:44 2008
New Revision: 699432

URL: http://svn.apache.org/viewvc?rev=699432&view=rev
Log:
HADOOP-4259. Findbugs should run over tools.jar also. (cdouglas via omalley)

Modified:
    hadoop/core/branches/branch-0.19/CHANGES.txt
    hadoop/core/branches/branch-0.19/build.xml

Modified: hadoop/core/branches/branch-0.19/CHANGES.txt
URL: http://svn.apache.org/viewvc/hadoop/core/branches/branch-0.19/CHANGES.txt?rev=699432&r1=699431&r2=699432&view=diff
==============================================================================
--- hadoop/core/branches/branch-0.19/CHANGES.txt (original)
+++ hadoop/core/branches/branch-0.19/CHANGES.txt Fri Sep 26 10:48:44 2008
@@ -741,6 +741,9 @@
     terabytes properly. Implementation now uses StringUtils for parsing this.
     (Raghu Angadi)
 
+    HADOOP-4259. Findbugs should run over tools.jar also. (cdouglas via 
+    omalley)
+
 Release 0.18.2 - Unreleased
 
   BUG FIXES

Modified: hadoop/core/branches/branch-0.19/build.xml
URL: http://svn.apache.org/viewvc/hadoop/core/branches/branch-0.19/build.xml?rev=699432&r1=699431&r2=699432&view=diff
==============================================================================
--- hadoop/core/branches/branch-0.19/build.xml (original)
+++ hadoop/core/branches/branch-0.19/build.xml Fri Sep 26 10:48:44 2008
@@ -743,10 +743,12 @@
       <sourcePath path="${mapred.src.dir}"/>
       <sourcePath path="${hdfs.src.dir}"/>  	
       <sourcePath path="${examples.dir}" />
+      <sourcePath path="${tools.src}" />
       <sourcePath path="${basedir}/src/contrib/streaming/src/java" />
-      <class location="${basedir}/build/hadoop-${version}-core.jar" />
-      <class location="${basedir}/build/hadoop-${version}-examples.jar" />
-      <class location="${basedir}/build/contrib/streaming/hadoop-${version}-streaming.jar" />
+      <class location="${basedir}/build/${final.name}-core.jar" />
+      <class location="${basedir}/build/${final.name}-examples.jar" />
+      <class location="${basedir}/build/${final.name}-tools.jar" />
+      <class location="${basedir}/build/contrib/streaming/${final.name}-streaming.jar" />
     </findbugs>
   	
   	<xslt style="${findbugs.home}/src/xsl/default.xsl"