HBASE-1221 When using ant -projecthelp to build HBase not all the important options show up.

git-svn-id: https://svn.apache.org/repos/asf/hadoop/hbase/trunk@748241 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Michael Stack 2009-02-26 17:58:31 +00:00
parent 89bf878a87
commit 5a9bdffadb
2 changed files with 7 additions and 4 deletions

View File

@ -59,6 +59,8 @@ Release 0.20.0 - Unreleased
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

View File

@ -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>