This file is indexed.

/usr/share/doc/libantelope-java/manual/bk02ch02.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
<html><head><meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"><title>Chapter 2. File Names</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="bk02ch01.html" title="Chapter 1. Introduction"><link rel="next" href="bk02ch03.html" title="Chapter 3. Build File Structure and Formatting"></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 2. File Names</th></tr><tr><td width="20%" align="left"><a accesskey="p" href="bk02ch01.html">Prev</a> </td><th width="60%" align="center">Ant Coding Style Guidelines</th><td width="20%" align="right"> <a accesskey="n" href="bk02ch03.html">Next</a></td></tr></table><hr></div><div class="chapter" title="Chapter 2. File Names"><div class="titlepage"><div><div><h2 class="title"><a name="id2512720"></a>Chapter 2. File Names</h2></div></div></div><p>
The default Ant build file is named "build.xml". Any build system beyond the most basic will have multiple build files for various modules of the application. Having them all named "build.xml" quickly leads to confusion of which does what.
</p><p>
Build file names should indicate the main purpose of the file, and should be in the Java style of mixed upper and lower case letters, with the first letter always capitalized. Words should be spelled out rather than abbreviated, unless the abbreviation is the more common reference. Using the main target name works well.
</p><p>
Examples:
</p><div class="itemizedlist"><ul class="itemizedlist" type="disc"><li class="listitem"><p><code class="computeroutput">MasterBuild.xml</code></p></li><li class="listitem"><p><code class="computeroutput">CreateApplicationJar.xml</code></p></li><li class="listitem"><p><code class="computeroutput">CreateInstaller.xml</code></p></li></ul></div><p>
</p><p>
Build files may load properties from a properties file. These property files should be named the same as the build file name, but with a ".properties" extension. 
</p><p>
Examples:
</p><div class="itemizedlist"><ul class="itemizedlist" type="disc"><li class="listitem"><p>MasterBuild.properties</p></li><li class="listitem"><p>CreateApplicationJar.properties</p></li><li class="listitem"><p>CreateInstaller.properties</p></li></ul></div><p>
</p></div><div class="navfooter"><hr><table width="100%" summary="Navigation footer"><tr><td width="40%" align="left"><a accesskey="p" href="bk02ch01.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="bk02ch03.html">Next</a></td></tr><tr><td width="40%" align="left" valign="top">Chapter 1. Introduction </td><td width="20%" align="center"><a accesskey="h" href="index.html">Home</a></td><td width="40%" align="right" valign="top"> Chapter 3. Build File Structure and Formatting</td></tr></table></div></body></html>