You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by no...@apache.org on 2021/01/25 10:18:49 UTC

svn commit: r45583 [15/19] - in /dev/lucene/lucene-solr-8.8.0-RC2-revb10659f0fc18b58b90929cfdadde94544d202c4a: ./ lucene/ lucene/changes/ lucene/maven/ lucene/maven/org/ lucene/maven/org/apache/ lucene/maven/org/apache/lucene/ lucene/maven/org/apache/l...

Added: dev/lucene/lucene-solr-8.8.0-RC2-revb10659f0fc18b58b90929cfdadde94544d202c4a/solr/maven/org/apache/solr/solr-dataimporthandler-extras/8.8.0/solr-dataimporthandler-extras-8.8.0.pom
==============================================================================
--- dev/lucene/lucene-solr-8.8.0-RC2-revb10659f0fc18b58b90929cfdadde94544d202c4a/solr/maven/org/apache/solr/solr-dataimporthandler-extras/8.8.0/solr-dataimporthandler-extras-8.8.0.pom (added)
+++ dev/lucene/lucene-solr-8.8.0-RC2-revb10659f0fc18b58b90929cfdadde94544d202c4a/solr/maven/org/apache/solr/solr-dataimporthandler-extras/8.8.0/solr-dataimporthandler-extras-8.8.0.pom Mon Jan 25 10:18:46 2021
@@ -0,0 +1,784 @@
+<!--
+  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>
+  <parent>
+    <groupId>org.apache.solr</groupId>
+    <artifactId>solr-parent</artifactId>
+    <version>8.8.0</version>
+    <relativePath>../../pom.xml</relativePath>
+  </parent>
+  <groupId>org.apache.solr</groupId>
+  <artifactId>solr-dataimporthandler-extras</artifactId>
+  <packaging>jar</packaging>
+  <name>Apache Solr DataImportHandler Extras</name>
+  <description>Apache Solr DataImportHandler Extras</description>
+  <properties>
+    <module-directory>solr/contrib/dataimporthandler-extras</module-directory>
+    <relative-top-level>../../../..</relative-top-level>
+    <module-path>${relative-top-level}/${module-directory}</module-path>
+  </properties>
+  <scm>
+    <connection>scm:git:${vc-anonymous-base-url}</connection>
+    <developerConnection>scm:git:${vc-dev-base-url}</developerConnection>
+    <url>${vc-browse-base-url};f=${module-directory}</url>
+  </scm>
+  <dependencies>
+    <dependency>
+      <!-- lucene-test-framework dependency must be declared before lucene-core -->
+      <!-- This dependency cannot be put into solr-parent, because local        -->
+      <!-- dependencies are always ordered before inherited dependencies.       -->
+      <groupId>org.apache.lucene</groupId>
+      <artifactId>lucene-test-framework</artifactId>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.solr</groupId>
+      <artifactId>solr-test-framework</artifactId>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.solr</groupId>
+      <artifactId>solr-dataimporthandler</artifactId>
+      <version>${project.version}</version>
+      <type>test-jar</type>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.lucene</groupId>
+      <artifactId>lucene-analyzers-common</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.lucene</groupId>
+      <artifactId>lucene-analyzers-kuromoji</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.lucene</groupId>
+      <artifactId>lucene-analyzers-nori</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.lucene</groupId>
+      <artifactId>lucene-analyzers-phonetic</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.lucene</groupId>
+      <artifactId>lucene-backward-codecs</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.lucene</groupId>
+      <artifactId>lucene-classification</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.lucene</groupId>
+      <artifactId>lucene-codecs</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.lucene</groupId>
+      <artifactId>lucene-core</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.lucene</groupId>
+      <artifactId>lucene-expressions</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.lucene</groupId>
+      <artifactId>lucene-grouping</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.lucene</groupId>
+      <artifactId>lucene-highlighter</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.lucene</groupId>
+      <artifactId>lucene-join</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.lucene</groupId>
+      <artifactId>lucene-memory</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.lucene</groupId>
+      <artifactId>lucene-misc</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.lucene</groupId>
+      <artifactId>lucene-queries</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.lucene</groupId>
+      <artifactId>lucene-queryparser</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.lucene</groupId>
+      <artifactId>lucene-sandbox</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.lucene</groupId>
+      <artifactId>lucene-spatial-extras</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.lucene</groupId>
+      <artifactId>lucene-spatial3d</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.lucene</groupId>
+      <artifactId>lucene-suggest</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.solr</groupId>
+      <artifactId>solr-core</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.solr</groupId>
+      <artifactId>solr-dataimporthandler</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.solr</groupId>
+      <artifactId>solr-solrj</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.carrotsearch</groupId>
+      <artifactId>hppc</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.epam</groupId>
+      <artifactId>parso</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.fasterxml.jackson.core</groupId>
+      <artifactId>jackson-annotations</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.fasterxml.jackson.core</groupId>
+      <artifactId>jackson-core</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.fasterxml.jackson.core</groupId>
+      <artifactId>jackson-databind</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.fasterxml.jackson.dataformat</groupId>
+      <artifactId>jackson-dataformat-smile</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.github.ben-manes.caffeine</groupId>
+      <artifactId>caffeine</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.github.virtuald</groupId>
+      <artifactId>curvesapi</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.github.zafarkhaja</groupId>
+      <artifactId>java-semver</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.google.guava</groupId>
+      <artifactId>guava</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.google.protobuf</groupId>
+      <artifactId>protobuf-java</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.google.re2j</groupId>
+      <artifactId>re2j</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.googlecode.juniversalchardet</groupId>
+      <artifactId>juniversalchardet</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.healthmarketscience.jackcess</groupId>
+      <artifactId>jackcess</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.healthmarketscience.jackcess</groupId>
+      <artifactId>jackcess-encrypt</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.ibm.icu</groupId>
+      <artifactId>icu4j</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.jayway.jsonpath</groupId>
+      <artifactId>json-path</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.lmax</groupId>
+      <artifactId>disruptor</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.pff</groupId>
+      <artifactId>java-libpst</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.rometools</groupId>
+      <artifactId>rome</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.rometools</groupId>
+      <artifactId>rome-utils</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.sun.mail</groupId>
+      <artifactId>gimap</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.sun.mail</groupId>
+      <artifactId>javax.mail</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.tdunning</groupId>
+      <artifactId>t-digest</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.zaxxer</groupId>
+      <artifactId>SparseBitSet</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>commons-cli</groupId>
+      <artifactId>commons-cli</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>commons-codec</groupId>
+      <artifactId>commons-codec</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>commons-collections</groupId>
+      <artifactId>commons-collections</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>commons-io</groupId>
+      <artifactId>commons-io</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>commons-lang</groupId>
+      <artifactId>commons-lang</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>de.l3s.boilerpipe</groupId>
+      <artifactId>boilerpipe</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>io.dropwizard.metrics</groupId>
+      <artifactId>metrics-core</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>io.dropwizard.metrics</groupId>
+      <artifactId>metrics-graphite</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>io.dropwizard.metrics</groupId>
+      <artifactId>metrics-jetty9</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>io.dropwizard.metrics</groupId>
+      <artifactId>metrics-jmx</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>io.dropwizard.metrics</groupId>
+      <artifactId>metrics-jvm</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>io.netty</groupId>
+      <artifactId>netty-buffer</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>io.netty</groupId>
+      <artifactId>netty-codec</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>io.netty</groupId>
+      <artifactId>netty-common</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>io.netty</groupId>
+      <artifactId>netty-handler</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>io.netty</groupId>
+      <artifactId>netty-resolver</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>io.netty</groupId>
+      <artifactId>netty-transport</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>io.netty</groupId>
+      <artifactId>netty-transport-native-epoll</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>io.netty</groupId>
+      <artifactId>netty-transport-native-unix-common</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>io.opentracing</groupId>
+      <artifactId>opentracing-api</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>io.opentracing</groupId>
+      <artifactId>opentracing-noop</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>io.opentracing</groupId>
+      <artifactId>opentracing-util</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>io.sgr</groupId>
+      <artifactId>s2-geometry-library-java</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>javax.activation</groupId>
+      <artifactId>activation</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>javax.servlet</groupId>
+      <artifactId>javax.servlet-api</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>net.hydromatic</groupId>
+      <artifactId>eigenbase-properties</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.antlr</groupId>
+      <artifactId>antlr4-runtime</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.calcite</groupId>
+      <artifactId>calcite-core</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.calcite</groupId>
+      <artifactId>calcite-linq4j</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.calcite.avatica</groupId>
+      <artifactId>avatica-core</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.commons</groupId>
+      <artifactId>commons-collections4</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.commons</groupId>
+      <artifactId>commons-compress</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.commons</groupId>
+      <artifactId>commons-configuration2</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.commons</groupId>
+      <artifactId>commons-csv</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.commons</groupId>
+      <artifactId>commons-exec</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.commons</groupId>
+      <artifactId>commons-lang3</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.commons</groupId>
+      <artifactId>commons-math3</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.commons</groupId>
+      <artifactId>commons-text</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.curator</groupId>
+      <artifactId>curator-client</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.curator</groupId>
+      <artifactId>curator-framework</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.curator</groupId>
+      <artifactId>curator-recipes</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.hadoop</groupId>
+      <artifactId>hadoop-annotations</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.hadoop</groupId>
+      <artifactId>hadoop-auth</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.hadoop</groupId>
+      <artifactId>hadoop-common</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.hadoop</groupId>
+      <artifactId>hadoop-hdfs-client</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.htrace</groupId>
+      <artifactId>htrace-core4</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.httpcomponents</groupId>
+      <artifactId>httpclient</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.httpcomponents</groupId>
+      <artifactId>httpcore</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.httpcomponents</groupId>
+      <artifactId>httpmime</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.james</groupId>
+      <artifactId>apache-mime4j-core</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.james</groupId>
+      <artifactId>apache-mime4j-dom</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.kerby</groupId>
+      <artifactId>kerb-core</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.kerby</groupId>
+      <artifactId>kerb-util</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.kerby</groupId>
+      <artifactId>kerby-asn1</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.kerby</groupId>
+      <artifactId>kerby-pkix</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.logging.log4j</groupId>
+      <artifactId>log4j-1.2-api</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.logging.log4j</groupId>
+      <artifactId>log4j-api</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.logging.log4j</groupId>
+      <artifactId>log4j-core</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.logging.log4j</groupId>
+      <artifactId>log4j-slf4j-impl</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.logging.log4j</groupId>
+      <artifactId>log4j-web</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.pdfbox</groupId>
+      <artifactId>fontbox</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.pdfbox</groupId>
+      <artifactId>jempbox</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.pdfbox</groupId>
+      <artifactId>pdfbox</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.pdfbox</groupId>
+      <artifactId>pdfbox-tools</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.poi</groupId>
+      <artifactId>poi</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.poi</groupId>
+      <artifactId>poi-ooxml</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.poi</groupId>
+      <artifactId>poi-ooxml-schemas</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.poi</groupId>
+      <artifactId>poi-scratchpad</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.tika</groupId>
+      <artifactId>tika-core</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.tika</groupId>
+      <artifactId>tika-java7</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.tika</groupId>
+      <artifactId>tika-parsers</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.tika</groupId>
+      <artifactId>tika-xmp</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.xmlbeans</groupId>
+      <artifactId>xmlbeans</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.zookeeper</groupId>
+      <artifactId>zookeeper</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.zookeeper</groupId>
+      <artifactId>zookeeper-jute</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.aspectj</groupId>
+      <artifactId>aspectjrt</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.bitbucket.b_c</groupId>
+      <artifactId>jose4j</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.bouncycastle</groupId>
+      <artifactId>bcmail-jdk15on</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.bouncycastle</groupId>
+      <artifactId>bcpkix-jdk15on</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.bouncycastle</groupId>
+      <artifactId>bcprov-jdk15on</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.brotli</groupId>
+      <artifactId>dec</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.ccil.cowan.tagsoup</groupId>
+      <artifactId>tagsoup</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.codehaus.janino</groupId>
+      <artifactId>commons-compiler</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.codehaus.janino</groupId>
+      <artifactId>janino</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.codehaus.woodstox</groupId>
+      <artifactId>stax2-api</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.codehaus.woodstox</groupId>
+      <artifactId>woodstox-core-asl</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.eclipse.jetty</groupId>
+      <artifactId>jetty-alpn-client</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.eclipse.jetty</groupId>
+      <artifactId>jetty-alpn-java-client</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.eclipse.jetty</groupId>
+      <artifactId>jetty-alpn-java-server</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.eclipse.jetty</groupId>
+      <artifactId>jetty-alpn-server</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.eclipse.jetty</groupId>
+      <artifactId>jetty-client</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.eclipse.jetty</groupId>
+      <artifactId>jetty-continuation</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.eclipse.jetty</groupId>
+      <artifactId>jetty-deploy</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.eclipse.jetty</groupId>
+      <artifactId>jetty-http</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.eclipse.jetty</groupId>
+      <artifactId>jetty-io</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.eclipse.jetty</groupId>
+      <artifactId>jetty-jmx</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.eclipse.jetty</groupId>
+      <artifactId>jetty-rewrite</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.eclipse.jetty</groupId>
+      <artifactId>jetty-security</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.eclipse.jetty</groupId>
+      <artifactId>jetty-server</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.eclipse.jetty</groupId>
+      <artifactId>jetty-servlet</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.eclipse.jetty</groupId>
+      <artifactId>jetty-servlets</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.eclipse.jetty</groupId>
+      <artifactId>jetty-util</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.eclipse.jetty</groupId>
+      <artifactId>jetty-webapp</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.eclipse.jetty</groupId>
+      <artifactId>jetty-xml</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.eclipse.jetty.http2</groupId>
+      <artifactId>http2-client</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.eclipse.jetty.http2</groupId>
+      <artifactId>http2-common</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.eclipse.jetty.http2</groupId>
+      <artifactId>http2-hpack</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.eclipse.jetty.http2</groupId>
+      <artifactId>http2-http-client-transport</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.eclipse.jetty.http2</groupId>
+      <artifactId>http2-server</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.gagravarr</groupId>
+      <artifactId>vorbis-java-core</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.gagravarr</groupId>
+      <artifactId>vorbis-java-tika</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.jdom</groupId>
+      <artifactId>jdom2</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.locationtech.spatial4j</groupId>
+      <artifactId>spatial4j</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.ow2.asm</groupId>
+      <artifactId>asm</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.ow2.asm</groupId>
+      <artifactId>asm-commons</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.rrd4j</groupId>
+      <artifactId>rrd4j</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.slf4j</groupId>
+      <artifactId>jcl-over-slf4j</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.slf4j</groupId>
+      <artifactId>jul-to-slf4j</artifactId>
+      <optional>true</optional>
+    </dependency>
+    <dependency>
+      <groupId>org.slf4j</groupId>
+      <artifactId>slf4j-api</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.tallison</groupId>
+      <artifactId>isoparser</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.tallison</groupId>
+      <artifactId>jmatio</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.tallison</groupId>
+      <artifactId>metadata-extractor</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.tallison.xmp</groupId>
+      <artifactId>xmpcore-shaded</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.tukaani</groupId>
+      <artifactId>xz</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.xerial.snappy</groupId>
+      <artifactId>snappy-java</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>xerces</groupId>
+      <artifactId>xercesImpl</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>xml-apis</groupId>
+      <artifactId>xml-apis</artifactId>
+    </dependency>
+
+
+  </dependencies>
+  <build>
+    <sourceDirectory>${module-path}/src/java</sourceDirectory>
+    <testSourceDirectory>${module-path}/src/test</testSourceDirectory>
+    <testResources>
+      <testResource>
+        <directory>${module-path}/src/test-files</directory>
+      </testResource>
+      <testResource>
+        <directory>${top-level}/dev-tools/maven/solr</directory>
+        <includes>
+          <include>maven.testlogging.properties</include>
+        </includes>
+      </testResource>
+    </testResources>
+  </build>
+</project>

