This file is indexed.

/usr/share/maven-repo/org/antlr/antlr-master/3.x/antlr-master-3.x.pom is in libantlr3-runtime-java 3.5.2-6.

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
80
81
82
83
84
85
86
87
88
89
90
<?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>antlr-master</artifactId>
	<version>3.x</version>
	<packaging>pom</packaging>
	<name>ANTLR 3 Master build control POM</name>
	<description>Master build POM for ANTLR 3</description>
	<!--
    What version of ANTLR are we building? This sets the
    the version number for all other things that are built
    as part of an ANTLR release, unless they override or
    ignore it. We do this via a properites file for this
    pom.
    -->
	<!--
     This is the master pom for building the ANTLR
     toolset and runtime (Java) at the specific level
     defined above. Hence we specify here the modules that
     this pom will build when we build this pom
    -->
	<modules>
		<module>runtime/Java</module>
		<module>tool</module>
		<module>antlr3-maven-plugin</module>
		<module>gunit</module>
		<module>gunit-maven-plugin</module>
		<module>antlr3-maven-archetype</module>
		<module>antlr-complete</module>
	</modules>
	<!--
    Make sure that the build is not platform dependent (I.E show that
    all the files in the source tree are in UTF-8 format.
    -->
	<properties>
		<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
		<java5.home>${env.JAVA5_HOME}</java5.home>
		<java6.home>${env.JAVA6_HOME}</java6.home>
		<bootclasspath.java5>${java5.home}/lib/rt.jar</bootclasspath.java5>
		<bootclasspath.java6>${java6.home}/lib/rt.jar</bootclasspath.java6>
		<bootclasspath.compile>${bootclasspath.java5}</bootclasspath.compile>
		<bootclasspath.testCompile>${bootclasspath.java6}</bootclasspath.testCompile>
		
			<debian.mavenRules>org.antlr antlr-master * s/3\..*/3.x/ * *,
		org.antlr antlr-runtime * s/3\..*/3.x/ * *,
		org.antlr antlr * s/3\..*/3.x/ * *,
		org.antlr gunit * s/3\..*/3.x/ * *</debian.mavenRules>
		
			<debian.originalVersion>3.5.2</debian.originalVersion>
		
			<debian.package>libantlr3-runtime-java</debian.package>
	</properties>
	<!--

    Tell Maven which other artifacts we need in order to
    build, run and test the ANTLR jars.
    This is the master pom, and so it only contains those
    dependencies that are common to all the modules below
    or are just included for test
    -->
	<dependencyManagement>
		<dependencies>
			<dependency>
				<groupId>junit</groupId>
				<artifactId>junit</artifactId>
				<version>4.x</version>
				<scope>test</scope>
			</dependency>
			<dependency>
				<groupId>antlr</groupId>
				<artifactId>antlr</artifactId>
				<version>2.x</version>
				<scope>compile</scope>
			</dependency>
			<dependency>
				<groupId>org.antlr</groupId>
				<artifactId>stringtemplate</artifactId>
				<version>3.x</version>
				<scope>compile</scope>
			</dependency>
			<dependency>
				<groupId>org.antlr</groupId>
				<artifactId>ST4</artifactId>
				<version>debian</version>
				<scope>compile</scope>
			</dependency>
		</dependencies>
	</dependencyManagement>
</project>