HBASE-636 java6 as a requirement

git-svn-id: https://svn.apache.org/repos/asf/hadoop/hbase/trunk@708727 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Michael Stack 2008-10-28 23:42:16 +00:00
parent ae27a2bc3f
commit a48210751c
2 changed files with 7 additions and 1 deletions

View File

@ -9,6 +9,7 @@ Release 0.19.0 - Unreleased
(Izaak Rubin via Stack)
HBASE-953 Enable BLOCKCACHE by default [WAS -> Reevaluate HBASE-288 block
caching work....?] -- Update your hbad-default.xml file!
HBASE-636 java6 as a requirement
BUG FIXES
HBASE-891 HRS.validateValuesLength throws IOE, gets caught in the retries

View File

@ -64,13 +64,14 @@
<property name="javac.deprecation" value="off"/>
<property name="javac.debug" value="on"/>
<property name="javac.version" value="1.6"/>
<property name="clover.db.dir" location="${build.dir}/test/clover/db"/>
<property name="clover.report.dir" location="${build.dir}/test/clover/reports"/>
<property name="javadoc.link.java"
value="http://java.sun.com/j2se/1.5/docs/api/"/>
value="http://java.sun.com/javase/6/docs/api/index.html"/>
<property name="javadoc.packages" value="org.apache.hadoop.hbase.*"/>
<property name="jarfile" value="${build.dir}/${final.name}.jar" />
@ -146,6 +147,8 @@
includes="**/*.java"
destdir="${build.classes}"
debug="${javac.debug}"
target="${javac.version}"
source="${javac.version}"
deprecation="${javac.deprecation}">
<classpath refid="classpath"/>
</javac>
@ -397,6 +400,8 @@
includes="**/*.java"
destdir="${build.test}"
debug="${javac.debug}"
target="${javac.version}"
source="${javac.version}"
deprecation="${javac.deprecation}">
<classpath refid="test.classpath"/>
</javac>