Added: dev/lucene/lucene-solr-8.8.0-RC2-revb10659f0fc18b58b90929cfdadde94544d202c4a/solr/maven/org/apache/solr/solr-dataimporthandler-extras/8.8.0/solr-dataimporthandler-extras-8.8.0.pom.asc
==============================================================================
--- dev/lucene/lucene-solr-8.8.0-RC2-revb10659f0fc18b58b90929cfdadde94544d202c4a/solr/maven/org/apache/solr/solr-dataimporthandler-extras/8.8.0/solr-dataimporthandler-extras-8.8.0.pom.asc (added)
+++ dev/lucene/lucene-solr-8.8.0-RC2-revb10659f0fc18b58b90929cfdadde94544d202c4a/solr/maven/org/apache/solr/solr-dataimporthandler-extras/8.8.0/solr-dataimporthandler-extras-8.8.0.pom.asc Mon Jan 25 10:18:46 2021
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEEz85fu5IMPHRc7uCEw4/17D/P2z4FAmAOfggACgkQw4/17D/P
+2z4fyw//dTOVToM/O5QWPoeDvSAtqTQX0nqz5rTyk5JBchfU/9etvha7QhoUcLTx
+S1pzl5wB1t2y2DvQolX224aXkgLL6Cvv975tmw6sy2nI7swZb1diUXSKWZ/tGR/u
+dJ+CD8iEwXMqYJTdTSfEdYU6+nLdZvlWm6HVlNnG5MjBmnM+PWEil6B43x6PLUCt
+X/9sV7TFG8oMX7PoBSJfvIZfx4u4p90NyB4HkXFzrXXhk9XeIqZmetmGWEstTl+B
+Qr7AFtDwKhQLAXA3/0max2oFuodiKVWINBTlArKP3iyCYxhmrmViyAYrdkAc9que
+MOy1HC8NblHZPmj+TrdAOucqDFihPHNEx1OL3k5vG0059GhJxtXa5Z3RAvDU8vGM
+5IBg+pgmkAW8mChbM5m2KJwJvVKEds4L6TgKH7YJiFugUd6eOL1gsW61rmAt/k9n
+GpEtng86xvbkDrCHOO9Fu7XXa/0SBO+n/N22zdJC8kDl6v5Vz0w8jZsdmUFgPP1s
+1GHxcySZJXTHOhelW8TTBRSN2kkeVc66S77uNCz7G5F5lxBnHKdFOqN110HSD7r/
+wHlTyff+OlIkZ0Kqu9Y+11mpTZne0hW0LvnmtGfGqiU2LGM10mEueQxAR2g8lnQW
+3IxSWN/aviuxEQEY5j+LOda4RhZ2QWNX1wM5Rwnc92qAz4v4K2k=
+=4tdi
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-8.8.0-RC2-revb10659f0fc18b58b90929cfdadde94544d202c4a/solr/maven/org/apache/solr/solr-dataimporthandler-extras/8.8.0/solr-dataimporthandler-extras-8.8.0.pom.md5
==============================================================================
--- dev/lucene/lucene-solr-8.8.0-RC2-revb10659f0fc18b58b90929cfdadde94544d202c4a/solr/maven/org/apache/solr/solr-dataimporthandler-extras/8.8.0/solr-dataimporthandler-extras-8.8.0.pom.md5 (added)
+++ dev/lucene/lucene-solr-8.8.0-RC2-revb10659f0fc18b58b90929cfdadde94544d202c4a/solr/maven/org/apache/solr/solr-dataimporthandler-extras/8.8.0/solr-dataimporthandler-extras-8.8.0.pom.md5 Mon Jan 25 10:18:46 2021
@@ -0,0 +1 @@
+910e806398f6a6d32796de47ae686289
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.8.0-RC2-revb10659f0fc18b58b90929cfdadde94544d202c4a/solr/maven/org/apache/solr/solr-dataimporthandler-extras/8.8.0/solr-dataimporthandler-extras-8.8.0.pom.sha1
==============================================================================
--- dev/lucene/lucene-solr-8.8.0-RC2-revb10659f0fc18b58b90929cfdadde94544d202c4a/solr/maven/org/apache/solr/solr-dataimporthandler-extras/8.8.0/solr-dataimporthandler-extras-8.8.0.pom.sha1 (added)
+++ dev/lucene/lucene-solr-8.8.0-RC2-revb10659f0fc18b58b90929cfdadde94544d202c4a/solr/maven/org/apache/solr/solr-dataimporthandler-extras/8.8.0/solr-dataimporthandler-extras-8.8.0.pom.sha1 Mon Jan 25 10:18:46 2021
@@ -0,0 +1 @@
+28ed4109e5c2543d5eac2cb26f8e7ba2d5ed380e
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.8.0-RC2-revb10659f0fc18b58b90929cfdadde94544d202c4a/solr/maven/org/apache/solr/solr-dataimporthandler-extras/maven-metadata.xml
==============================================================================
--- dev/lucene/lucene-solr-8.8.0-RC2-revb10659f0fc18b58b90929cfdadde94544d202c4a/solr/maven/org/apache/solr/solr-dataimporthandler-extras/maven-metadata.xml (added)
+++ dev/lucene/lucene-solr-8.8.0-RC2-revb10659f0fc18b58b90929cfdadde94544d202c4a/solr/maven/org/apache/solr/solr-dataimporthandler-extras/maven-metadata.xml Mon Jan 25 10:18:46 2021
@@ -0,0 +1,12 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<metadata>
+  <groupId>org.apache.solr</groupId>
+  <artifactId>solr-dataimporthandler-extras</artifactId>
+  <version>8.8.0</version>
+  <versioning>
+    <versions>
+      <version>8.8.0</version>
+    </versions>
+    <lastUpdated>20210125081435</lastUpdated>
+  </versioning>
+</metadata>

