This file is indexed.

/usr/share/maven-repo/org/apache/logging/log4j/log4j-core/2.10.0/log4j-core-2.10.0.pom is in liblog4j2-java 2.10.0-2.

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
<?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/maven-v4_0_0.xsd">
	<modelVersion>4.0.0</modelVersion>
	<groupId>org.apache.logging.log4j</groupId>
	<artifactId>log4j-core</artifactId>
	<version>2.10.0</version>
	<packaging>jar</packaging>
	<parent>
		<groupId>org.apache.logging.log4j</groupId>
		<artifactId>log4j</artifactId>
		<version>debian</version>
	</parent>
	
	<name>Apache Log4j Core</name>
	<description>The Apache Log4j Implementation</description>
	<properties>
		<log4jParentDir>${basedir}/..</log4jParentDir>
		<docLabel>Core Documentation</docLabel>
		<projectDir>/core</projectDir>
		
			<debian.com.fasterxml.woodstox.woodstox-core.originalVersion>5.0.3</debian.com.fasterxml.woodstox.woodstox-core.originalVersion>
		
			<debian.hasPackageVersion/>
		
			<debian.log4j.log4j.originalVersion>1.2.17</debian.log4j.log4j.originalVersion>
		
			<debian.org.jmdns.jmdns.originalVersion>3.5.1</debian.org.jmdns.jmdns.originalVersion>
		
			<debian.originalVersion>2.10.0</debian.originalVersion>
		
			<debian.package>liblog4j2-java</debian.package>
	</properties>
	<dependencies>
		<!-- Naturally, all implementations require the log4j-api JAR -->
		<dependency>
			<groupId>org.apache.logging.log4j</groupId>
			<artifactId>log4j-api</artifactId>
		</dependency>
		<!-- Used for OSGi bundle support -->
		<dependency>
			<groupId>org.osgi</groupId>
			<artifactId>org.osgi.core</artifactId>
			<scope>provided</scope>
		</dependency>
		<!-- Required for AsyncLoggers -->
		<dependency>
			<groupId>com.lmax</groupId>
			<artifactId>disruptor</artifactId>
			<optional>true</optional>
		</dependency>
		<!-- Alternative implementation of BlockingQueue using Conversant Disruptor for AsyncAppender -->
		<dependency>
			<groupId>com.conversantmedia</groupId>
			<artifactId>disruptor</artifactId>
			<classifier>
			</classifier>
			<optional>true</optional>
		</dependency>
		<!-- Alternative implementation of BlockingQueue using JCTools for AsyncAppender -->
		<dependency>
			<groupId>org.jctools</groupId>
			<artifactId>jctools-core</artifactId>
			<optional>true</optional>
		</dependency>
		<!-- Required for JSON support -->
		<dependency>
			<groupId>com.fasterxml.jackson.core</groupId>
			<artifactId>jackson-core</artifactId>
			<optional>true</optional>
		</dependency>
		<!-- Required for JSON support -->
		<dependency>
			<groupId>com.fasterxml.jackson.core</groupId>
			<artifactId>jackson-databind</artifactId>
			<optional>true</optional>
		</dependency>
		<!-- Required for YAML support (including JSON requirements) -->
		<dependency>
			<groupId>com.fasterxml.jackson.dataformat</groupId>
			<artifactId>jackson-dataformat-yaml</artifactId>
			<optional>true</optional>
		</dependency>
		<!-- Required for XML layout and receiver support -->
		<dependency>
			<groupId>com.fasterxml.jackson.dataformat</groupId>
			<artifactId>jackson-dataformat-xml</artifactId>
			<optional>true</optional>
		</dependency>
		<!-- POM for jackson-dataformat-xml 2.9.1 depends on woodstox-core 5.0.3 -->
		<dependency>
			<groupId>org.codehaus.woodstox</groupId>
			<artifactId>woodstox-core-lgpl</artifactId>
			<version>debian</version>
			<optional>true</optional>
		</dependency>
		<!-- Required for console color support in Windows -->
		<dependency>
			<groupId>org.fusesource.jansi</groupId>
			<artifactId>jansi</artifactId>
			<optional>true</optional>
		</dependency>
		<!-- Required for SMTPAppender -->
		<dependency>
			<groupId>com.sun.mail</groupId>
			<artifactId>javax.mail</artifactId>
			<optional>true</optional>
		</dependency>
		<!-- Used for JPA appenders (needs an implementation of course) -->
		<dependency>
			<groupId>org.eclipse.persistence</groupId>
			<artifactId>javax.persistence</artifactId>
			<scope>compile</scope>
			<optional>true</optional>
		</dependency>
		<!-- Used for JMS appenders (needs an implementation of course) -->
		<dependency>
			<groupId>org.apache.geronimo.specs</groupId>
			<artifactId>geronimo-jms_1.1_spec</artifactId>
			<scope>provided</scope>
			<optional>true</optional>
		</dependency>
		<!-- Used for Kafka appender -->
		<!-- Used for ZeroMQ JeroMQ appender -->
		<dependency>
			<groupId>org.zeromq</groupId>
			<artifactId>jeromq</artifactId>
			<optional>true</optional>
		</dependency>
		<!-- Used for compressing to formats other than zip and gz -->
		<dependency>
			<groupId>org.apache.commons</groupId>
			<artifactId>commons-compress</artifactId>
			<optional>true</optional>
		</dependency>
		<!-- Used for the CSV layout -->
		<dependency>
			<groupId>org.apache.commons</groupId>
			<artifactId>commons-csv</artifactId>
			<optional>true</optional>
		</dependency>
		<!-- Command line for TCP and UDP servers -->
		<dependency>
			<groupId>com.beust</groupId>
			<artifactId>jcommander</artifactId>
			<optional>true</optional>
		</dependency>
		<!-- TEST DEPENDENCIES -->
		<!-- Pull in useful test classes from API -->
		<!--  Apache Commons Compress -->
		<!-- Zeroconf advertiser tests -->
		<!-- Log4j 1.2 tests -->
		<!-- SLF4J tests -->
		<!-- JUnit, naturally -->
		<!-- Mocking framework for use with JUnit -->
		<!-- Embedded JDBC drivers for database appender tests -->
		<!-- JPA Tests -->
		<!-- Useful mock classes and utilities -->
		<!-- JPA, JNDI and JMS tests -->
		<!-- Logback performance tests -->
		<!-- OSGi tests -->
		<!--  GELF -->
		<!-- Other -->
		<!-- Used for testing HttpAppender -->
		<!-- GC-free -->
	</dependencies>
</project>