"Fossies" - the Fresh Open Source Software Archive 
Member "apache-zookeeper-3.5.6/zookeeper-contrib/zookeeper-contrib-zkfuse/build.xml" (5 Oct 2019, 2024 Bytes) of package /linux/misc/apache-zookeeper-3.5.6.tar.gz:
As a special service "Fossies" has tried to format the requested source page into HTML format using (guessed) XML source code syntax highlighting (style:
standard) with prefixed line numbers.
Alternatively you can here
view or
download the uninterpreted source code file.
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 <project name="zkfuse" default="compile">
21 <import file="../build-contrib.xml"/>
22
23 <target name="init" depends="check-contrib" unless="skip.contrib">
24 <echo message="contrib: ${name}"/>
25 <mkdir dir="${build.dir}"/>
26 <antcall target="init-contrib"/>
27 </target>
28
29 <target name="compile" depends="init" unless="skip.contrib">
30 <echo message="contrib: ${name}"/>
31
32 <mkdir dir="${build.dir}"/>
33 <copy todir="${build.dir}">
34 <fileset dir="${basedir}">
35 <exclude name="**/VERSION"/>
36 </fileset>
37 </copy>
38 <exec executable="echo" output="${build.dir}/VERSION">
39 <arg line="${version}" />
40 </exec>
41 </target>
42
43 <target name="jar" depends="compile" >
44 <echo message="No jar target defined for this package"/>
45 </target>
46
47 <target name="test">
48 <echo message="No test target defined for this package" />
49 </target>
50
51
52 <target name="package" depends="compile" unless="skip.contrib">
53 <echo message="contrib: ${name}"/>
54
55 <mkdir dir="${dist.dir}/zookeeper-contrib/zookeeper-contrib-${name}"/>
56 <copy todir="${dist.dir}/zookeeper-contrib/zookeeper-contrib-${name}">
57 <fileset dir="${build.dir}"/>
58 </copy>
59 </target>
60
61 </project>