| <?xml version="1.0"?> |
| |
| <!-- |
| 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. |
| --> |
| |
| <!-- Imported by contrib/*/build.xml files to share generic targets. --> |
| |
| <project name="chukwacontrib" xmlns:ivy="antlib:org.apache.ivy.ant"> |
| |
| <property name="name" value="${ant.project.name}"/> |
| <property name="root" value="../../"/> |
| |
| <!-- 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="${root}/build.properties" /> |
| |
| <property name="test.output" value="no"/> |
| <property name="test.timeout" value="900000"/> |
| <property name="build.dir" location="${root}/build/contrib/${name}"/> |
| <property name="chukwa.root.build.dir" location="${root}/build/"/> |
| <property name="chukwa.root.build.classes" location="${chukwa.root.build.dir}/classes/"/> |
| <property name="build.classes" location="${build.dir}/classes"/> |
| <property name="build.test" location="${build.dir}/test"/> |
| <!-- all jars together --> |
| <property name="javac.deprecation" value="off"/> |
| <property name="javac.debug" value="on"/> |
| |
| <property name="javadoc.link" |
| value="http://java.sun.com/j2se/1.4/docs/api/"/> |
| |
| <property name="build.encoding" value="ISO-8859-1"/> |
| |
| <fileset id="lib.jars" dir="${root}" includes="lib/*.jar"/> |
| |
| </project> |