This file is indexed.

/usr/share/doc/jflex/examples/simple-maven/pom.xml is in jflex 1.4.3+dfsg-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
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
  <modelVersion>4.0.0</modelVersion>
  <parent>
    <groupId>de.flex.examples</groupId>
    <artifactId>parent</artifactId>
    <version>1</version>
  </parent>
  <artifactId>simple-maven</artifactId>
  <version>0.1</version>
  <name>A scanner for a toy programming language.</name>
  <description>It is the example from the JLex website with some small
		modifications, to make it a bit more readable.

		It does nothing really useful, because there is no parser for
		the toy programming language. It's just a demonstration how a
		small simple scanner looks like.</description>
  <dependencies>
    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <scope>test</scope>
    </dependency>
  </dependencies>
</project>