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 2008/10/29 00:42:16 UTC

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

Author: stack
Date: Tue Oct 28 16:42:16 2008
New Revision: 708727

URL: http://svn.apache.org/viewvc?rev=708727&view=rev
Log:
HBASE-636 java6 as a requirement

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=708727&r1=708726&r2=708727&view=diff
==============================================================================
--- hadoop/hbase/trunk/CHANGES.txt (original)
+++ hadoop/hbase/trunk/CHANGES.txt Tue Oct 28 16:42:16 2008
@@ -9,6 +9,7 @@
                (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

Modified: hadoop/hbase/trunk/build.xml
URL: http://svn.apache.org/viewvc/hadoop/hbase/trunk/build.xml?rev=708727&r1=708726&r2=708727&view=diff
==============================================================================
--- hadoop/hbase/trunk/build.xml (original)
+++ hadoop/hbase/trunk/build.xml Tue Oct 28 16:42:16 2008
@@ -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>