Added: dev/lucene/lucene-solr-8.8.0-RC2-revb10659f0fc18b58b90929cfdadde94544d202c4a/solr/maven/org/apache/solr/solr-dataimporthandler-extras/maven-metadata.xml.md5
==============================================================================
--- dev/lucene/lucene-solr-8.8.0-RC2-revb10659f0fc18b58b90929cfdadde94544d202c4a/solr/maven/org/apache/solr/solr-dataimporthandler-extras/maven-metadata.xml.md5 (added)
+++ dev/lucene/lucene-solr-8.8.0-RC2-revb10659f0fc18b58b90929cfdadde94544d202c4a/solr/maven/org/apache/solr/solr-dataimporthandler-extras/maven-metadata.xml.md5 Mon Jan 25 10:18:46 2021
@@ -0,0 +1 @@
+e7a1c6ba691a203100a799f7ecc9fc29
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.8.0-RC2-revb10659f0fc18b58b90929cfdadde94544d202c4a/solr/maven/org/apache/solr/solr-dataimporthandler-extras/maven-metadata.xml.sha1
==============================================================================
--- dev/lucene/lucene-solr-8.8.0-RC2-revb10659f0fc18b58b90929cfdadde94544d202c4a/solr/maven/org/apache/solr/solr-dataimporthandler-extras/maven-metadata.xml.sha1 (added)
+++ dev/lucene/lucene-solr-8.8.0-RC2-revb10659f0fc18b58b90929cfdadde94544d202c4a/solr/maven/org/apache/solr/solr-dataimporthandler-extras/maven-metadata.xml.sha1 Mon Jan 25 10:18:46 2021
@@ -0,0 +1 @@
+122327a69bff707e33e733b81b972616b3b64ca5
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.8.0-RC2-revb10659f0fc18b58b90929cfdadde94544d202c4a/solr/maven/org/apache/solr/solr-dataimporthandler/8.8.0/solr-dataimporthandler-8.8.0-javadoc.jar
==============================================================================
Binary file - no diff available.

Propchange: dev/lucene/lucene-solr-8.8.0-RC2-revb10659f0fc18b58b90929cfdadde94544d202c4a/solr/maven/org/apache/solr/solr-dataimporthandler/8.8.0/solr-dataimporthandler-8.8.0-javadoc.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: dev/lucene/lucene-solr-8.8.0-RC2-revb10659f0fc18b58b90929cfdadde94544d202c4a/solr/maven/org/apache/solr/solr-dataimporthandler/8.8.0/solr-dataimporthandler-8.8.0-javadoc.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-8.8.0-RC2-revb10659f0fc18b58b90929cfdadde94544d202c4a/solr/maven/org/apache/solr/solr-dataimporthandler/8.8.0/solr-dataimporthandler-8.8.0-javadoc.jar.asc (added)
+++ dev/lucene/lucene-solr-8.8.0-RC2-revb10659f0fc18b58b90929cfdadde94544d202c4a/solr/maven/org/apache/solr/solr-dataimporthandler/8.8.0/solr-dataimporthandler-8.8.0-javadoc.jar.asc Mon Jan 25 10:18:46 2021
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEEz85fu5IMPHRc7uCEw4/17D/P2z4FAmAOfgkACgkQw4/17D/P
+2z6bsxAApfmQt92Lz3arcHeGInMGg36ZwJdL/bbe5oDhn+97KreeaGsBTCmVziwu
+Wy5j98okIuAKLYerUejr7rgvVcifOcYJTLBSkmUvPslcxn26GYdJixaDUfhAcy8x
+dg/um4O0m8uu67wWBA30F0fqpRGIzTCqnF89C+Dh6qAdKFnXjiPXjmITnGK2Otng
+Vhw1zqJHZ/IdtigqsvYp4RSObgd5cd40iW1ywzfznmWrNhK/G8g/Oe9Ah1xkRlpY
+Oc0/dzjrN2urR2MYn4+CtHZGtjdUDI8FROTwSkO2PTRfcpxmpE7dA4I3luhqEoKH
+wpqDbVjLjQ1Y5FmYgBY578tmcQHjl3jPi/DuL9jSyp1PBYbjVX7N5oqH0rSw4406
+cglULj7fbnDx3hEbSaMnvU7beSXzcrU3vZQzoTSNXRctsB4DpAE1Mndc4iIk7Vvz
+IYk+YDLHS6/MJ7cSjPgLPgIRajxjPMin1+CNihpy7NfHRkImC7NVSuo9Jkwm/Ghp
+Ougp/pamOx7hPCwfFrHsYV8vEylkP5+DAGUK7ljgiA54NFOfRR6V/i47Fkf8kQrf
+h+TUxEWWc5p6H4l3DuXu7tn/FjUsmK8fCupXqdD5SRXxgraftlz9sOtG2+t/kws+
+kQw4eylKNdRnY45H1/7183SEO5YMdG0pqE0EWDtgb85R3Yy0A9g=
+=tHCj
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-8.8.0-RC2-revb10659f0fc18b58b90929cfdadde94544d202c4a/solr/maven/org/apache/solr/solr-dataimporthandler/8.8.0/solr-dataimporthandler-8.8.0-javadoc.jar.md5
==============================================================================
--- dev/lucene/lucene-solr-8.8.0-RC2-revb10659f0fc18b58b90929cfdadde94544d202c4a/solr/maven/org/apache/solr/solr-dataimporthandler/8.8.0/solr-dataimporthandler-8.8.0-javadoc.jar.md5 (added)
+++ dev/lucene/lucene-solr-8.8.0-RC2-revb10659f0fc18b58b90929cfdadde94544d202c4a/solr/maven/org/apache/solr/solr-dataimporthandler/8.8.0/solr-dataimporthandler-8.8.0-javadoc.jar.md5 Mon Jan 25 10:18:46 2021
@@ -0,0 +1 @@
+e5ca50379b08ccedf9d2fbf654996b87
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.8.0-RC2-revb10659f0fc18b58b90929cfdadde94544d202c4a/solr/maven/org/apache/solr/solr-dataimporthandler/8.8.0/solr-dataimporthandler-8.8.0-javadoc.jar.sha1
==============================================================================
--- dev/lucene/lucene-solr-8.8.0-RC2-revb10659f0fc18b58b90929cfdadde94544d202c4a/solr/maven/org/apache/solr/solr-dataimporthandler/8.8.0/solr-dataimporthandler-8.8.0-javadoc.jar.sha1 (added)
+++ dev/lucene/lucene-solr-8.8.0-RC2-revb10659f0fc18b58b90929cfdadde94544d202c4a/solr/maven/org/apache/solr/solr-dataimporthandler/8.8.0/solr-dataimporthandler-8.8.0-javadoc.jar.sha1 Mon Jan 25 10:18:46 2021
@@ -0,0 +1 @@
+49e92f4d62908d1f4b708c9e5bf2e61643a9e7a1
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.8.0-RC2-revb10659f0fc18b58b90929cfdadde94544d202c4a/solr/maven/org/apache/solr/solr-dataimporthandler/8.8.0/solr-dataimporthandler-8.8.0-sources.jar
==============================================================================
Binary file - no diff available.

