You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hbase.apache.org by st...@apache.org on 2009/02/26 18:58:31 UTC

svn commit: r748241 - in /hadoop/hbase/trunk: CHANGES.txt build.xml

Author: stack
Date: Thu Feb 26 17:58:31 2009
New Revision: 748241

URL: http://svn.apache.org/viewvc?rev=748241&view=rev
Log:
HBASE-1221 When using ant -projecthelp to build HBase not all the important options show up.

Modified:
    hadoop/hbase/trunk/CHANGES.txt
    hadoop/hbase/trunk/build.xml

Modified: hadoop/hbase/trunk/CHANGES.txt
URL: http://svn.apache.org/viewvc/hadoop/hbase/trunk/CHANGES.txt?rev=748241&r1=748240&r2=748241&view=diff
==============================================================================
--- hadoop/hbase/trunk/CHANGES.txt (original)
+++ hadoop/hbase/trunk/CHANGES.txt Thu Feb 26 17:58:31 2009
@@ -59,6 +59,8 @@
                be assigned to only 1-2 region servers
    HBASE-1210  Allow truncation of output for scan and get commands in shell
                (Lars George via Stack)
+   HBASE-1221  When using ant -projecthelp to build HBase not all the important
+               options show up (Erik Holstad via Stack)
 
 Release 0.19.0 - 01/21/2009
   INCOMPATIBLE CHANGES

Modified: hadoop/hbase/trunk/build.xml
URL: http://svn.apache.org/viewvc/hadoop/hbase/trunk/build.xml?rev=748241&r1=748240&r2=748241&view=diff
==============================================================================
--- hadoop/hbase/trunk/build.xml (original)
+++ hadoop/hbase/trunk/build.xml Thu Feb 26 17:58:31 2009
@@ -155,7 +155,7 @@
    </javac>
   </target>
 	
-  <target name="jar" depends="compile">
+  <target name="jar" depends="compile" description="Build jar">
     <!--Copy over any properties under src-->
     <copy todir="${build.classes}">
       <fileset dir="${src.dir}">
@@ -404,7 +404,7 @@
       redoing init and jscpc at this stage of the game; i.e. the prereqs
       for compile.  TODO: Investigate why.  For now, test will fail
       if not preceeded by manual 'jar' or 'compile' invokation -->
-  <target name="compile-test" depends="compile">
+  <target name="compile-test" depends="compile" description="Build test jar">
     <javac encoding="${build.encoding}" 
        srcdir="${src.test}" 
        includes="**/*.java" 
@@ -426,7 +426,8 @@
     </jar>
   </target>
 
-  <target name="test" depends="compile-test" >
+  <target name="test" depends="compile-test"
+  	description="Build test jar and run tests">
     <delete dir="${test.log.dir}"/>
     <mkdir dir="${test.log.dir}"/>
     <junit
@@ -460,7 +461,7 @@
   <!-- ================================================================== -->
   <!-- Clean.  Delete the build files, and their directories              -->
   <!-- ================================================================== -->
-  <target name="clean">
+  <target name="clean" description="Clean all old builds">
     <delete dir="${build.dir}"/>
   </target>
 </project>