HBASE-1595 hadoop-default.xml and zoo.cfg in hbase jar

git-svn-id: https://svn.apache.org/repos/asf/hadoop/hbase/trunk@789995 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Michael Stack 2009-06-30 22:41:37 +00:00
parent c6fab79fba
commit 0f17f20cfd
2 changed files with 5 additions and 1 deletions

View File

@ -236,6 +236,7 @@ Release 0.20.0 - Unreleased
HBASE-1582 Translate ColumnValueFilter and RowFilterSet to the new Filter
interface
HBASE-1594 Fix scan addcolumns after hbase-1385 commit (broken hudson build)
HBASE-1595 hadoop-default.xml and zoo.cfg in hbase jar
IMPROVEMENTS
HBASE-1089 Add count of regions on filesystem to master UI; add percentage

View File

@ -182,10 +182,13 @@
</fileset>
</copy>
<jar jarfile="${jarfile}" basedir="${build.classes}" >
<fileset dir="${conf.dir}" >
<include name="hbase-default.xml" />
</fileset>
<zipfileset dir="conf" prefix="conf" includes="zoo.cfg,hbase-default.xml" />
<zipfileset dir="${build.webapps}" prefix="webapps"/>
<manifest>
<attribute name="Main-Class" value="org/apache/hadoop/hbase/mapred/Driver" />
<attribute name="Main-Class" value="org/apache/hadoop/hbase/mapreduce/Driver" />
</manifest>
</jar>
</target>