This file is indexed.

/usr/share/maven-repo/io/netty/netty-parent/debian/netty-parent-debian.pom is in libnetty-java 1:4.1.7-4.

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
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
<?xml version="1.0" encoding="UTF-8"?>
<!--
  ~ Copyright 2012 The Netty Project
  ~
  ~ The Netty Project 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/maven-v4_0_0.xsd">
	<modelVersion>4.0.0</modelVersion>
	<groupId>io.netty</groupId>
	<artifactId>netty-parent</artifactId>
	<version>debian</version>
	<packaging>pom</packaging>
	<name>Netty</name>
	<description>Netty is an asynchronous event-driven network application framework for
    rapid development of maintainable high performance protocol servers andclients.</description>
	<properties>
		<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
		<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
		<netty.build.version>22</netty.build.version>
		<jboss.marshalling.version>1.4.11.Final</jboss.marshalling.version>
		<jetty.alpnAgent.version>2.0.4</jetty.alpnAgent.version>
		<jetty.alpnAgent.path>"${settings.localRepository}"/org/mortbay/jetty/alpn/jetty-alpn-agent/${jetty.alpnAgent.version}/jetty-alpn-agent-${jetty.alpnAgent.version}.jar</jetty.alpnAgent.path>
		<argLine.common>-server
      -dsa -da -ea:io.netty...-XX:+AggressiveOpts
      -XX:+TieredCompilation-XX:+UseBiasedLocking
      -XX:+UseFastAccessorMethods-XX:+OptimizeStringConcat
      -XX:+HeapDumpOnOutOfMemoryError
		</argLine.common>
		<!-- Default to ALPN. See forcenpn profile to force NPN -->
		<argLine.alpnAgent>-javaagent:${jetty.alpnAgent.path}=${jetty.alpnAgent.option}</argLine.alpnAgent>
		<argLine.leak>-D_</argLine.leak>
		<!-- Overridden when 'leak' profile is active -->
		<argLine.noUnsafe>-D_</argLine.noUnsafe>
		<!-- Overridden when 'noUnsafe' profile is active -->
		<argLine.coverage>-D_</argLine.coverage>
		<!-- Overridden when 'coverage' profile is active -->
		<argLine.java9>
		</argLine.java9>
		<!-- Overridden when 'java9' profile is active -->
		<argLine.javaProperties>-D_</argLine.javaProperties>
		<!-- Configure the os-maven-plugin extension to expand the classifier on                  -->
		<!-- Fedora-"like" systems. This is currently only used for the netty-tcnative dependency -->
		<os.detection.classifierWithLikes>fedora</os.detection.classifierWithLikes>
		<tcnative.artifactId>netty-tcnative</tcnative.artifactId>
		<tcnative.version>1.1.33.Fork25</tcnative.version>
		<tcnative.classifier>${os.detected.classifier}</tcnative.classifier>
		<epoll.classifier>${os.detected.name}-${os.detected.arch}</epoll.classifier>
		<logging.config>${project.basedir}/../common/src/test/resources/logback-test.xml</logging.config>
		<logging.logLevel>debug</logging.logLevel>
		<log4j2.version>2.6.2</log4j2.version>
		<asm.version>5.1</asm.version>
		
			<debian.hasPackageVersion/>
		
			<debian.originalVersion>4.1.7.Final</debian.originalVersion>
		
			<debian.package>libnetty-java</debian.package>
	</properties>
	<modules>
		<module>common</module>
		<module>buffer</module>
		<module>codec</module>
		<module>codec-dns</module>
		<module>codec-haproxy</module>
		<module>codec-http</module>
		<module>codec-http2</module>
		<module>codec-memcache</module>
		<module>codec-mqtt</module>
		<module>codec-redis</module>
		<module>codec-smtp</module>
		<module>codec-socks</module>
		<module>codec-stomp</module>
		<module>codec-xml</module>
		<module>resolver</module>
		<module>resolver-dns</module>
		<module>transport</module>
		<module>transport-rxtx</module>
		<module>transport-sctp</module>
		<module>transport-udt</module>
		<module>handler</module>
		<module>handler-proxy</module>
		<module>example</module>
		<module>testsuite</module>
		<module>testsuite-osgi</module>
		<module>microbench</module>
		<module>all</module>
		<module>tarball</module>
	</modules>
	<dependencyManagement>
		<dependencies>
			<!-- Byte code generator - completely optional -->
			<dependency>
				<groupId>javassist</groupId>
				<artifactId>javassist</artifactId>
				<version>debian</version>
				<scope>compile</scope>
				<optional>true</optional>
			</dependency>
			<!-- JBoss Marshalling - completely optional -->
			<!-- SPDY and HTTP/2 - completely optional -->
			<!-- Google Protocol Buffers - completely optional -->
			<dependency>
				<groupId>com.google.protobuf</groupId>
				<artifactId>protobuf-java</artifactId>
				<version>debian</version>
			</dependency>
			<!-- Our own Tomcat Native fork - completely optional, used for acclerating SSL with OpenSSL. -->
			<dependency>
				<groupId>io.netty</groupId>
				<artifactId>netty-tcnative</artifactId>
				<version>debian</version>
				<scope>compile</scope>
				<optional>true</optional>
			</dependency>
			<!--
        Bouncy Castle - completely optional, only needed when:
        - you generate a temporary self-signed certificate using SelfSignedCertificate, and
        - you don't use the JDK which doesn't provide sun.security.x509 package.
      -->
			<dependency>
				<groupId>org.bouncycastle</groupId>
				<artifactId>bcpkix</artifactId>
				<version>debian</version>
				<scope>compile</scope>
				<optional>true</optional>
			</dependency>
			<dependency>
				<groupId>com.fasterxml</groupId>
				<artifactId>aalto-xml</artifactId>
				<version>debian</version>
			</dependency>
			<dependency>
				<groupId>com.jcraft</groupId>
				<artifactId>jzlib</artifactId>
				<version>debian</version>
			</dependency>
			<dependency>
				<groupId>com.ning</groupId>
				<artifactId>compress-lzf</artifactId>
				<version>debian</version>
			</dependency>
			<!-- Java concurrency tools for the JVM -->
			<dependency>
				<groupId>org.jctools</groupId>
				<artifactId>jctools-core</artifactId>
				<version>debian</version>
			</dependency>
			<dependency>
				<groupId>org.rxtx</groupId>
				<artifactId>rxtx</artifactId>
				<version>debian</version>
			</dependency>
			<dependency>
				<groupId>com.barchart.udt</groupId>
				<artifactId>barchart-udt-bundle</artifactId>
				<version>debian</version>
			</dependency>
			<dependency>
				<groupId>javax.servlet</groupId>
				<artifactId>servlet-api</artifactId>
				<version>debian</version>
			</dependency>
			<dependency>
				<groupId>org.slf4j</groupId>
				<artifactId>slf4j-api</artifactId>
				<version>debian</version>
			</dependency>
			<dependency>
				<groupId>commons-logging</groupId>
				<artifactId>commons-logging</artifactId>
				<version>debian</version>
			</dependency>
			<dependency>
				<groupId>org.apache.logging.log4j</groupId>
				<artifactId>log4j-api</artifactId>
				<version>debian</version>
			</dependency>
			<dependency>
				<groupId>log4j</groupId>
				<artifactId>log4j</artifactId>
				<version>1.2.x</version>
				<exclusions>
					<exclusion>
						<artifactId>mail</artifactId>
						<groupId>javax.mail</groupId>
					</exclusion>
					<exclusion>
						<artifactId>jms</artifactId>
						<groupId>javax.jms</groupId>
					</exclusion>
					<exclusion>
						<artifactId>jmxtools</artifactId>
						<groupId>com.sun.jdmk</groupId>
					</exclusion>
					<exclusion>
						<artifactId>jmxri</artifactId>
						<groupId>com.sun.jmx</groupId>
					</exclusion>
				</exclusions>
				<optional>true</optional>
			</dependency>
			<!-- Metrics providers -->
			<!-- Common test dependencies -->
			<dependency>
				<groupId>junit</groupId>
				<artifactId>junit</artifactId>
				<version>4.x</version>
				<scope>test</scope>
			</dependency>
			<dependency>
				<groupId>org.hamcrest</groupId>
				<artifactId>hamcrest-library</artifactId>
				<version>debian</version>
				<scope>test</scope>
			</dependency>
			<dependency>
				<groupId>org.easymock</groupId>
				<artifactId>easymock</artifactId>
				<version>debian</version>
				<scope>test</scope>
			</dependency>
			<dependency>
				<groupId>org.mockito</groupId>
				<artifactId>mockito-core</artifactId>
				<version>debian</version>
				<scope>test</scope>
			</dependency>
			<!-- Test dependencies for jboss marshalling encoder/decoder -->
			<!-- Test dependencies for microbench -->
			<!-- Test dependency for Bzip2 compression codec -->
			<!-- Test dependency used by http/2 hpack -->
			<dependency>
				<groupId>com.google.code.gson</groupId>
				<artifactId>gson</artifactId>
				<version>debian</version>
				<scope>test</scope>
			</dependency>
			<!-- Test suite dependency for generating a compressed heap dump file -->
			<dependency>
				<groupId>org.tukaani</groupId>
				<artifactId>xz</artifactId>
				<version>debian</version>
			</dependency>
			<!-- Test dependency for resolver-dns -->
			<!-- Test dependency for log4j2 tests -->
			<dependency>
				<groupId>org.apache.logging.log4j</groupId>
				<artifactId>log4j-core</artifactId>
				<version>debian</version>
				<scope>test</scope>
			</dependency>
		</dependencies>
	</dependencyManagement>
	<dependencies>
		<!-- Enable Javassist support for all test runs -->
		<dependency>
			<groupId>javassist</groupId>
			<artifactId>javassist</artifactId>
			<scope>test</scope>
		</dependency>
		<!-- Testing frameworks and related dependencies -->
		<dependency>
			<groupId>junit</groupId>
			<artifactId>junit</artifactId>
			<scope>test</scope>
		</dependency>
		<dependency>
			<groupId>org.hamcrest</groupId>
			<artifactId>hamcrest-library</artifactId>
			<scope>test</scope>
		</dependency>
		<dependency>
			<groupId>org.easymock</groupId>
			<artifactId>easymock</artifactId>
			<scope>test</scope>
		</dependency>
		<dependency>
			<groupId>org.mockito</groupId>
			<artifactId>mockito-core</artifactId>
			<scope>test</scope>
		</dependency>
	</dependencies>
</project>