Propchange: dev/lucene/lucene-solr-8.8.0-RC2-revb10659f0fc18b58b90929cfdadde94544d202c4a/solr/maven/org/apache/solr/solr-dataimporthandler/8.8.0/solr-dataimporthandler-8.8.0-sources.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: dev/lucene/lucene-solr-8.8.0-RC2-revb10659f0fc18b58b90929cfdadde94544d202c4a/solr/maven/org/apache/solr/solr-dataimporthandler/8.8.0/solr-dataimporthandler-8.8.0-sources.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-8.8.0-RC2-revb10659f0fc18b58b90929cfdadde94544d202c4a/solr/maven/org/apache/solr/solr-dataimporthandler/8.8.0/solr-dataimporthandler-8.8.0-sources.jar.asc (added)
+++ dev/lucene/lucene-solr-8.8.0-RC2-revb10659f0fc18b58b90929cfdadde94544d202c4a/solr/maven/org/apache/solr/solr-dataimporthandler/8.8.0/solr-dataimporthandler-8.8.0-sources.jar.asc Mon Jan 25 10:18:46 2021
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEEz85fu5IMPHRc7uCEw4/17D/P2z4FAmAOfgoACgkQw4/17D/P
+2z4otw/8DNLRG9VV6EyrGIakJNFLcp/KLiWNjO3jaH/OSAdXZnbd/lfMIvfOpoNc
+mnq7kSxu7nO5D/DsfS42RWA9COQe1+WdgHWjIiiXiE90NMhRWmseBX/IDUYHERF3
+ECOfRLj88Y6AzO3B1GBhS0fwr10t2rhLIR3f/g3U9SiLFIrZbm8l5oVwJLHiotH7
+TGfI/+bDAld8xxr1YHjMPQcYHyzzmsI3vR/KDTdvSAEGuAPGgbv3HfUnpySABHH5
+oYqcgZCtF0cpLUJL4K0wa0eGamGEynOqv8XozMOa4jRptTOf6/8iceNtEPHD/kwW
+H9OkAxWvS9glVVce+mCB+0QK7w6gIaHUyK0gLlZrRUq4T1bhwvrPOyqShx+IOqc2
+pY0vDz7cZ3MiqFBf1P8wN+bTd8YZgF8scI8Q5sZFfoCf5wfkpGz/F0ei4AIGP5Bn
+iFoOxe7UrGj1r7AUgCX0wuVoXjNdOMT8HVM39OEbvNb5inNO3qnLfkt0Sv79KRmi
+byFVPMHoJgNsQKKB+OXNXaDnj7dPe2EVQbs+gyrNJ4nMkohJqhulFGj0fSxGwtjQ
+3h7YyyzyqXMgcKHzWiDKTIYWQF8e6PdRGe+PlpROCQtQMfcClk3A7cWOQZikjMBN
+JD40D4D7BshaIXtGd6B+AY14YnI0ZgIkp2viQy9gPr+WnoBOQnM=
+=mV4U
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-8.8.0-RC2-revb10659f0fc18b58b90929cfdadde94544d202c4a/solr/maven/org/apache/solr/solr-dataimporthandler/8.8.0/solr-dataimporthandler-8.8.0-sources.jar.md5
==============================================================================
--- dev/lucene/lucene-solr-8.8.0-RC2-revb10659f0fc18b58b90929cfdadde94544d202c4a/solr/maven/org/apache/solr/solr-dataimporthandler/8.8.0/solr-dataimporthandler-8.8.0-sources.jar.md5 (added)
+++ dev/lucene/lucene-solr-8.8.0-RC2-revb10659f0fc18b58b90929cfdadde94544d202c4a/solr/maven/org/apache/solr/solr-dataimporthandler/8.8.0/solr-dataimporthandler-8.8.0-sources.jar.md5 Mon Jan 25 10:18:46 2021
@@ -0,0 +1 @@
+96aa5795d66c82594ce9df55173b6a91
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.8.0-RC2-revb10659f0fc18b58b90929cfdadde94544d202c4a/solr/maven/org/apache/solr/solr-dataimporthandler/8.8.0/solr-dataimporthandler-8.8.0-sources.jar.sha1
==============================================================================
--- dev/lucene/lucene-solr-8.8.0-RC2-revb10659f0fc18b58b90929cfdadde94544d202c4a/solr/maven/org/apache/solr/solr-dataimporthandler/8.8.0/solr-dataimporthandler-8.8.0-sources.jar.sha1 (added)
+++ dev/lucene/lucene-solr-8.8.0-RC2-revb10659f0fc18b58b90929cfdadde94544d202c4a/solr/maven/org/apache/solr/solr-dataimporthandler/8.8.0/solr-dataimporthandler-8.8.0-sources.jar.sha1 Mon Jan 25 10:18:46 2021
@@ -0,0 +1 @@
+330229d3bb4e31ace257d4ee20c49f92cd8f2915
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.8.0-RC2-revb10659f0fc18b58b90929cfdadde94544d202c4a/solr/maven/org/apache/solr/solr-dataimporthandler/8.8.0/solr-dataimporthandler-8.8.0.jar
==============================================================================
Binary file - no diff available.

