This file is indexed.

/usr/share/doc/libantelope-java/manual/bk02ch09.html is in libantelope-java-doc 3.5.1-2.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
<html><head><meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"><title>Chapter 9. Example Build File</title><meta name="generator" content="DocBook XSL Stylesheets V1.75.2"><link rel="home" href="index.html" title="Antelope Users Guide"><link rel="up" href="bk02.html" title="Ant Coding Style Guidelines"><link rel="prev" href="bk02ch08.html" title="Chapter 8. Comments"><link rel="next" href="bk03.html" title="Additional Ant Tasks"></head><body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center">Chapter 9. Example Build File</th></tr><tr><td width="20%" align="left"><a accesskey="p" href="bk02ch08.html">Prev</a> </td><th width="60%" align="center">Ant Coding Style Guidelines</th><td width="20%" align="right"> <a accesskey="n" href="bk03.html">Next</a></td></tr></table><hr></div><div class="chapter" title="Chapter 9. Example Build File"><div class="titlepage"><div><div><h2 class="title"><a name="id2512577"></a>Chapter 9. Example Build File</h2></div></div></div><p>
The following example build file follows these guidelines. This build file would be stored on disk as "MyProject.xml".
</p><p>
</p><pre class="programlisting">


&lt;project name="MyProject" default="dist" basedir="."&gt;
    &lt;description&gt;
        simple example build file
    &lt;/description&gt;
    
    &lt;!-- set global properties for this build --&gt;
    
    &lt;!-- where the source files are --&gt;
    &lt;property name="src" location="src"/&gt;
    
    &lt;!-- where the compiled classes go --&gt;
    &lt;property name="build" location="build"/&gt;
    
    &lt;!-- where to place the finished jar file --&gt;
    &lt;property name="dist"  location="dist"/&gt;

    &lt;!-- ========== Dist Target ===================================
        The dist target compiles all the source code and creates
        a jar file for distribution.
    --&gt;
    &lt;target name="dist" depends="clean, compile"
        description="generate the distribution" &gt;
        &lt;!-- Create the distribution directory --&gt;
        &lt;mkdir dir="${dist}/lib"/&gt;

        &lt;!-- Put everything in ${build} into the MyProject-${DSTAMP}.jar
            file --&gt;
        &lt;jar jarfile="${dist}/lib/MyProject-${DSTAMP}.jar"
            basedir="${build}"/&gt;
    &lt;/target&gt;

    &lt;!-- ========== Init Target ====================================
        This target initializes the build by creating a time stamp
        for use in the jar file name and creating the directory
        to hold the compiled classes.
    --&gt;
    &lt;target name="-init"&gt;
        &lt;!-- Create the time stamp --&gt;
        &lt;tstamp/&gt;
      
        &lt;!-- Create the build directory structure used by compile --&gt;
        &lt;mkdir dir="${build}"/&gt;
    &lt;/target&gt;

    &lt;!-- ========== Compile Target =================================
        The compile target compiles all files in the source directory
        into the build directory.
    --&gt;
    &lt;target name="compile" depends="-init" 
        description="compile the source " &gt;
        
        &lt;!-- Compile the java code from ${src} into ${build} --&gt;
        &lt;javac srcdir="${src}" destdir="${build}"/&gt;
        
    &lt;/target&gt;

    &lt;!-- ========== Clean Target ====================================
        The clean target deletes all files from the build directory
        and the dist directory. 
    --&gt;
    &lt;target name="clean" description="clean up" &gt;
        &lt;!-- Delete the ${build} and ${dist} directory trees --&gt;
        &lt;delete dir="${build}"/&gt;
        &lt;delete dir="${dist}"/&gt;
    &lt;/target&gt;
&lt;/project&gt;


</pre><p>
</p></div><div class="navfooter"><hr><table width="100%" summary="Navigation footer"><tr><td width="40%" align="left"><a accesskey="p" href="bk02ch08.html">Prev</a> </td><td width="20%" align="center"><a accesskey="u" href="bk02.html">Up</a></td><td width="40%" align="right"> <a accesskey="n" href="bk03.html">Next</a></td></tr><tr><td width="40%" align="left" valign="top">Chapter 8. Comments </td><td width="20%" align="center"><a accesskey="h" href="index.html">Home</a></td><td width="40%" align="right" valign="top"> Additional Ant Tasks</td></tr></table></div></body></html>