source: proiecte/HadoopJUnit/hadoop-0.20.1/src/contrib/thriftfs/build.xml @ 120

Last change on this file since 120 was 120, checked in by (none), 14 years ago

Added the mail files for the Hadoop JUNit Project

  • Property svn:executable set to *
File size: 2.0 KB
Line 
1<?xml version="1.0"?>
2
3<!--
4   Licensed to the Apache Software Foundation (ASF) under one or more
5   contributor license agreements.  See the NOTICE file distributed with
6   this work for additional information regarding copyright ownership.
7   The ASF licenses this file to You under the Apache License, Version 2.0
8   (the "License"); you may not use this file except in compliance with
9   the License.  You may obtain a copy of the License at
10
11       http://www.apache.org/licenses/LICENSE-2.0
12
13   Unless required by applicable law or agreed to in writing, software
14   distributed under the License is distributed on an "AS IS" BASIS,
15   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16   See the License for the specific language governing permissions and
17   limitations under the License.
18-->
19
20<!--
21Before you can run these subtargets directly, you need
22to call at top-level: ant deploy-contrib compile-core-test
23-->
24<project name="thriftfs" default="jar">
25
26  <import file="../build-contrib.xml"/>
27
28  <!-- create the list of files to add to the classpath -->
29  <fileset dir="${hadoop.root}/lib" id="class.path">
30    <include name="**/*.jar" />
31    <exclude name="**/excluded/" />
32  </fileset>
33
34  <!-- Override jar target to specify main class -->
35  <target name="jar" depends="compile">
36    <jar
37      jarfile="${build.dir}/hadoop-${version}-${name}.jar"
38      basedir="${build.classes}"     
39    >
40        <manifest>
41            <attribute name="Main-Class" value="org.apache.hadoop.thriftfs.HadooopThriftServer"/>
42        </manifest>
43    </jar>
44  </target>
45
46  <!-- Run only pure-Java unit tests. superdottest -->
47  <target name="test">
48   <antcall target="hadoopbuildcontrib.test"> 
49     <param name="test.exclude" value="TestStreamedMerge"/>
50   </antcall>
51  </target> 
52 
53  <!-- Run all unit tests
54  This is not called as part of the nightly build
55  because it will only run on platforms that have standard
56  Unix utilities available.
57  -->
58 <target name="test-unix">
59   <antcall target="hadoopbuildcontrib.test">
60   </antcall>
61 </target> 
62
63
64</project>
Note: See TracBrowser for help on using the repository browser.