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:
parent
89bf878a87
commit
5a9bdffadb
|
@ -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
|
||||
|
|
|
@ -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>
|
||||
|
|
Loading…
Reference in New Issue