This file is indexed.

/usr/share/maven-repo/com/fasterxml/jackson/jackson-parent/2.8/jackson-parent-2.8.pom is in libjackson2-core-java 2.8.6-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
<?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>com.fasterxml.jackson</groupId>
	<artifactId>jackson-parent</artifactId>
	<version>2.8</version>
	<packaging>pom</packaging>
	<parent>
		<groupId>com.fasterxml</groupId>
		<artifactId>oss-parent</artifactId>
		<version>debian</version>
	</parent>
	
	<name>Jackson parent poms</name>
	<description>Parent pom for all Jackson components</description>
	<properties>
		<version.jackson.annotations>2.8.0</version.jackson.annotations>
		<!-- 02-Oct-2015, tatu: Jackson 2.4 and above are Java 6 (earlier versions Java 5);
          Jackson 2.7 and above Java 6 (with exception of `jackson-core`/`jackson-annotations` still Java 6)
      -->
		<javac.src.version>1.7</javac.src.version>
		<javac.target.version>1.7</javac.target.version>
		<javac.debuglevel>lines,source,vars</javac.debuglevel>
		<!-- Versions for other dependencies -->
		<version.junit>4.12</version.junit>
		<!--
     | For automatically generating PackageVersion.java. Your child pom.xml must define
     | packageVersion.dir and packageVersion.package, and must set the phase of the
     | process-packageVersion execution of maven-replacer-plugin to 'generate-sources'.
    -->
		<packageVersion.template.input>${basedir}/src/main/java/${packageVersion.dir}/PackageVersion.java.in</packageVersion.template.input>
		<packageVersion.template.output>${generatedSourcesDir}/${packageVersion.dir}/PackageVersion.java</packageVersion.template.output>
		
			<debian.mavenRules>com.fasterxml.jackson.core jackson-core bundle s/2\..*/2.x/ * *</debian.mavenRules>
		
			<debian.originalVersion>2.8</debian.originalVersion>
		
			<debian.package>libjackson2-core-java</debian.package>
	</properties>
	<dependencyManagement>
		<dependencies>
			<dependency>
				<groupId>com.fasterxml.jackson.core</groupId>
				<artifactId>jackson-annotations</artifactId>
				<version>2.x</version>
			</dependency>
		</dependencies>
	</dependencyManagement>
	<build>
		<pluginManagement>
			<plugins>
				<!-- Jackson has stricter enforced requirements than parent pom -->
				<!-- use of replacer plug-in specific to Jackson -->
				<plugin>
					<groupId>com.google.code.maven-replacer-plugin</groupId>
					<artifactId>replacer</artifactId>
					<executions>
						<execution>
							<id>process-packageVersion</id>
							<goals>
								<goal>replace</goal>
							</goals>
							<!--
               | We explicitly omit 'phase' here so child poms can opt in to
               | generating their PackageVersion.java file.
               |
               | If your child pom wants a PackageVersion.java file, define
               | the 'packageVersion.dir' and 'packageVersion.package' properties
               | and include the commented-out section in your child pom's plugin
               | for this execution ID.
               <phase>generate-sources</phase>
              -->
						</execution>
					</executions>
					<configuration>
						<file>${packageVersion.template.input}</file>
						<outputFile>${packageVersion.template.output}</outputFile>
						<replacements>
							<replacement>
								<token>@package@</token>
								<value>${packageVersion.package}</value>
							</replacement>
							<replacement>
								<token>@projectversion@</token>
								<value>${project.version}</value>
							</replacement>
							<replacement>
								<token>@projectgroupid@</token>
								<value>${project.groupId}</value>
							</replacement>
							<replacement>
								<token>@projectartifactid@</token>
								<value>${project.artifactId}</value>
							</replacement>
						</replacements>
					</configuration>
				</plugin>
			</plugins>
		</pluginManagement>
	</build>
</project>