2007-04-03 16:34:28 -04:00
|
|
|
<?xml version="1.0"?>
|
|
|
|
|
2007-07-12 18:08:25 -04:00
|
|
|
<!--
|
2008-01-30 01:51:01 -05:00
|
|
|
Licensed to the Apache Software Foundation (ASF) under one or more
|
|
|
|
contributor license agreements. See the NOTICE file distributed with
|
|
|
|
this work for additional information regarding copyright ownership.
|
|
|
|
The ASF licenses this file to You under the Apache License, Version 2.0
|
|
|
|
(the "License"); you may not use this file except in compliance with
|
|
|
|
the License. You may obtain a copy of the License at
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
See the License for the specific language governing permissions and
|
|
|
|
limitations under the License.
|
2007-07-12 18:08:25 -04:00
|
|
|
-->
|
2008-01-30 01:51:01 -05:00
|
|
|
|
2007-04-03 16:34:28 -04:00
|
|
|
<project name="hbase" default="jar">
|
2008-02-04 21:32:22 -05:00
|
|
|
<property name="version" value="0.1.0-dev"/>
|
2008-02-05 00:44:48 -05:00
|
|
|
<property name="Name" value="HBase"/>
|
|
|
|
<property name="final.name" value="hbase-${version}"/>
|
|
|
|
<property name="year" value="2008"/>
|
2008-02-04 21:32:22 -05:00
|
|
|
|
2008-02-04 16:48:13 -05:00
|
|
|
<!-- Load all the default properties, and any the user wants -->
|
|
|
|
<!-- to contribute (without having to type -D or edit this file -->
|
|
|
|
<property file="${user.home}/${name}.build.properties" />
|
|
|
|
<property file="${basedir}/build.properties" />
|
2007-04-03 16:34:28 -04:00
|
|
|
|
2008-02-04 16:48:13 -05:00
|
|
|
<property name="src.dir" location="${basedir}/src/java"/>
|
|
|
|
<property name="src.test" location="${basedir}/src/test"/>
|
|
|
|
<property name="src.examples" location="${basedir}/src/examples"/>
|
|
|
|
<property name="src.webapps" location="${basedir}/src/webapps"/>
|
|
|
|
|
2008-02-04 17:30:08 -05:00
|
|
|
<property name="lib.dir" value="${basedir}/lib"/>
|
|
|
|
<property name="conf.dir" value="${basedir}/conf"/>
|
2008-02-05 00:44:48 -05:00
|
|
|
<property name="docs.dir" value="${basedir}/docs"/>
|
2008-02-04 17:30:08 -05:00
|
|
|
|
2008-02-04 16:48:13 -05:00
|
|
|
<property name="test.output" value="no"/>
|
|
|
|
<property name="test.timeout" value="900000"/>
|
|
|
|
|
|
|
|
<property name="build.dir" location="${basedir}/build"/>
|
|
|
|
<property name="build.bin" location="${build.dir}/bin"/>
|
|
|
|
<property name="build.conf" location="${build.dir}/conf"/>
|
2008-02-04 21:32:22 -05:00
|
|
|
<property name="build.webapps" location="${build.dir}/webapps"/>
|
2008-02-04 16:48:13 -05:00
|
|
|
<property name="build.lib" location="${build.dir}/lib"/>
|
|
|
|
<property name="build.classes" location="${build.dir}/classes"/>
|
|
|
|
<property name="build.test" location="${build.dir}/test"/>
|
|
|
|
<property name="build.examples" location="${build.dir}/examples"/>
|
2008-02-05 00:44:48 -05:00
|
|
|
<property name="build.docs" value="${build.dir}/docs"/>
|
|
|
|
<property name="build.javadoc" value="${build.docs}/api"/>
|
|
|
|
<property name="build.encoding" value="ISO-8859-1"/>
|
2008-02-04 16:48:13 -05:00
|
|
|
|
|
|
|
<property name="test.build.dir" value="${build.dir}/test"/>
|
|
|
|
<property name="test.log.dir" value="${test.build.dir}/logs"/>
|
|
|
|
<property name="test.junit.output.format" value="plain"/>
|
|
|
|
|
2008-02-05 00:44:48 -05:00
|
|
|
<property name="dist.dir" value="${build.dir}/${final.name}"/>
|
|
|
|
|
2008-02-04 16:48:13 -05:00
|
|
|
<property name="javac.deprecation" value="off"/>
|
|
|
|
<property name="javac.debug" value="on"/>
|
|
|
|
|
2008-02-05 00:44:48 -05:00
|
|
|
<property name="javadoc.link.java"
|
|
|
|
value="http://java.sun.com/j2se/1.5/docs/api/"/>
|
|
|
|
<property name="javadoc.packages" value="org.apache.hadoop.hbase.*"/>
|
2008-02-04 16:48:13 -05:00
|
|
|
|
|
|
|
|
2008-02-04 21:32:22 -05:00
|
|
|
<!--We need to have the hadoop jars ride in front of the hbase classes or we
|
|
|
|
get the below exceptions:
|
|
|
|
|
|
|
|
[junit] java.io.FileNotFoundException: file:/Users/stack/Documents/checkouts/hbase/trunk/build/webapps/dfs
|
2008-02-04 16:48:13 -05:00
|
|
|
|
2008-02-04 21:32:22 -05:00
|
|
|
When we move off 0.16.0 hadoop, fix HttpStatusServer
|
|
|
|
-->
|
|
|
|
<fileset id="lib.jars" dir="${basedir}" includes="lib/*.jar"/>
|
2008-02-04 16:48:13 -05:00
|
|
|
<path id="classpath">
|
|
|
|
<fileset refid="lib.jars"/>
|
2008-02-04 21:32:22 -05:00
|
|
|
<fileset dir="${lib.dir}/jetty-ext/">
|
|
|
|
<include name="*jar" />
|
2008-02-04 17:30:08 -05:00
|
|
|
</fileset>
|
2008-02-04 21:32:22 -05:00
|
|
|
<pathelement location="${build.classes}"/>
|
2008-02-04 17:30:08 -05:00
|
|
|
<pathelement location="${conf.dir}"/>
|
2008-02-04 16:48:13 -05:00
|
|
|
</path>
|
2007-10-05 23:09:50 -04:00
|
|
|
|
|
|
|
<target name="init">
|
2008-02-04 16:48:13 -05:00
|
|
|
<mkdir dir="${build.dir}"/>
|
|
|
|
<mkdir dir="${build.classes}"/>
|
|
|
|
<mkdir dir="${build.test}"/>
|
|
|
|
<mkdir dir="${build.examples}"/>
|
|
|
|
|
2007-10-05 23:09:50 -04:00
|
|
|
<!--Copy webapps over to build dir. Exclude jsp and generated-src java
|
|
|
|
classes -->
|
|
|
|
<mkdir dir="${build.webapps}"/>
|
|
|
|
<copy todir="${build.webapps}">
|
|
|
|
<fileset dir="${src.webapps}">
|
|
|
|
<exclude name="**/*.jsp" />
|
|
|
|
<exclude name="**/.*" />
|
|
|
|
<exclude name="**/*~" />
|
|
|
|
</fileset>
|
|
|
|
</copy>
|
2007-10-26 12:16:53 -04:00
|
|
|
<!--Copy bin, lib, and conf. too-->
|
|
|
|
<mkdir dir="${build.lib}"/>
|
|
|
|
<copy todir="${build.lib}">
|
2008-02-04 21:32:22 -05:00
|
|
|
<fileset dir="${lib.dir}" />
|
2007-10-26 12:16:53 -04:00
|
|
|
</copy>
|
|
|
|
<mkdir dir="${build.conf}"/>
|
|
|
|
<copy todir="${build.conf}">
|
|
|
|
<fileset dir="${basedir}/conf" />
|
|
|
|
</copy>
|
|
|
|
<mkdir dir="${build.bin}"/>
|
|
|
|
<copy todir="${build.bin}">
|
|
|
|
<fileset dir="${basedir}/bin" />
|
|
|
|
</copy>
|
|
|
|
<chmod perm="ugo+x" type="file">
|
|
|
|
<fileset dir="${build.bin}" />
|
|
|
|
</chmod>
|
2008-02-04 21:32:22 -05:00
|
|
|
<exec executable="sh">
|
|
|
|
<arg line="src/saveVersion.sh ${version}"/>
|
|
|
|
</exec>
|
2007-10-05 23:09:50 -04:00
|
|
|
</target>
|
|
|
|
|
|
|
|
<target name="javacc" if="javacc.home">
|
2008-02-04 16:48:13 -05:00
|
|
|
<echo message="javacc.home: ${javacc.home}"/>
|
|
|
|
<property name="hql.src.dir"
|
2008-01-15 00:14:34 -05:00
|
|
|
value="${src.dir}/org/apache/hadoop/hbase/hql" />
|
|
|
|
<mkdir dir="${hql.src.dir}/generated" />
|
2007-10-05 23:09:50 -04:00
|
|
|
<javacc
|
2008-01-15 00:14:34 -05:00
|
|
|
target="${hql.src.dir}/HQLParser.jj"
|
|
|
|
outputdirectory="${hql.src.dir}/generated"
|
2007-10-05 23:09:50 -04:00
|
|
|
javacchome="${javacc.home}"
|
|
|
|
/>
|
|
|
|
</target>
|
2007-07-11 17:54:15 -04:00
|
|
|
|
2007-10-05 23:09:50 -04:00
|
|
|
<target name="compile" depends="init,javacc">
|
|
|
|
<!--Compile whats under src and generated java classes made from jsp-->
|
2007-07-11 17:54:15 -04:00
|
|
|
<javac
|
|
|
|
encoding="${build.encoding}"
|
|
|
|
srcdir="${src.dir}"
|
|
|
|
includes="**/*.java"
|
|
|
|
destdir="${build.classes}"
|
|
|
|
debug="${javac.debug}"
|
|
|
|
deprecation="${javac.deprecation}">
|
|
|
|
<classpath refid="classpath"/>
|
|
|
|
</javac>
|
2007-10-05 23:09:50 -04:00
|
|
|
</target>
|
2007-07-11 17:54:15 -04:00
|
|
|
|
2007-04-03 16:34:28 -04:00
|
|
|
<!-- Override jar target to specify main class -->
|
|
|
|
<target name="jar" depends="compile">
|
2008-02-05 00:44:48 -05:00
|
|
|
<jar jarfile="${build.dir}/${final.name}.jar"
|
2007-09-21 16:03:54 -04:00
|
|
|
basedir="${build.classes}" >
|
2008-02-04 16:48:13 -05:00
|
|
|
<fileset file="${basedir}/conf/hbase-default.xml"/>
|
2007-10-05 23:09:50 -04:00
|
|
|
<zipfileset dir="${build.webapps}" prefix="webapps"/>
|
2007-09-21 16:03:54 -04:00
|
|
|
</jar>
|
2007-04-03 16:34:28 -04:00
|
|
|
</target>
|
2007-06-11 19:41:48 -04:00
|
|
|
|
2008-02-05 00:44:48 -05:00
|
|
|
<!-- ================================================================== -->
|
|
|
|
<!-- Package -->
|
|
|
|
<!-- ================================================================== -->
|
|
|
|
<target name="package" depends="jar,javadoc,compile-test"
|
|
|
|
description="Build distribution">
|
|
|
|
<mkdir dir="${dist.dir}"/>
|
|
|
|
<copy todir="${dist.dir}" includeEmptyDirs="false" flatten="true">
|
2007-11-26 19:23:37 -05:00
|
|
|
<fileset dir="${build.dir}">
|
2008-02-05 00:44:48 -05:00
|
|
|
<include name="${final.name}.jar" />
|
|
|
|
<include name="${final.name}-test.jar" />
|
2007-11-26 19:23:37 -05:00
|
|
|
</fileset>
|
|
|
|
</copy>
|
2008-02-05 00:44:48 -05:00
|
|
|
<mkdir dir="${dist.dir}/webapps"/>
|
|
|
|
<copy todir="${dist.dir}/webapps">
|
2007-11-26 19:23:37 -05:00
|
|
|
<fileset dir="${build.webapps}" />
|
|
|
|
</copy>
|
2008-02-05 00:44:48 -05:00
|
|
|
<mkdir dir="${dist.dir}/lib"/>
|
|
|
|
<copy todir="${dist.dir}/lib">
|
2007-11-26 19:23:37 -05:00
|
|
|
<fileset dir="${build.lib}" />
|
|
|
|
</copy>
|
2008-02-05 00:44:48 -05:00
|
|
|
<mkdir dir="${dist.dir}/conf" />
|
|
|
|
<copy todir="${dist.dir}/conf">
|
2007-11-26 19:23:37 -05:00
|
|
|
<fileset dir="${build.conf}" />
|
|
|
|
</copy>
|
2008-02-05 00:44:48 -05:00
|
|
|
<mkdir dir="${dist.dir}/bin" />
|
|
|
|
<copy todir="${dist.dir}/bin">
|
2007-11-26 19:23:37 -05:00
|
|
|
<fileset dir="${build.bin}" />
|
|
|
|
</copy>
|
|
|
|
<chmod perm="ugo+x" type="file">
|
2008-02-05 00:44:48 -05:00
|
|
|
<fileset dir="${dist.dir}/bin" />
|
2007-11-26 19:23:37 -05:00
|
|
|
</chmod>
|
2008-02-05 00:44:48 -05:00
|
|
|
<!--Uncomment when we have a docs dir
|
|
|
|
<mkdir dir="${dist.dir}/docs" />
|
|
|
|
<copy todir="${dist.dir}/docs">
|
|
|
|
<fileset dir="${docs.dir}" />
|
|
|
|
<fileset dir="${build.docs}"/>
|
|
|
|
</copy>
|
|
|
|
-->
|
|
|
|
<copy todir="${dist.dir}">
|
|
|
|
<fileset dir=".">
|
|
|
|
<include name="*.txt" />
|
|
|
|
</fileset>
|
|
|
|
</copy>
|
|
|
|
<mkdir dir="${dist.dir}/src" />
|
|
|
|
<copy todir="${dist.dir}/src" includeEmptyDirs="true">
|
|
|
|
<fileset dir="src" excludes="**/*.template **/docs/build/**/*"/>
|
|
|
|
</copy>
|
2007-11-26 19:23:37 -05:00
|
|
|
</target>
|
|
|
|
|
2008-02-05 00:44:48 -05:00
|
|
|
<!-- ================================================================== -->
|
|
|
|
<!-- Make release tarball -->
|
|
|
|
<!-- ================================================================== -->
|
|
|
|
<macrodef name="macro_tar" description="Worker Macro for tar">
|
|
|
|
<attribute name="param.destfile"/>
|
|
|
|
<element name="param.listofitems"/>
|
|
|
|
<sequential>
|
|
|
|
<tar compression="gzip" longfile="gnu"
|
|
|
|
destfile="@{param.destfile}">
|
|
|
|
<param.listofitems/>
|
|
|
|
</tar>
|
|
|
|
</sequential>
|
|
|
|
</macrodef>
|
|
|
|
<target name="tar" depends="package" description="Make release tarball">
|
|
|
|
<macro_tar param.destfile="${build.dir}/${final.name}.tar.gz">
|
|
|
|
<param.listofitems>
|
|
|
|
<tarfileset dir="${build.dir}" mode="664">
|
|
|
|
<exclude name="${final.name}/bin/*" />
|
|
|
|
<include name="${final.name}/**" />
|
|
|
|
</tarfileset>
|
|
|
|
<tarfileset dir="${build.dir}" mode="755">
|
|
|
|
<include name="${final.name}/bin/*" />
|
|
|
|
</tarfileset>
|
|
|
|
</param.listofitems>
|
|
|
|
</macro_tar>
|
|
|
|
</target>
|
|
|
|
|
|
|
|
<target name="binary" depends="package" description="Make tarball without source and documentation">
|
|
|
|
<macro_tar param.destfile="${build.dir}/${final.name}-bin.tar.gz">
|
|
|
|
<param.listofitems>
|
|
|
|
<tarfileset dir="${build.dir}" mode="664">
|
|
|
|
<exclude name="${final.name}/bin/*" />
|
|
|
|
<exclude name="${final.name}/src/**" />
|
|
|
|
<exclude name="${final.name}/docs/**" />
|
|
|
|
<include name="${final.name}/**" />
|
|
|
|
</tarfileset>
|
|
|
|
<tarfileset dir="${build.dir}" mode="755">
|
|
|
|
<include name="${final.name}/bin/*" />
|
|
|
|
</tarfileset>
|
|
|
|
</param.listofitems>
|
|
|
|
</macro_tar>
|
|
|
|
</target>
|
|
|
|
|
|
|
|
<!-- ================================================================== -->
|
|
|
|
<!-- Javadoc -->
|
|
|
|
<!-- ================================================================== -->
|
|
|
|
<target name="javadoc" description="Generate javadoc">
|
|
|
|
<mkdir dir="${build.javadoc}"/>
|
|
|
|
<javadoc
|
|
|
|
overview="${src.dir}/overview.html"
|
|
|
|
packagenames="org.apache.hadoop.hbase.*"
|
|
|
|
destdir="${build.javadoc}"
|
|
|
|
author="true"
|
|
|
|
version="true"
|
|
|
|
use="true"
|
|
|
|
windowtitle="${Name} ${version} API"
|
|
|
|
doctitle="${Name} ${version} API"
|
|
|
|
bottom="Copyright &copy; ${year} The Apache Software Foundation"
|
|
|
|
>
|
|
|
|
<packageset dir="${src.dir}"/>
|
|
|
|
<link href="${javadoc.link.java}"/>
|
|
|
|
<classpath >
|
|
|
|
<path refid="classpath" />
|
|
|
|
<pathelement path="${java.class.path}"/>
|
|
|
|
</classpath>
|
|
|
|
<group title="${Name}" packages="org.apache.hadoop.hbase.*"/>
|
|
|
|
</javadoc>
|
|
|
|
</target>
|
|
|
|
|
2008-02-04 16:56:34 -05:00
|
|
|
<!-- ================================================================== -->
|
|
|
|
<!-- Run unit tests -->
|
|
|
|
<!-- ================================================================== -->
|
|
|
|
<path id="test.classpath">
|
2008-02-04 21:32:22 -05:00
|
|
|
<path refid="classpath"/>
|
2008-02-04 16:56:34 -05:00
|
|
|
<pathelement location="${build.test}" />
|
|
|
|
<pathelement location="${src.test}"/>
|
|
|
|
<pathelement location="${conf.dir}"/>
|
|
|
|
<pathelement location="${build.dir}"/>
|
2008-02-04 21:32:22 -05:00
|
|
|
<pathelement location="${build.webapps}"/>
|
2008-02-04 16:56:34 -05:00
|
|
|
</path>
|
2007-11-26 19:23:37 -05:00
|
|
|
|
2008-02-04 16:48:13 -05:00
|
|
|
<target name="compile-test" depends="compile" >
|
2008-02-04 16:56:34 -05:00
|
|
|
<javac encoding="${build.encoding}"
|
|
|
|
srcdir="${src.test}"
|
|
|
|
includes="**/*.java"
|
|
|
|
destdir="${build.test}"
|
|
|
|
debug="${javac.debug}">
|
|
|
|
<classpath refid="test.classpath"/>
|
2007-06-11 19:41:48 -04:00
|
|
|
</javac>
|
2008-02-05 00:44:48 -05:00
|
|
|
<jar jarfile="${build.dir}/${final.name}-test.jar" >
|
2007-06-11 19:41:48 -04:00
|
|
|
<fileset dir="${build.test}" includes="org/**" />
|
|
|
|
<fileset dir="${build.classes}" />
|
|
|
|
<fileset dir="${src.test}" includes="**/*.properties" />
|
|
|
|
<manifest>
|
|
|
|
<attribute name="Main-Class"
|
|
|
|
value="org/apache/hadoop/hbase/PerformanceEvaluation"/>
|
|
|
|
</manifest>
|
|
|
|
</jar>
|
|
|
|
</target>
|
2007-06-21 16:40:45 -04:00
|
|
|
|
2008-02-04 16:48:13 -05:00
|
|
|
<target name="test" depends="compile-test, compile" >
|
|
|
|
<delete dir="${test.log.dir}"/>
|
|
|
|
<mkdir dir="${test.log.dir}"/>
|
|
|
|
<junit
|
|
|
|
printsummary="yes" showoutput="${test.output}"
|
|
|
|
haltonfailure="no" fork="yes" maxmemory="256m"
|
|
|
|
errorProperty="tests.failed" failureProperty="tests.failed"
|
|
|
|
timeout="${test.timeout}">
|
|
|
|
|
|
|
|
<sysproperty key="test.build.data" value="${build.test}/data"/>
|
|
|
|
<sysproperty key="build.test" value="${build.test}"/>
|
|
|
|
<sysproperty key="contrib.name" value="${name}"/>
|
|
|
|
|
|
|
|
<!-- requires fork=yes for:
|
|
|
|
relative File paths to use the specified user.dir
|
|
|
|
classpath to use build/contrib/*.jar
|
|
|
|
-->
|
|
|
|
<sysproperty key="user.dir" value="${build.test}/data"/>
|
|
|
|
|
|
|
|
<sysproperty key="fs.default.name" value="${fs.default.name}"/>
|
|
|
|
<sysproperty key="hadoop.test.localoutputfile" value="${hadoop.test.localoutputfile}"/>
|
|
|
|
<sysproperty key="test.log.dir" value="${hadoop.log.dir}"/>
|
|
|
|
<classpath refid="test.classpath"/>
|
|
|
|
<formatter type="${test.junit.output.format}" />
|
|
|
|
<batchtest todir="${build.test}" unless="testcase">
|
|
|
|
<fileset dir="${src.test}"
|
|
|
|
includes="**/Test*.java" excludes="**/${test.exclude}.java" />
|
|
|
|
</batchtest>
|
|
|
|
<batchtest todir="${build.test}" if="testcase">
|
|
|
|
<fileset dir="${src.test}" includes="**/${testcase}.java"/>
|
|
|
|
</batchtest>
|
|
|
|
</junit>
|
|
|
|
<fail if="tests.failed">Tests failed!</fail>
|
|
|
|
</target>
|
|
|
|
|
|
|
|
<!-- ================================================================== -->
|
|
|
|
<!-- Clean. Delete the build files, and their directories -->
|
|
|
|
<!-- ================================================================== -->
|
|
|
|
<target name="clean">
|
|
|
|
<delete dir="${build.dir}"/>
|
|
|
|
</target>
|
2007-04-03 16:34:28 -04:00
|
|
|
</project>
|