Propchange: dev/lucene/lucene-solr-8.8.0-RC2-revb10659f0fc18b58b90929cfdadde94544d202c4a/solr/maven/org/apache/solr/solr-dataimporthandler/8.8.0/solr-dataimporthandler-8.8.0.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: dev/lucene/lucene-solr-8.8.0-RC2-revb10659f0fc18b58b90929cfdadde94544d202c4a/solr/maven/org/apache/solr/solr-dataimporthandler/8.8.0/solr-dataimporthandler-8.8.0.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-8.8.0-RC2-revb10659f0fc18b58b90929cfdadde94544d202c4a/solr/maven/org/apache/solr/solr-dataimporthandler/8.8.0/solr-dataimporthandler-8.8.0.jar.asc (added)
+++ dev/lucene/lucene-solr-8.8.0-RC2-revb10659f0fc18b58b90929cfdadde94544d202c4a/solr/maven/org/apache/solr/solr-dataimporthandler/8.8.0/solr-dataimporthandler-8.8.0.jar.asc Mon Jan 25 10:18:46 2021
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEEz85fu5IMPHRc7uCEw4/17D/P2z4FAmAOfgsACgkQw4/17D/P
+2z5uCQ/+PhA34MnaGmeIau8e9BJkuaTIbNBQ8x4ptYiYG31rEerGFvLqnKDgMfix
+nvBYXUSjwi+EycdxwoTIn0dKrZl1Td4jlQF5upljQb+hAFTt6Ydjq8U5DoKl4re6
+sfNPzpnvN53ern85uG5UOa2QtEcbhCAKRFmUquJGtNjnLLMHouPvCruWeC2Wy6m8
+SBcHWZXCfowfVkK5s19IT/5njMcW58MUvrGD1L+KktMklvN7Vp8aJWz6aIs21/OQ
+YKU7UBhApT1/brK1bOkXX1P8iIeQuYDTDBU4Z4oR74WnaGhbtO0r50CqvzQTJ97s
+C21pHEe8SwsvsMXb4uao9KfYaxvnecNtHmn90ND7xm9EANByJKH5s+YtMpVjDxIp
+kjyY8o5TBMzO+MtiPHlwJOFvfqEZqLHPM+jahfSOYulDDpFRfl0NVGOD42DXw/iA
+ZEhP0znnwk4BcwvAY59g4ACiCnKWSN7sAXU/y4s7Cx2fQR7f+qYQOSZoz/XE5J5O
+enBh79tWgBHdaE7Q0NPapQT5Y8FN+0dX+tQ8B3qIEzlJnhA0gkj91WEam8mJrS5e
+uL3m4834fKjTlSgk1fuP3EQ/ycrXH1/Y92CdVmAUyLXIW2XNT9eJS5f93DvXXjik
+HDLgJ4Fi0fvt9n7gZYCY0B8j6Z3Geszb+uvCLp+SvObocbZqopc=
+=2yz4
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-8.8.0-RC2-revb10659f0fc18b58b90929cfdadde94544d202c4a/solr/maven/org/apache/solr/solr-dataimporthandler/8.8.0/solr-dataimporthandler-8.8.0.jar.md5
==============================================================================
--- dev/lucene/lucene-solr-8.8.0-RC2-revb10659f0fc18b58b90929cfdadde94544d202c4a/solr/maven/org/apache/solr/solr-dataimporthandler/8.8.0/solr-dataimporthandler-8.8.0.jar.md5 (added)
+++ dev/lucene/lucene-solr-8.8.0-RC2-revb10659f0fc18b58b90929cfdadde94544d202c4a/solr/maven/org/apache/solr/solr-dataimporthandler/8.8.0/solr-dataimporthandler-8.8.0.jar.md5 Mon Jan 25 10:18:46 2021
@@ -0,0 +1 @@
+867283c82820437b765d8910f472bc40
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.8.0-RC2-revb10659f0fc18b58b90929cfdadde94544d202c4a/solr/maven/org/apache/solr/solr-dataimporthandler/8.8.0/solr-dataimporthandler-8.8.0.jar.sha1
==============================================================================
--- dev/lucene/lucene-solr-8.8.0-RC2-revb10659f0fc18b58b90929cfdadde94544d202c4a/solr/maven/org/apache/solr/solr-dataimporthandler/8.8.0/solr-dataimporthandler-8.8.0.jar.sha1 (added)
+++ dev/lucene/lucene-solr-8.8.0-RC2-revb10659f0fc18b58b90929cfdadde94544d202c4a/solr/maven/org/apache/solr/solr-dataimporthandler/8.8.0/solr-dataimporthandler-8.8.0.jar.sha1 Mon Jan 25 10:18:46 2021
@@ -0,0 +1 @@
+2bd08b476673c46f37d76eb9e3bf6237a2846d91
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.8.0-RC2-revb10659f0fc18b58b90929cfdadde94544d202c4a/solr/maven/org/apache/solr/solr-dataimporthandler/8.8.0/solr-dataimporthandler-8.8.0.pom
==============================================================================
--- dev/lucene/lucene-solr-8.8.0-RC2-revb10659f0fc18b58b90929cfdadde94544d202c4a/solr/maven/org/apache/solr/solr-dataimporthandler/8.8.0/solr-dataimporthandler-8.8.0.pom (added)
+++ dev/lucene/lucene-solr-8.8.0-RC2-revb10659f0fc18b58b90929cfdadde94544d202c4a/solr/maven/org/apache/solr/solr-dataimporthandler/8.8.0/solr-dataimporthandler-8.8.0.pom Mon Jan 25 10:18:46 2021
@@ -0,0 +1,622 @@
+<!--
+  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>
+  <parent>
+    <groupId>org.apache.solr</groupId>
+    <artifactId>solr-parent</artifactId>
+    <version>8.8.0</version>
+    <relativePath>../../pom.xml</relativePath>
+  </parent>
+  <groupId>org.apache.solr</groupId>
+  <artifactId>solr-dataimporthandler</artifactId>
+  <packaging>jar</packaging>
+  <name>Apache Solr DataImportHandler</name>
+  <description>Apache Solr DataImportHandler</description>
+  <properties>
+    <module-directory>solr/contrib/dataimporthandler</module-directory>
+    <relative-top-level>../../../..</relative-top-level>
+    <module-path>${relative-top-level}/${module-directory}</module-path>
+  </properties>
+  <scm>
+    <connection>scm:git:${vc-anonymous-base-url}</connection>
+    <developerConnection>scm:git:${vc-dev-base-url}</developerConnection>
+    <url>${vc-browse-base-url};f=${module-directory}</url>
+  </scm>
+  <dependencies>
+    <dependency>
+      <!-- lucene-test-framework dependency must be declared before lucene-core -->
+      <!-- This dependency cannot be put into solr-parent, because local        -->
+      <!-- dependencies are always ordered before inherited dependencies.       -->
+      <groupId>org.apache.lucene</groupId>
+      <artifactId>lucene-test-framework</artifactId>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.solr</groupId>
+      <artifactId>solr-test-framework</artifactId>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.lucene</groupId>
+      <artifactId>lucene-analyzers-common</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.lucene</groupId>
+      <artifactId>lucene-analyzers-kuromoji</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.lucene</groupId>
+      <artifactId>lucene-analyzers-nori</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.lucene</groupId>
+      <artifactId>lucene-analyzers-phonetic</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.lucene</groupId>
+      <artifactId>lucene-backward-codecs</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.lucene</groupId>
+      <artifactId>lucene-classification</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.lucene</groupId>
+      <artifactId>lucene-codecs</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.lucene</groupId>
+      <artifactId>lucene-core</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.lucene</groupId>
+      <artifactId>lucene-expressions</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.lucene</groupId>
+      <artifactId>lucene-grouping</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.lucene</groupId>
+      <artifactId>lucene-highlighter</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.lucene</groupId>
+      <artifactId>lucene-join</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.lucene</groupId>
+      <artifactId>lucene-memory</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.lucene</groupId>
+      <artifactId>lucene-misc</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.lucene</groupId>
+      <artifactId>lucene-queries</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.lucene</groupId>
+      <artifactId>lucene-queryparser</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.lucene</groupId>
+      <artifactId>lucene-sandbox</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.lucene</groupId>
+      <artifactId>lucene-spatial-extras</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.lucene</groupId>
+      <artifactId>lucene-spatial3d</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.lucene</groupId>
+      <artifactId>lucene-suggest</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.solr</groupId>
+      <artifactId>solr-core</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.solr</groupId>
+      <artifactId>solr-solrj</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.carrotsearch</groupId>
+      <artifactId>hppc</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.fasterxml.jackson.core</groupId>
+      <artifactId>jackson-annotations</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.fasterxml.jackson.core</groupId>
+      <artifactId>jackson-core</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.fasterxml.jackson.core</groupId>
+      <artifactId>jackson-databind</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.fasterxml.jackson.dataformat</groupId>
+      <artifactId>jackson-dataformat-smile</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.github.ben-manes.caffeine</groupId>
+      <artifactId>caffeine</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.github.zafarkhaja</groupId>
+      <artifactId>java-semver</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.google.guava</groupId>
+      <artifactId>guava</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.google.protobuf</groupId>
+      <artifactId>protobuf-java</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.google.re2j</groupId>
+      <artifactId>re2j</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.jayway.jsonpath</groupId>
+      <artifactId>json-path</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.lmax</groupId>
+      <artifactId>disruptor</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.tdunning</groupId>
+      <artifactId>t-digest</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>commons-cli</groupId>
+      <artifactId>commons-cli</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>commons-codec</groupId>
+      <artifactId>commons-codec</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>commons-collections</groupId>
+      <artifactId>commons-collections</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>commons-io</groupId>
+      <artifactId>commons-io</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>commons-lang</groupId>
+      <artifactId>commons-lang</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>io.dropwizard.metrics</groupId>
+      <artifactId>metrics-core</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>io.dropwizard.metrics</groupId>
+      <artifactId>metrics-graphite</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>io.dropwizard.metrics</groupId>
+      <artifactId>metrics-jetty9</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>io.dropwizard.metrics</groupId>
+      <artifactId>metrics-jmx</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>io.dropwizard.metrics</groupId>
+      <artifactId>metrics-jvm</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>io.netty</groupId>
+      <artifactId>netty-buffer</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>io.netty</groupId>
+      <artifactId>netty-codec</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>io.netty</groupId>
+      <artifactId>netty-common</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>io.netty</groupId>
+      <artifactId>netty-handler</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>io.netty</groupId>
+      <artifactId>netty-resolver</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>io.netty</groupId>
+      <artifactId>netty-transport</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>io.netty</groupId>
+      <artifactId>netty-transport-native-epoll</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>io.netty</groupId>
+      <artifactId>netty-transport-native-unix-common</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>io.opentracing</groupId>
+      <artifactId>opentracing-api</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>io.opentracing</groupId>
+      <artifactId>opentracing-noop</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>io.opentracing</groupId>
+      <artifactId>opentracing-util</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>io.sgr</groupId>
+      <artifactId>s2-geometry-library-java</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>javax.servlet</groupId>
+      <artifactId>javax.servlet-api</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>net.hydromatic</groupId>
+      <artifactId>eigenbase-properties</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.antlr</groupId>
+      <artifactId>antlr4-runtime</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.calcite</groupId>
+      <artifactId>calcite-core</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.calcite</groupId>
+      <artifactId>calcite-linq4j</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.calcite.avatica</groupId>
+      <artifactId>avatica-core</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.commons</groupId>
+      <artifactId>commons-collections4</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.commons</groupId>
+      <artifactId>commons-configuration2</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.commons</groupId>
+      <artifactId>commons-exec</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.commons</groupId>
+      <artifactId>commons-lang3</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.commons</groupId>
+      <artifactId>commons-math3</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.commons</groupId>
+      <artifactId>commons-text</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.curator</groupId>
+      <artifactId>curator-client</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.curator</groupId>
+      <artifactId>curator-framework</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.curator</groupId>
+      <artifactId>curator-recipes</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.hadoop</groupId>
+      <artifactId>hadoop-annotations</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.hadoop</groupId>
+      <artifactId>hadoop-auth</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.hadoop</groupId>
+      <artifactId>hadoop-common</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.hadoop</groupId>
+      <artifactId>hadoop-hdfs-client</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.htrace</groupId>
+      <artifactId>htrace-core4</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.httpcomponents</groupId>
+      <artifactId>httpclient</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.httpcomponents</groupId>
+      <artifactId>httpcore</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.httpcomponents</groupId>
+      <artifactId>httpmime</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.kerby</groupId>
+      <artifactId>kerb-core</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.kerby</groupId>
+      <artifactId>kerb-util</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.kerby</groupId>
+      <artifactId>kerby-asn1</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.kerby</groupId>
+      <artifactId>kerby-pkix</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.logging.log4j</groupId>
+      <artifactId>log4j-1.2-api</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.logging.log4j</groupId>
+      <artifactId>log4j-api</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.logging.log4j</groupId>
+      <artifactId>log4j-core</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.logging.log4j</groupId>
+      <artifactId>log4j-slf4j-impl</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.logging.log4j</groupId>
+      <artifactId>log4j-web</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.zookeeper</groupId>
+      <artifactId>zookeeper</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.zookeeper</groupId>
+      <artifactId>zookeeper-jute</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.bitbucket.b_c</groupId>
+      <artifactId>jose4j</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.codehaus.janino</groupId>
+      <artifactId>commons-compiler</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.codehaus.janino</groupId>
+      <artifactId>janino</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.codehaus.woodstox</groupId>
+      <artifactId>stax2-api</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.codehaus.woodstox</groupId>
+      <artifactId>woodstox-core-asl</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.eclipse.jetty</groupId>
+      <artifactId>jetty-alpn-client</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.eclipse.jetty</groupId>
+      <artifactId>jetty-alpn-java-client</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.eclipse.jetty</groupId>
+      <artifactId>jetty-alpn-java-server</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.eclipse.jetty</groupId>
+      <artifactId>jetty-alpn-server</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.eclipse.jetty</groupId>
+      <artifactId>jetty-client</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.eclipse.jetty</groupId>
+      <artifactId>jetty-continuation</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.eclipse.jetty</groupId>
+      <artifactId>jetty-deploy</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.eclipse.jetty</groupId>
+      <artifactId>jetty-http</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.eclipse.jetty</groupId>
+      <artifactId>jetty-io</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.eclipse.jetty</groupId>
+      <artifactId>jetty-jmx</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.eclipse.jetty</groupId>
+      <artifactId>jetty-rewrite</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.eclipse.jetty</groupId>
+      <artifactId>jetty-security</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.eclipse.jetty</groupId>
+      <artifactId>jetty-server</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.eclipse.jetty</groupId>
+      <artifactId>jetty-servlet</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.eclipse.jetty</groupId>
+      <artifactId>jetty-servlets</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.eclipse.jetty</groupId>
+      <artifactId>jetty-util</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.eclipse.jetty</groupId>
+      <artifactId>jetty-webapp</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.eclipse.jetty</groupId>
+      <artifactId>jetty-xml</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.eclipse.jetty.http2</groupId>
+      <artifactId>http2-client</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.eclipse.jetty.http2</groupId>
+      <artifactId>http2-common</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.eclipse.jetty.http2</groupId>
+      <artifactId>http2-hpack</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.eclipse.jetty.http2</groupId>
+      <artifactId>http2-http-client-transport</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.eclipse.jetty.http2</groupId>
+      <artifactId>http2-server</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.locationtech.spatial4j</groupId>
+      <artifactId>spatial4j</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.ow2.asm</groupId>
+      <artifactId>asm</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.ow2.asm</groupId>
+      <artifactId>asm-commons</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.rrd4j</groupId>
+      <artifactId>rrd4j</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.slf4j</groupId>
+      <artifactId>jcl-over-slf4j</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.slf4j</groupId>
+      <artifactId>jul-to-slf4j</artifactId>
+      <optional>true</optional>
+    </dependency>
+    <dependency>
+      <groupId>org.slf4j</groupId>
+      <artifactId>slf4j-api</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.xerial.snappy</groupId>
+      <artifactId>snappy-java</artifactId>
+    </dependency>
+
+    <dependency>
+      <groupId>net.bytebuddy</groupId>
+      <artifactId>byte-buddy</artifactId>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.derby</groupId>
+      <artifactId>derby</artifactId>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.hsqldb</groupId>
+      <artifactId>hsqldb</artifactId>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.mockito</groupId>
+      <artifactId>mockito-core</artifactId>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.objenesis</groupId>
+      <artifactId>objenesis</artifactId>
+      <scope>test</scope>
+    </dependency>
+  </dependencies>
+  <build>
+    <sourceDirectory>${module-path}/src/java</sourceDirectory>
+    <testSourceDirectory>${module-path}/src/test</testSourceDirectory>
+    <testResources>
+      <testResource>
+        <directory>${module-path}/src/test-files</directory>
+      </testResource>
+      <testResource>
+        <directory>${top-level}/dev-tools/maven/solr</directory>
+        <includes>
+          <include>maven.testlogging.properties</include>
+        </includes>
+      </testResource>
+    </testResources>
+    <plugins>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-jar-plugin</artifactId>
+        <executions>
+          <execution>
+            <goals>
+              <goal>test-jar</goal>
+            </goals>
+          </execution>
+        </executions>
+      </plugin>
+    </plugins>
+  </build>
+</project>

