This file is indexed.

/usr/share/maven-repo/com/puppycrawl/tools/checkstyle/5.9/checkstyle-5.9.pom is in checkstyle 5.9-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
 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
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
<?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/xsd/maven-4.0.0.xsd">
	<modelVersion>4.0.0</modelVersion>
	<groupId>com.puppycrawl.tools</groupId>
	<artifactId>checkstyle</artifactId>
	<version>5.9</version>
	<packaging>jar</packaging>
	<!--
      TIPS:

      - use "mvn versions:display-dependency-updates" to see what dependencies
        have updates available.

      - use "mvn versions:display-plugin-updates" to see whan plugins have
        updates available.
  -->
	<!-- Used for making releases. -->
	<name>checkstyle</name>
	<url>http://checkstyle.sourceforge.net/</url>
	<issueManagement>
		<system>GitHub Issues</system>
		<url>https://github.com/checkstyle/checkstyle/issues</url>
	</issueManagement>
	<inceptionYear>2001</inceptionYear>
	<description>Checkstyle is a development tool to help programmers write Java code that adheres to a coding standard</description>
	<licenses>
		<license>
			<name>GNU Lesser General Public License</name>
			<url>http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt</url>
		</license>
	</licenses>
	<scm>
		<connection>scm:git:git@github.com:checkstyle/checkstyle.git</connection>
		<developerConnection>scm:git:git@github.com:checkstyle/checkstyle.git</developerConnection>
		<url>https://github.com/checkstyle/checkstyle</url>
	</scm>
	<developers>
		<developer>
			<id>oburn</id>
			<name>Oliver Burn</name>
			<roles>
				<role>founder</role>
			</roles>
		</developer>
		<developer>
			<id>romanivanov</id>
			<name>Roman Ivanov</name>
			<roles>
				<role>lead developer</role>
			</roles>
		</developer>
		<developer>
			<id>daniilyar</id>
			<name>Daniil Yaroslavtsev</name>
			<roles>
				<role>developer</role>
			</roles>
		</developer>
		<developer>
			<id>moradan</id>
			<name>Ivan Sopov</name>
			<roles>
				<role>developer</role>
			</roles>
		</developer>
		<developer>
			<id>lkuehne</id>
			<name>Lars K??hne</name>
			<roles>
				<role>former developer</role>
			</roles>
		</developer>
		<developer>
			<id>rickgiles</id>
			<name>Rick Giles</name>
			<roles>
				<role>former developer</role>
			</roles>
		</developer>
		<developer>
			<id>o_sukhodolsky</id>
			<name>Oleg Sukhodolsky</name>
			<roles>
				<role>former developer</role>
			</roles>
		</developer>
		<developer>
			<id>mstudman</id>
			<name>Michael Studman</name>
			<roles>
				<role>former developer</role>
			</roles>
		</developer>
		<developer>
			<id>tschneeberger</id>
			<name>Travis Schneeberger</name>
			<roles>
				<role>former developer</role>
			</roles>
		</developer>
	</developers>
	<mailingLists>
		<mailingList>
			<name>checkstyle-announce</name>
			<archive>https://groups.google.com/forum/#!forum/checkstyle-announce</archive>
			<subscribe>mailto:checkstyle-announce%2Bsubscribe@googlegroups.com</subscribe>
			<unsubscribe>mailto:checkstyle-announce%2Bunsubscribe@googlegroups.com</unsubscribe>
		</mailingList>
		<mailingList>
			<name>checkstyle</name>
			<archive>https://groups.google.com/forum/#!forum/checkstyle</archive>
			<subscribe>mailto:checkstyle%2Bsubscribe@googlegroups.com</subscribe>
			<unsubscribe>mailto:checkstyle%2Bunsubscribe@googlegroups.com</unsubscribe>
		</mailingList>
		<mailingList>
			<name>checkstyle-devel</name>
			<archive>https://groups.google.com/forum/#!forum/checkstyle-devel</archive>
			<subscribe>mailto:checkstyle-devel%2Bsubscribe@googlegroups.com</subscribe>
			<unsubscribe>mailto:checkstyle-devel%2Bunsubscribe@googlegroups.com</unsubscribe>
		</mailingList>
	</mailingLists>
	<properties>
		<project.build.sourceEncoding>iso-8859-1</project.build.sourceEncoding>
		<projectVersion>${project.version}</projectVersion>
		<tools.jar.version>1.5.0</tools.jar.version>
		<tools.jar.path>${java.home}/../lib/tools.jar</tools.jar.path>
		<maven.site.plugin.version>3.4</maven.site.plugin.version>
		
			<debian.antlr.antlr.originalVersion>2.7.7</debian.antlr.antlr.originalVersion>
		
			<debian.com.google.guava.guava-jdk5.originalVersion>14.0.1</debian.com.google.guava.guava-jdk5.originalVersion>
		
			<debian.commons-beanutils.commons-beanutils-core.originalVersion>1.8.3</debian.commons-beanutils.commons-beanutils-core.originalVersion>
		
			<debian.commons-cli.commons-cli.originalVersion>1.2</debian.commons-cli.commons-cli.originalVersion>
		
			<debian.junit.junit.originalVersion>4.11</debian.junit.junit.originalVersion>
		
			<debian.org.apache.ant.ant.originalVersion>1.7.0</debian.org.apache.ant.ant.originalVersion>
		
			<debian.originalVersion>5.9</debian.originalVersion>
		
			<debian.package>checkstyle</debian.package>
	</properties>
	<dependencies>
		<dependency>
			<groupId>antlr</groupId>
			<artifactId>antlr</artifactId>
			<version>2.x</version>
		</dependency>
		<dependency>
			<groupId>commons-beanutils</groupId>
			<artifactId>commons-beanutils</artifactId>
			<version>debian</version>
		</dependency>
		<dependency>
			<groupId>commons-cli</groupId>
			<artifactId>commons-cli</artifactId>
			<version>debian</version>
		</dependency>
		<dependency>
			<groupId>com.google.guava</groupId>
			<artifactId>guava</artifactId>
			<version>debian</version>
		</dependency>
		<dependency>
			<groupId>org.apache.ant</groupId>
			<artifactId>ant</artifactId>
			<!-- Do not upgrade as this is the earliest version of ANT supported -->
			<version>debian</version>
			<scope>provided</scope>
		</dependency>
		<!-- test scope stuff -->
	</dependencies>
</project>