This file is indexed.

/usr/share/maven-repo/org/antlr/gunit/3.2/gunit-3.2.pom is in libantlr3-gunit-java 3.2.is.3.2-7ubuntu3.

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
77
78
79
<?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>
	<groupId>org.antlr</groupId>
	<artifactId>gunit</artifactId>
	<version>3.2</version>
	<packaging>jar</packaging>
	<parent>
		<groupId>org.antlr</groupId>
		<artifactId>antlr-master</artifactId>
		<version>3.x</version>
	</parent>
	<properties>
		<debian.junit.junit.originalVersion>4.5</debian.junit.junit.originalVersion>
		<debian.mavenRules>org.antlr gunit * s/3\..*/3.x/ * *</debian.mavenRules>
		<debian.org.antlr.antlr.originalVersion>3.2</debian.org.antlr.antlr.originalVersion>
		<debian.org.antlr.stringtemplate.originalVersion>3.2.1</debian.org.antlr.stringtemplate.originalVersion>
		<debian.originalVersion>3.2</debian.originalVersion>
		<debian.package>libantlr3-gunit-java</debian.package>
	</properties>
	
	<name>ANTLR gUnit</name>
	<!--

    Inherit from the ANTLR master pom, which tells us what
    version we are and allows us to inherit dependencies
    and so on.

    -->
	<url>http://www.antlr.org/wiki/display/ANTLR3/gUnit+-+Grammar+Unit+Testing</url>
	<!--

    Define where the ANTLR gUnit jar is deployed both for
    the main ANTLR repository, which syncs with the maven main
    repository, and the snapshot repository, which can be
    used by developers that need the latest development version of
    something, but is used here to ensure that snapshot builds of the
    ANTLR tool pick up the latest snapshot of the runtime and string tempalte
    and whatever else it might need in the future.
    -->
	<!--

    Inform Maven of the ANTLR snapshot repository, which it will
    need to consult to get the latest snapshot build of the runtime and so on, should
    this project need the latest builds from the antlr snapshots and not the pre-built
    released jars from the repository.
    -->
	<!--

    Tell Maven which other artifacts we need in order to
    build, run and test the ANTLR Tool. The ANTLR Tool uses earlier versions
    of ANTLR at runtime (for the moment), uses the current
    released version of ANTLR String template, but obviously is
    reliant on the latest snapshot of the runtime, which will either be
    taken from the antlr-snapshot repository, or your local .m2
    repository if you built and installed that locally.

    -->
	<dependencies>
		<dependency>
			<groupId>junit</groupId>
			<artifactId>junit</artifactId>
			<version>4.x</version>
			<scope>compile</scope>
		</dependency>
		<dependency>
			<groupId>org.antlr</groupId>
			<artifactId>antlr</artifactId>
			<version>3.x</version>
			<scope>compile</scope>
		</dependency>
		<dependency>
			<groupId>org.antlr</groupId>
			<artifactId>stringtemplate</artifactId>
			<version>3.x</version>
			<scope>compile</scope>
		</dependency>
	</dependencies>
</project>