This file is indexed.

/usr/share/doc/libjpfcodegen-java/tutorials/basic/plugins/plugin2/build.xml is in libjpfcodegen-java 0.4+dfsg1-1.

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
<?xml version="1.0"?>
<project name="JPFCodeGenerator-BasicTutorial-Plugin2" default="compile" basedir=".">

	<!-- Properties -->
	<property name="build" value="build" />
	<property name="jpfCodeGeneratorVersion" value="0.3" />
	<property name="src" value="src" />
	<property name="lib" value="../../../../lib" />

	<!-- Build classpath -->
	<path id="classpath">
		<pathelement path="${build}" />
		<pathelement path="../../${build}" />
		<pathelement location="${lib}/../JPFCodeGenerator-${jpfCodeGeneratorVersion}-rt.jar" />
		<pathelement location="${lib}/jpf.jar" />
		<pathelement location="${lib}/commons-logging.jar" />
	</path>

	<target name="compile">
		<mkdir dir="${build}" />
		<javac debug="on" deprecation="on" destdir="${build}" source="1.5" target="1.5">
			<src path="${src}" />
			<classpath refid="classpath" />
		</javac>
	</target>

	<target name="clean" description="Clean project">
		<delete dir="${build}" />
		<!-- The next line is only there to create an clean distribution -->
		<delete dir="${src}" includes="**/Plugin2.java" />
		<delete dir="${src}" includes="**/generated/" includeemptydirs="true" />
	</target>

</project>