Added: dev/lucene/lucene-solr-8.8.0-RC2-revb10659f0fc18b58b90929cfdadde94544d202c4a/solr/maven/org/apache/solr/solr-dataimporthandler/8.8.0/solr-dataimporthandler-8.8.0.pom.asc
==============================================================================
--- dev/lucene/lucene-solr-8.8.0-RC2-revb10659f0fc18b58b90929cfdadde94544d202c4a/solr/maven/org/apache/solr/solr-dataimporthandler/8.8.0/solr-dataimporthandler-8.8.0.pom.asc (added)
+++ dev/lucene/lucene-solr-8.8.0-RC2-revb10659f0fc18b58b90929cfdadde94544d202c4a/solr/maven/org/apache/solr/solr-dataimporthandler/8.8.0/solr-dataimporthandler-8.8.0.pom.asc Mon Jan 25 10:18:46 2021
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEEz85fu5IMPHRc7uCEw4/17D/P2z4FAmAOfgsACgkQw4/17D/P
+2z4hfw//UR+KGx0GOyluL7XZ4yUXD8KaTvQsI1rZnViGM2s6edlazJCBU8bxNEb+
+vjlWD+Eh506TkDddHrSNqHbEqH0Aqp6PuJiXJO8yQyhyzQjzNSrtCknojN1fki/j
+usjsWIahZBOCZJYRh/E8k6OSye5THEYcKUtnmT5XdXaHh2tHvFY7QM12XQXvcz3B
+bP/QAOVjEpO80lkJX7Gd0YHbxss60JI5/ukBn1TxLhxHo6SgDv6aa6X1CpAwpaQv
+oe4+7CD3tT5qGRhcm50x/hd0vSlNAdoqH8TY8FXlpe0OT6FLqUxLb+9LFN3J5frr
+cgaW80w+FRC3EWygu2Gq7rMmVenE26J5F2ggbAc0LjiFsT+y7YgZzQVX1zhJ4zfP
+y6h3/PDBmZBQtZDhjgGn+gW/LVHPmBJLQA57PFjlSdEanaehTPSXdejF5GIB+ztm
+YmE7I3PP/VRo9K26ryqYqodTStQR4p5ECb87PVlpPTGgSM5sVCZ11pp6omlrpLTl
+691yqOm1M0ZNL+ywi7RYWth3LJlPIgaIqLyFqHLjlZuE5a3Ql2uDpRySnqdfAxHh
+EiQJGCeE0QzKr6rm+xKgdpw/Tgt0wdVK9rP7UOmhCG3yGxx6w96b+SKInbnx0OcC
+Zhn1dzfz9lku1O4cWkhqQWyv3eXAiKfXmnq452NJmOQ83qi9dIQ=
+=f4Fv
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-8.8.0-RC2-revb10659f0fc18b58b90929cfdadde94544d202c4a/solr/maven/org/apache/solr/solr-dataimporthandler/8.8.0/solr-dataimporthandler-8.8.0.pom.md5
==============================================================================
--- dev/lucene/lucene-solr-8.8.0-RC2-revb10659f0fc18b58b90929cfdadde94544d202c4a/solr/maven/org/apache/solr/solr-dataimporthandler/8.8.0/solr-dataimporthandler-8.8.0.pom.md5 (added)
+++ dev/lucene/lucene-solr-8.8.0-RC2-revb10659f0fc18b58b90929cfdadde94544d202c4a/solr/maven/org/apache/solr/solr-dataimporthandler/8.8.0/solr-dataimporthandler-8.8.0.pom.md5 Mon Jan 25 10:18:46 2021
@@ -0,0 +1 @@
+1f9546e33812ed378a28a93e391e1282
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.8.0-RC2-revb10659f0fc18b58b90929cfdadde94544d202c4a/solr/maven/org/apache/solr/solr-dataimporthandler/8.8.0/solr-dataimporthandler-8.8.0.pom.sha1
==============================================================================
--- dev/lucene/lucene-solr-8.8.0-RC2-revb10659f0fc18b58b90929cfdadde94544d202c4a/solr/maven/org/apache/solr/solr-dataimporthandler/8.8.0/solr-dataimporthandler-8.8.0.pom.sha1 (added)
+++ dev/lucene/lucene-solr-8.8.0-RC2-revb10659f0fc18b58b90929cfdadde94544d202c4a/solr/maven/org/apache/solr/solr-dataimporthandler/8.8.0/solr-dataimporthandler-8.8.0.pom.sha1 Mon Jan 25 10:18:46 2021
@@ -0,0 +1 @@
+82bdc4e7270d1e0e9336c3803411a94bf96e9751
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.8.0-RC2-revb10659f0fc18b58b90929cfdadde94544d202c4a/solr/maven/org/apache/solr/solr-dataimporthandler/maven-metadata.xml
==============================================================================
--- dev/lucene/lucene-solr-8.8.0-RC2-revb10659f0fc18b58b90929cfdadde94544d202c4a/solr/maven/org/apache/solr/solr-dataimporthandler/maven-metadata.xml (added)
+++ dev/lucene/lucene-solr-8.8.0-RC2-revb10659f0fc18b58b90929cfdadde94544d202c4a/solr/maven/org/apache/solr/solr-dataimporthandler/maven-metadata.xml Mon Jan 25 10:18:46 2021
@@ -0,0 +1,12 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<metadata>
+  <groupId>org.apache.solr</groupId>
+  <artifactId>solr-dataimporthandler</artifactId>
+  <version>8.8.0</version>
+  <versioning>
+    <versions>
+      <version>8.8.0</version>
+    </versions>
+    <lastUpdated>20210125081437</lastUpdated>
+  </versioning>
+</metadata>

