This file is indexed.

/usr/share/maven-repo/org/apache/avro/avro-parent/debian/avro-parent-debian.pom is in libavro-java 1.7.7-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
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
<?xml version="1.0" encoding="UTF-8"?>
<!--
   Licensed to the Apache Software Foundation (ASF) under one or more
   contributor license agreements.  See the NOTICE file distributed with
   this work for additional information regarding copyright ownership.
   The ASF licenses this file to You under the Apache License, Version 2.0
   (the "License"); you may not use this file except in compliance with
   the License.  You may obtain a copy of the License at

       http://www.apache.org/licenses/LICENSE-2.0

   Unless required by applicable law or agreed to in writing, software
   distributed under the License is distributed on an "AS IS" BASIS,
   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
   See the License for the specific language governing permissions and
   limitations under the License.
-->
<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>org.apache.avro</groupId>
	<artifactId>avro-parent</artifactId>
	<version>debian</version>
	<packaging>pom</packaging>
	<parent>
		<groupId>org.apache.avro</groupId>
		<artifactId>avro-toplevel</artifactId>
		<version>debian</version>
	</parent>
	
	<name>Apache Avro Java</name>
	<url>http://avro.apache.org</url>
	<description>Avro parent Java project</description>
	<properties>
		<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
		<!-- version properties for dependencies -->
		<!--
      To build the avro-mapred module against Hadoop 2 specify
      -Dhadoop.version=2 or leave unspecified to build against Hadoop 1
    -->
		<hadoop1.version>0.20.205.0</hadoop1.version>
		<hadoop2.version>2.0.1-alpha</hadoop2.version>
		<jackson.version>1.9.13</jackson.version>
		<jetty.version>6.1.26</jetty.version>
		<jetty-servlet-api.version>2.5-20081211</jetty-servlet-api.version>
		<jopt-simple.version>4.1</jopt-simple.version>
		<junit.version>4.10</junit.version>
		<netty.version>3.4.0.Final</netty.version>
		<paranamer.version>2.3</paranamer.version>
		<protobuf.version>2.4.1</protobuf.version>
		<thrift.version>0.7.0</thrift.version>
		<slf4j.version>1.6.4</slf4j.version>
		<snappy.version>1.0.5</snappy.version>
		<velocity.version>1.7</velocity.version>
		<maven.version>2.0.10</maven.version>
		<ant.version>1.8.2</ant.version>
		<commons-lang.version>2.6</commons-lang.version>
		<commons-compress.version>1.4.1</commons-compress.version>
		<easymock.version>3.0</easymock.version>
		<hamcrest.version>1.1</hamcrest.version>
		<commons-httpclient.version>3.1</commons-httpclient.version>
		<!-- version properties for plugins -->
		<checkstyle-plugin.version>2.8</checkstyle-plugin.version>
		<bundle-plugin-version>2.1.0</bundle-plugin-version>
		<compiler-plugin.version>2.3.2</compiler-plugin.version>
		<exec-plugin.version>1.2.1</exec-plugin.version>
		<jar-plugin.version>2.3.2</jar-plugin.version>
		<javacc-plugin.version>2.6</javacc-plugin.version>
		<javadoc-plugin.version>2.8</javadoc-plugin.version>
		<plugin-tools-javadoc.version>3.2</plugin-tools-javadoc.version>
		<maven-site-plugin.version>3.1</maven-site-plugin.version>
		<plugin-plugin.version>2.9</plugin-plugin.version>
		<source-plugin.version>2.1.2</source-plugin.version>
		<surefire-plugin.version>2.12</surefire-plugin.version>
		<file-management.version>1.2.1</file-management.version>
		<shade-plugin.version>1.5</shade-plugin.version>
		<archetype-plugin.version>2.2</archetype-plugin.version>
		
			<debian.junit.junit-dep.originalVersion>4.10</debian.junit.junit-dep.originalVersion>
		
			<debian.mavenRules>org.apache.avro avro-compiler s/jar/bundle/ s/.*/debian/ * *,
		org.apache.avro avro-parent pom s/.*/debian/ * *,
		org.apache.avro avro s/jar/bundle/ s/.*/debian/ * *</debian.mavenRules>
		
			<debian.org.slf4j.slf4j-api.originalVersion>1.6.4</debian.org.slf4j.slf4j-api.originalVersion>
		
			<debian.org.slf4j.slf4j-simple.originalVersion>1.6.4</debian.org.slf4j.slf4j-simple.originalVersion>
		
			<debian.originalVersion>1.7.7</debian.originalVersion>
		
			<debian.package>libavro-java</debian.package>
	</properties>
	<modules>
		<module>avro</module>
		<module>compiler</module>
		<module>maven-plugin</module>
		<module>ipc</module>
		<module>trevni</module>
		<module>tools</module>
		<module>mapred</module>
		<module>protobuf</module>
		<module>thrift</module>
		<module>archetypes</module>
	</modules>
	<!-- dependencyManagement can be used to define dependency versions, scopes, and
    excludes to be shared by child projects. Child projects will not inherit these dependencies,
    rather they inherit the properties of the below dependencies (such as version) if
    the dependency is specified in the child. -->
	<dependencyManagement>
		<dependencies>
			<dependency>
				<groupId>org.codehaus.jackson</groupId>
				<artifactId>jackson-core-asl</artifactId>
				<version>debian</version>
			</dependency>
			<dependency>
				<groupId>org.codehaus.jackson</groupId>
				<artifactId>jackson-mapper-asl</artifactId>
				<version>debian</version>
			</dependency>
			<dependency>
				<groupId>com.thoughtworks.paranamer</groupId>
				<artifactId>paranamer</artifactId>
				<version>debian</version>
			</dependency>
			<dependency>
				<groupId>org.apache.velocity</groupId>
				<artifactId>velocity</artifactId>
				<version>debian</version>
			</dependency>
			<dependency>
				<groupId>org.mortbay.jetty</groupId>
				<artifactId>jetty</artifactId>
				<version>6.x</version>
			</dependency>
			<dependency>
				<groupId>io.netty</groupId>
				<artifactId>netty</artifactId>
				<version>3.4.0.Final</version>
			</dependency>
			<dependency>
				<groupId>net.sf.jopt-simple</groupId>
				<artifactId>jopt-simple</artifactId>
				<version>debian</version>
			</dependency>
			<dependency>
				<groupId>org.apache.hadoop</groupId>
				<artifactId>hadoop-core</artifactId>
				<version>debian</version>
			</dependency>
			<dependency>
				<groupId>org.apache.hadoop</groupId>
				<artifactId>hadoop-client</artifactId>
				<version>debian</version>
			</dependency>
			<dependency>
				<groupId>org.apache.hadoop</groupId>
				<artifactId>hadoop-mapreduce-client-common</artifactId>
				<version>debian</version>
			</dependency>
			<dependency>
				<!-- for Hadoop's LocalJobRunner -->
				<groupId>commons-httpclient</groupId>
				<artifactId>commons-httpclient</artifactId>
				<version>3.x</version>
			</dependency>
			<dependency>
				<groupId>org.easymock</groupId>
				<artifactId>easymock</artifactId>
				<version>debian</version>
			</dependency>
			<dependency>
				<groupId>org.hamcrest</groupId>
				<artifactId>hamcrest-all</artifactId>
				<version>debian</version>
			</dependency>
			<dependency>
				<groupId>org.xerial.snappy</groupId>
				<artifactId>snappy-java</artifactId>
				<version>debian</version>
			</dependency>
			<dependency>
				<groupId>org.apache.commons</groupId>
				<artifactId>commons-compress</artifactId>
				<version>debian</version>
			</dependency>
		</dependencies>
	</dependencyManagement>
	<!-- dependencies defines dependencies that all child projects share. Child projects
    will inherit these dependencies directly, and can opt out if necessary with <excludes> -->
	<dependencies>
		<dependency>
			<groupId>junit</groupId>
			<artifactId>junit</artifactId>
			<version>4.x</version>
			<scope>test</scope>
		</dependency>
		<dependency>
			<groupId>org.slf4j</groupId>
			<artifactId>slf4j-api</artifactId>
			<version>debian</version>
		</dependency>
		<dependency>
			<groupId>org.slf4j</groupId>
			<artifactId>slf4j-simple</artifactId>
			<version>debian</version>
			<scope>runtime</scope>
			<optional>true</optional>
		</dependency>
	</dependencies>
</project>