blob: 01af786256014df75d77f1fcd49d522a38813727 [file] [log] [blame]
<!--
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.
-->
<project basedir="." default="jar" name="pigudf">
<!-- javac properties -->
<property name="javac.debug" value="on" />
<property name="javac.level" value="source,lines,vars"/>
<property name="javac.optimize" value="on" />
<property name="javac.deprecation" value="off" />
<property name="javac.version" value="1.5" />
<property name="javac.args" value="" />
<!-- TODO we should use warning... <property name="javac.args.warnings" value="-Xlint:unchecked" /> -->
<property name="javac.args.warnings" value="" />
<!-- build properties -->
<property name="build.dir" value="${basedir}/build" />
<property name="build.classes" value="${build.dir}/classes" />
<property name="build.docs" value="${build.dir}/docs" />
<property name="build.javadoc" value="${build.docs}/api" />
<property name="pigjar" value="../../../pig.jar" />
<property name="udfjar" value="piggybank.jar" />
<property name="src.dir" value="src/main/java/org/apache/pig/piggybank" />
<!-- jar properties -->
<property name=".javadoc" value="${build.docs}/api" />
<!-- test properties -->
<property name="test.build.dir" value="${build.dir}/test" />
<property name="test.classes" value="${test.build.dir}/classes" />
<property name="test.logs" value="${test.build.dir}/logs" />
<property name="test.timeout" value="900000" />
<property name="test.junit.output.format" value="plain" />
<property name="test.src.dir" value="src/test/java" />
<path id="pigudf.classpath">
<pathelement location="${build.classes}"/>
<pathelement location="${pigjar}"/>
</path>
<path id="test.classpath">
<pathelement location="${build.classes}"/>
<pathelement location="${test.classes}"/>
<pathelement location="${pigjar}"/>
</path>
<target name="init">
<mkdir dir="${build.dir}"/>
<mkdir dir="${build.classes}"/>
<mkdir dir="${test.build.dir}"/>
<mkdir dir="${test.classes}"/>
<mkdir dir="${build.javadoc}"/>
</target>
<target name="clean">
<delete dir="build"/>
</target>
<target depends="init" name="compile" description="compile all of the class files">
<echo> *** Compiling Pig UDFs ***</echo>
<javac srcdir="${src.dir}" debug="${javac.debug}" debuglevel="${javac.level}" destdir="${build.classes}" source="${javac.version}"
target="${javac.version}" optimize="${javac.optimize}" deprecation="${javac.deprecation}">
<compilerarg line="${javac.args} ${javac.args.warnings}" />
<classpath refid="pigudf.classpath"/>
</javac>
</target>
<target depends="init,compile" name="jar" description="create the jar files">
<echo> *** Creating pigudf.jar ***</echo>
<jar destfile="${udfjar}">
<fileset dir="build/classes"/>
</jar>
</target>
<target depends="compile" name="compile-test">
<echo> *** Compiling UDF tests ***</echo>
<javac srcdir="${test.src.dir}" debug="true" debuglevel="${debuglevel}" destdir="${test.classes}" source="${javac.version}" target="${javac.version}">
<classpath refid="pigudf.classpath"/>
</javac>
</target>
<target depends="compile-test,jar" name="test">
<echo> *** Running UDF tests ***</echo>
<delete dir="${test.logs}"/>
<mkdir dir="${test.logs}"/>
<junit printsummary="yes" haltonfailure="no" fork="yes" maxmemory="256m" dir="${basedir}" timeout="${test.timeout}" errorProperty="tests.failed" failureProperty="tests.failed">
<classpath refid="test.classpath"/>
<formatter type="${test.junit.output.format}" />
<batchtest fork="yes" todir="${test.logs}" unless="testcase">
<fileset dir="${test.src.dir}">
<include name="**/*Test*.java" />
</fileset>
</batchtest>
<batchtest fork="yes" todir="${test.logs}" if="testcase">
<fileset dir="${test.src.dir}" includes="**/${testcase}.java"/>
</batchtest>
</junit>
<fail if="tests.failed">Tests failed!</fail>
</target>
<target depends="init" name="javadoc"
description="build javadoc for all of the packages">
<echo> *** Creating Javadocs ***</echo>
<javadoc destdir="build/javadoc"
author="true">
<fileset dir="${src.dir}/evaluation" includes="**/*.java"/>
<fileset dir="${src.dir}/storage" includes="**/*.java"/>
<fileset dir="${src.dir}/filtering" includes="**/*.java"/>
<fileset dir="${src.dir}/grouping" includes="**/*.java"/>
<fileset dir="${src.dir}/comparison" includes="**/*.java"/>
<classpath refid="pigudf.classpath"/>
</javadoc>
</target>
</project>