Added: dev/lucene/lucene-solr-8.8.0-RC2-revb10659f0fc18b58b90929cfdadde94544d202c4a/solr/maven/org/apache/solr/solr-dataimporthandler/maven-metadata.xml.md5
==============================================================================
--- dev/lucene/lucene-solr-8.8.0-RC2-revb10659f0fc18b58b90929cfdadde94544d202c4a/solr/maven/org/apache/solr/solr-dataimporthandler/maven-metadata.xml.md5 (added)
+++ dev/lucene/lucene-solr-8.8.0-RC2-revb10659f0fc18b58b90929cfdadde94544d202c4a/solr/maven/org/apache/solr/solr-dataimporthandler/maven-metadata.xml.md5 Mon Jan 25 10:18:46 2021
@@ -0,0 +1 @@
+35e9d74511a2484ccab52e1a5301871c
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.8.0-RC2-revb10659f0fc18b58b90929cfdadde94544d202c4a/solr/maven/org/apache/solr/solr-dataimporthandler/maven-metadata.xml.sha1
==============================================================================
--- dev/lucene/lucene-solr-8.8.0-RC2-revb10659f0fc18b58b90929cfdadde94544d202c4a/solr/maven/org/apache/solr/solr-dataimporthandler/maven-metadata.xml.sha1 (added)
+++ dev/lucene/lucene-solr-8.8.0-RC2-revb10659f0fc18b58b90929cfdadde94544d202c4a/solr/maven/org/apache/solr/solr-dataimporthandler/maven-metadata.xml.sha1 Mon Jan 25 10:18:46 2021
@@ -0,0 +1 @@
+caad5a045496652f67cc474228d81df6daa8ec1a
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.8.0-RC2-revb10659f0fc18b58b90929cfdadde94544d202c4a/solr/maven/org/apache/solr/solr-jaegertracer-configurator/8.8.0/solr-jaegertracer-configurator-8.8.0-javadoc.jar
==============================================================================
Binary file - no diff available.

Propchange: dev/lucene/lucene-solr-8.8.0-RC2-revb10659f0fc18b58b90929cfdadde94544d202c4a/solr/maven/org/apache/solr/solr-jaegertracer-configurator/8.8.0/solr-jaegertracer-configurator-8.8.0-javadoc.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: dev/lucene/lucene-solr-8.8.0-RC2-revb10659f0fc18b58b90929cfdadde94544d202c4a/solr/maven/org/apache/solr/solr-jaegertracer-configurator/8.8.0/solr-jaegertracer-configurator-8.8.0-javadoc.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-8.8.0-RC2-revb10659f0fc18b58b90929cfdadde94544d202c4a/solr/maven/org/apache/solr/solr-jaegertracer-configurator/8.8.0/solr-jaegertracer-configurator-8.8.0-javadoc.jar.asc (added)
+++ dev/lucene/lucene-solr-8.8.0-RC2-revb10659f0fc18b58b90929cfdadde94544d202c4a/solr/maven/org/apache/solr/solr-jaegertracer-configurator/8.8.0/solr-jaegertracer-configurator-8.8.0-javadoc.jar.asc Mon Jan 25 10:18:46 2021
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEEz85fu5IMPHRc7uCEw4/17D/P2z4FAmAOfgwACgkQw4/17D/P
+2z7Wlg//fFLH0mNKtPHBcY6fVjU1ZxmVMLKFdLSmB+YXLlsIScTulX7+BJ9RVbff
+swpLFaA8bD9hyswYLDRlTdb2hEnQB8jP+QobaMjxy8swded32GVaf7+bRaQOANiM
+edqPI8m8LbCz5/+h9cLmgY7x5sdB82FK7xo0Ziw3Nj2bnIY+j8CJcTJZ2rHp3C/3
+RZEwCLUtjcZANRsJfCaA+/MkUlxeuFaXkHQsEcy/mEMN6BvH4YBvdTzyPIX51MEd
+cJstIVQVdi8Af5zNJI29Jzjx4er0Vswjv5l7LnAPW4ElDql+C7WgHgAHp/W4uW1o
+j10ZUksF6REL0PJDflyD6PxiJy1PXD5n3dMYz99uxBNE+izS7+PJWctLwfLZ30jo
+izamIA3/guL9iiWfRf2456aRr4BQtFw2EzFb+0Idk8S/KA5poly40aQ8M2LDMgV9
+kx3/IarWxH2KE8Shws7QwqTNN+SAMcfnHtLsGHXUwIz0fRbjiXEwnWfLVYQH0Vlf
+gW/pLpeFD69l2cAPUAVAAj1YhnkuTBH3C8toUD8sQKW2hXd047eKlW9kCUdymujv
+kOsJaE4pxnV9j7L6seKHmUayrgUcdU1ZxxIrtJSnKrUyGEq0K3BvkaP3TaF6mSno
+1nZ5F3p3IbeMvRReBDNWkLZddoJJ1qeyEmElU3BPnZ/6hDd9xXs=
+=7ir0
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-8.8.0-RC2-revb10659f0fc18b58b90929cfdadde94544d202c4a/solr/maven/org/apache/solr/solr-jaegertracer-configurator/8.8.0/solr-jaegertracer-configurator-8.8.0-javadoc.jar.md5
==============================================================================
--- dev/lucene/lucene-solr-8.8.0-RC2-revb10659f0fc18b58b90929cfdadde94544d202c4a/solr/maven/org/apache/solr/solr-jaegertracer-configurator/8.8.0/solr-jaegertracer-configurator-8.8.0-javadoc.jar.md5 (added)
+++ dev/lucene/lucene-solr-8.8.0-RC2-revb10659f0fc18b58b90929cfdadde94544d202c4a/solr/maven/org/apache/solr/solr-jaegertracer-configurator/8.8.0/solr-jaegertracer-configurator-8.8.0-javadoc.jar.md5 Mon Jan 25 10:18:46 2021
@@ -0,0 +1 @@
+f93882cb73150535a9dde2617b59adeb
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.8.0-RC2-revb10659f0fc18b58b90929cfdadde94544d202c4a/solr/maven/org/apache/solr/solr-jaegertracer-configurator/8.8.0/solr-jaegertracer-configurator-8.8.0-javadoc.jar.sha1
==============================================================================
--- dev/lucene/lucene-solr-8.8.0-RC2-revb10659f0fc18b58b90929cfdadde94544d202c4a/solr/maven/org/apache/solr/solr-jaegertracer-configurator/8.8.0/solr-jaegertracer-configurator-8.8.0-javadoc.jar.sha1 (added)
+++ dev/lucene/lucene-solr-8.8.0-RC2-revb10659f0fc18b58b90929cfdadde94544d202c4a/solr/maven/org/apache/solr/solr-jaegertracer-configurator/8.8.0/solr-jaegertracer-configurator-8.8.0-javadoc.jar.sha1 Mon Jan 25 10:18:46 2021
@@ -0,0 +1 @@
+65b0c05d6043af23aa752782fdf98db2555b72ff
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.8.0-RC2-revb10659f0fc18b58b90929cfdadde94544d202c4a/solr/maven/org/apache/solr/solr-jaegertracer-configurator/8.8.0/solr-jaegertracer-configurator-8.8.0-sources.jar
==============================================================================
Binary file - no diff available.

