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 dh...@apache.org on 2008/08/26 03:33:28 UTC

svn commit: r688933 - in /hadoop/core/trunk: CHANGES.txt src/contrib/failmon/build.xml

Author: dhruba
Date: Mon Aug 25 18:33:27 2008
New Revision: 688933

URL: http://svn.apache.org/viewvc?rev=688933&view=rev
Log:
HADOOP-3964. Fix javadoc warnings introduced by FailMon. (dhruba)


Modified:
    hadoop/core/trunk/CHANGES.txt
    hadoop/core/trunk/src/contrib/failmon/build.xml

Modified: hadoop/core/trunk/CHANGES.txt
URL: http://svn.apache.org/viewvc/hadoop/core/trunk/CHANGES.txt?rev=688933&r1=688932&r2=688933&view=diff
==============================================================================
--- hadoop/core/trunk/CHANGES.txt (original)
+++ hadoop/core/trunk/CHANGES.txt Mon Aug 25 18:33:27 2008
@@ -360,6 +360,8 @@
     HADOOP-3985. Fix TestHDFSServerPorts to use random ports.  (Hairong Kuang 
     via omalley)
 
+    HADOOP-3964. Fix javadoc warnings introduced by FailMon. (dhruba)
+
 Release 0.18.0 - 2008-08-19
 
   INCOMPATIBLE CHANGES

Modified: hadoop/core/trunk/src/contrib/failmon/build.xml
URL: http://svn.apache.org/viewvc/hadoop/core/trunk/src/contrib/failmon/build.xml?rev=688933&r1=688932&r2=688933&view=diff
==============================================================================
--- hadoop/core/trunk/src/contrib/failmon/build.xml (original)
+++ hadoop/core/trunk/src/contrib/failmon/build.xml Mon Aug 25 18:33:27 2008
@@ -33,23 +33,10 @@
     <!-- Copy the required files so that the jar can run independently
 	 of Hadoop source code -->
     
-    <mkdir dir="lib"/>
-  
-    <copy todir="lib">
-      <fileset dir="${hadoop.root}/lib/"
-	       includes="commons-logging-*, log4j*"/>
-    </copy>
-  
-    <copy todir="lib">
-      <fileset dir="${hadoop.root}/build/"
-	       includes="hadoop-*"/>
-    </copy>
-  
   <!-- create the list of files to add to the classpath -->
-  <fileset dir="${basedir}" id="class.path">
-    <include name="lib/commons-logging*.jar"/>
-    <include name="lib/log4j*.jar"/>
-    <include name="lib/hadoop-*.jar"/>
+  <fileset dir="${hadoop.root}/lib" id="class.path">
+    <include name="**/*.jar" />
+    <exclude name="**/excluded/" />
   </fileset>
   
   <pathconvert pathsep=" " property="failmon-class-path" refid="class.path">