Propchange: dev/lucene/lucene-solr-8.8.0-RC2-revb10659f0fc18b58b90929cfdadde94544d202c4a/solr/maven/org/apache/solr/solr-jaegertracer-configurator/8.8.0/solr-jaegertracer-configurator-8.8.0-sources.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: dev/lucene/lucene-solr-8.8.0-RC2-revb10659f0fc18b58b90929cfdadde94544d202c4a/solr/maven/org/apache/solr/solr-jaegertracer-configurator/8.8.0/solr-jaegertracer-configurator-8.8.0-sources.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-8.8.0-RC2-revb10659f0fc18b58b90929cfdadde94544d202c4a/solr/maven/org/apache/solr/solr-jaegertracer-configurator/8.8.0/solr-jaegertracer-configurator-8.8.0-sources.jar.asc (added)
+++ dev/lucene/lucene-solr-8.8.0-RC2-revb10659f0fc18b58b90929cfdadde94544d202c4a/solr/maven/org/apache/solr/solr-jaegertracer-configurator/8.8.0/solr-jaegertracer-configurator-8.8.0-sources.jar.asc Mon Jan 25 10:18:46 2021
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEEz85fu5IMPHRc7uCEw4/17D/P2z4FAmAOfg0ACgkQw4/17D/P
+2z6svw/8CSFV6yd8xoRoTEupHYP9klO1kPiMsioGUdVGscGr5Vm1b5fc2mDYPiI4
+pqaI58qGoz0FjRccMLGgODjptfF1Y0vVxQp1tZ0Pc1iob5jocXYJ08jlozBtmPKz
+xXgzJSlpBMFbwMgcmLC6hIsWhLzQwsCoTJBkGj+eFffi4StvDxZulvMIc6GyWanC
+I20USuV/LTiYqwKZLxUj8uuoFJ097Jl1eGRRqhGBvr5f3SsRvJMy4mK3hSMJKv5m
+vctX62C0B64OqP4sFHnOp0OM40/yKJNmeghasv1pkyLB+pIPAhks0osu3pDdi3Ld
++8/EuPpJF2eD5o2JIwCagcCjfdoS6Upv3id24EMj+z5bsnVgH5JTVtWmXSP3gU0G
+GLBDt/gopdNg1BOxk6Yv0EFU9mYDbyx+mLIaYO808iO9F5jai96+4YHStju1GnLS
+84v3dIWeJoRS0fJDSo0fVp3Ljl7IGttQwyja14GtzTb4pXgQymb3NR5PB5FF6gXk
+dqLNCT6gdfPVb029XbQu3AbeZtvHoHIYWApUEau9FE7SF8sk1FXYWmWSh6Ha7GFw
+4MhHCmwgwqQZdi/OFb/3qAtqtmzIIiIZEpm7kE+KVd1JESi+czYHZSt6uHO/Ki0t
+T+aHRX5Pzc7lbKfz4JGfO7neED+1BUAvH+G0jED1tNoV1Ib0FRk=
+=6RgI
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-8.8.0-RC2-revb10659f0fc18b58b90929cfdadde94544d202c4a/solr/maven/org/apache/solr/solr-jaegertracer-configurator/8.8.0/solr-jaegertracer-configurator-8.8.0-sources.jar.md5
==============================================================================
--- dev/lucene/lucene-solr-8.8.0-RC2-revb10659f0fc18b58b90929cfdadde94544d202c4a/solr/maven/org/apache/solr/solr-jaegertracer-configurator/8.8.0/solr-jaegertracer-configurator-8.8.0-sources.jar.md5 (added)
+++ dev/lucene/lucene-solr-8.8.0-RC2-revb10659f0fc18b58b90929cfdadde94544d202c4a/solr/maven/org/apache/solr/solr-jaegertracer-configurator/8.8.0/solr-jaegertracer-configurator-8.8.0-sources.jar.md5 Mon Jan 25 10:18:46 2021
@@ -0,0 +1 @@
+a00a3f347dab357e1fb39794fa7a0e37
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.8.0-RC2-revb10659f0fc18b58b90929cfdadde94544d202c4a/solr/maven/org/apache/solr/solr-jaegertracer-configurator/8.8.0/solr-jaegertracer-configurator-8.8.0-sources.jar.sha1
==============================================================================
--- dev/lucene/lucene-solr-8.8.0-RC2-revb10659f0fc18b58b90929cfdadde94544d202c4a/solr/maven/org/apache/solr/solr-jaegertracer-configurator/8.8.0/solr-jaegertracer-configurator-8.8.0-sources.jar.sha1 (added)
+++ dev/lucene/lucene-solr-8.8.0-RC2-revb10659f0fc18b58b90929cfdadde94544d202c4a/solr/maven/org/apache/solr/solr-jaegertracer-configurator/8.8.0/solr-jaegertracer-configurator-8.8.0-sources.jar.sha1 Mon Jan 25 10:18:46 2021
@@ -0,0 +1 @@
+ea9011c79f556b303e399d67bad5c4485b5fc6fd
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.8.0-RC2-revb10659f0fc18b58b90929cfdadde94544d202c4a/solr/maven/org/apache/solr/solr-jaegertracer-configurator/8.8.0/solr-jaegertracer-configurator-8.8.0.jar
==============================================================================
Binary file - no diff available.

Propchange: dev/lucene/lucene-solr-8.8.0-RC2-revb10659f0fc18b58b90929cfdadde94544d202c4a/solr/maven/org/apache/solr/solr-jaegertracer-configurator/8.8.0/solr-jaegertracer-configurator-8.8.0.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: dev/lucene/lucene-solr-8.8.0-RC2-revb10659f0fc18b58b90929cfdadde94544d202c4a/solr/maven/org/apache/solr/solr-jaegertracer-configurator/8.8.0/solr-jaegertracer-configurator-8.8.0.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-8.8.0-RC2-revb10659f0fc18b58b90929cfdadde94544d202c4a/solr/maven/org/apache/solr/solr-jaegertracer-configurator/8.8.0/solr-jaegertracer-configurator-8.8.0.jar.asc (added)
+++ dev/lucene/lucene-solr-8.8.0-RC2-revb10659f0fc18b58b90929cfdadde94544d202c4a/solr/maven/org/apache/solr/solr-jaegertracer-configurator/8.8.0/solr-jaegertracer-configurator-8.8.0.jar.asc Mon Jan 25 10:18:46 2021
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEEz85fu5IMPHRc7uCEw4/17D/P2z4FAmAOfg4ACgkQw4/17D/P
+2z6Dqg/9Eda1xlHms3vTStzVYD8ZFtUPY8ie2kk6/95jOHFWr9EujWJI+z3LasPh
+Y8l37Jnyz8Bv3Z2ZqLsmPQt2lqRloevc4Qa/+eGES1TumLWIyEOb/FFZ3PNY/VxX
+PEi8sauo41uqhhD0+vQxBM4qjTAmIgfKuF0ULK8DaGQmPstcaHsZhvSVI6xaTo1j
+KAWOgoytkmPpqkTkqrYuzdhgHrrywkdbLoc9XhfVHX9NjZ+UEuGwlWp9I2tr64RT
+6Pnk6difG7uocESrsGMmhV7+aUAVhB8A+vEx05fXtjYrcWHjWSQg0cjoG7uvDPn3
+KsN7eak0Et/N9VLNeR3+vY71fdeGKCPiefGbmB1iTGY/jYwE57ITLEp8oWu3XPzm
+1po4fpQ2ElnG4R1s2zF550frVfjKKfsbNLetiLVqZCV2dP6Fm+qWa7z/U0qJNs1D
+UQs7scCxrKTrVjsxQSYcVqZ4RRhXSqBE9NsSqH87VKViPa25Agp3zKimace8SUmw
+8qBXPRUpDmjwR2y2D946A4+OUxEVByxzqPiRNHsmIYr3iHqU71Nqas4JOSmppCcR
+v9NFzPPIXW07v255fZAqkVNpxrOoWmKOjHO0ZLfQJeMmgEnFVoRwXtbI0cZO/vcC
+7DRpvCkYhlWHOaCsOaV2pYw3BgLqPRaD5vOHZju0AxKOMhFc59c=
+=IIEK
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-8.8.0-RC2-revb10659f0fc18b58b90929cfdadde94544d202c4a/solr/maven/org/apache/solr/solr-jaegertracer-configurator/8.8.0/solr-jaegertracer-configurator-8.8.0.jar.md5
==============================================================================
--- dev/lucene/lucene-solr-8.8.0-RC2-revb10659f0fc18b58b90929cfdadde94544d202c4a/solr/maven/org/apache/solr/solr-jaegertracer-configurator/8.8.0/solr-jaegertracer-configurator-8.8.0.jar.md5 (added)
+++ dev/lucene/lucene-solr-8.8.0-RC2-revb10659f0fc18b58b90929cfdadde94544d202c4a/solr/maven/org/apache/solr/solr-jaegertracer-configurator/8.8.0/solr-jaegertracer-configurator-8.8.0.jar.md5 Mon Jan 25 10:18:46 2021
@@ -0,0 +1 @@
+0246d11ef70025864baa41559aa4d69e
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.8.0-RC2-revb10659f0fc18b58b90929cfdadde94544d202c4a/solr/maven/org/apache/solr/solr-jaegertracer-configurator/8.8.0/solr-jaegertracer-configurator-8.8.0.jar.sha1
==============================================================================
--- dev/lucene/lucene-solr-8.8.0-RC2-revb10659f0fc18b58b90929cfdadde94544d202c4a/solr/maven/org/apache/solr/solr-jaegertracer-configurator/8.8.0/solr-jaegertracer-configurator-8.8.0.jar.sha1 (added)
+++ dev/lucene/lucene-solr-8.8.0-RC2-revb10659f0fc18b58b90929cfdadde94544d202c4a/solr/maven/org/apache/solr/solr-jaegertracer-configurator/8.8.0/solr-jaegertracer-configurator-8.8.0.jar.sha1 Mon Jan 25 10:18:46 2021
@@ -0,0 +1 @@
+9f7f30c9347ccd9f3f7cd8eee16e8621f3966c8f
\ No newline at end of file