You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by th...@apache.org on 2021/02/13 19:02:29 UTC

svn commit: r46077 [15/19] - in /dev/lucene/lucene-solr-8.8.1-RC1-rev2c54fd212c8b3ced73d75717a6053b18d5d413fc: ./ 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.1-RC1-rev2c54fd212c8b3ced73d75717a6053b18d5d413fc/solr/maven/org/apache/solr/solr-dataimporthandler-extras/8.8.1/solr-dataimporthandler-extras-8.8.1.pom
==============================================================================
--- dev/lucene/lucene-solr-8.8.1-RC1-rev2c54fd212c8b3ced73d75717a6053b18d5d413fc/solr/maven/org/apache/solr/solr-dataimporthandler-extras/8.8.1/solr-dataimporthandler-extras-8.8.1.pom (added)
+++ dev/lucene/lucene-solr-8.8.1-RC1-rev2c54fd212c8b3ced73d75717a6053b18d5d413fc/solr/maven/org/apache/solr/solr-dataimporthandler-extras/8.8.1/solr-dataimporthandler-extras-8.8.1.pom Sat Feb 13 19:02:24 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.1</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.1-RC1-rev2c54fd212c8b3ced73d75717a6053b18d5d413fc/solr/maven/org/apache/solr/solr-dataimporthandler-extras/8.8.1/solr-dataimporthandler-extras-8.8.1.pom.asc
==============================================================================
--- dev/lucene/lucene-solr-8.8.1-RC1-rev2c54fd212c8b3ced73d75717a6053b18d5d413fc/solr/maven/org/apache/solr/solr-dataimporthandler-extras/8.8.1/solr-dataimporthandler-extras-8.8.1.pom.asc (added)
+++ dev/lucene/lucene-solr-8.8.1-RC1-rev2c54fd212c8b3ced73d75717a6053b18d5d413fc/solr/maven/org/apache/solr/solr-dataimporthandler-extras/8.8.1/solr-dataimporthandler-extras-8.8.1.pom.asc Sat Feb 13 19:02:24 2021
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCAAdFiEE+8JdfhcSAlKU/mZZCmqhebm79F4FAmAoC7MACgkQCmqhebm7
+9F5eWxAAsZEl317PEqxG0muEF/DSakJ3PegztZR2vLbsx2BmkJWMqddR6gzJ9v9y
+7vkzI+ZEabUfRbkf/EgVST7o4lHhJLtioJHVIw/qik6ufJgEIMmft2Jd2exH167j
+Mr10nLj48iIgC2ugg2w9rZyk0BvdBkhtUT2IQcuYg5z7LpzYgnWCWvAXStRFF3r9
+FXKX546gsaaik/lF1T/4aZozTWU66egC5OlRSLPFRhP7DibwriWXrqfrg4g9VnNm
+CHI8UfJVQcDJZEYDWM/n+nW6ojs+NAocipYGAY+TDgzBr0U+mxAg+DZlzlssMmfj
+57bKQsvsP49vSjdjsEYtfhO/Exn7Y/vPusa3gd81fNj2qDhXsXjO3s37XLEapteB
+hLKFIlAzwyaQWfBd3olx245tQMEvhr1hio6CpMRh0lfhvUIDejqA9QhIO8W5Feev
+2bM3whhpG3ab0gz2sF4ndCW23P43sc3LEV0dd97kCKAXuStRG4I44P8UgsWBG49N
+WPDrAZQAF/zaqMUCXtayNid7N7Y6u4OiX5njfhEb/XNmufD5PvXZOD34oiQP0dbR
+T6wHfjEd8Dny72LwDj+nNnnOXS7zYta/KHMWzVb+0iFY96slskOLf3RIcAJd0Bo5
+kndVtxg+m3l2bnY4m34MTLrKfQNkSVIiFPuoSC5zNqpbKWTnmpE=
+=gBC/
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-8.8.1-RC1-rev2c54fd212c8b3ced73d75717a6053b18d5d413fc/solr/maven/org/apache/solr/solr-dataimporthandler-extras/8.8.1/solr-dataimporthandler-extras-8.8.1.pom.md5
==============================================================================
--- dev/lucene/lucene-solr-8.8.1-RC1-rev2c54fd212c8b3ced73d75717a6053b18d5d413fc/solr/maven/org/apache/solr/solr-dataimporthandler-extras/8.8.1/solr-dataimporthandler-extras-8.8.1.pom.md5 (added)
+++ dev/lucene/lucene-solr-8.8.1-RC1-rev2c54fd212c8b3ced73d75717a6053b18d5d413fc/solr/maven/org/apache/solr/solr-dataimporthandler-extras/8.8.1/solr-dataimporthandler-extras-8.8.1.pom.md5 Sat Feb 13 19:02:24 2021
@@ -0,0 +1 @@
+f30cbe879cf746de39ee8f8229327844
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.8.1-RC1-rev2c54fd212c8b3ced73d75717a6053b18d5d413fc/solr/maven/org/apache/solr/solr-dataimporthandler-extras/8.8.1/solr-dataimporthandler-extras-8.8.1.pom.sha1
==============================================================================
--- dev/lucene/lucene-solr-8.8.1-RC1-rev2c54fd212c8b3ced73d75717a6053b18d5d413fc/solr/maven/org/apache/solr/solr-dataimporthandler-extras/8.8.1/solr-dataimporthandler-extras-8.8.1.pom.sha1 (added)
+++ dev/lucene/lucene-solr-8.8.1-RC1-rev2c54fd212c8b3ced73d75717a6053b18d5d413fc/solr/maven/org/apache/solr/solr-dataimporthandler-extras/8.8.1/solr-dataimporthandler-extras-8.8.1.pom.sha1 Sat Feb 13 19:02:24 2021
@@ -0,0 +1 @@
+66dff0231cf29e18c27519c2ec32a11eb776372a
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.8.1-RC1-rev2c54fd212c8b3ced73d75717a6053b18d5d413fc/solr/maven/org/apache/solr/solr-dataimporthandler-extras/maven-metadata.xml
==============================================================================
--- dev/lucene/lucene-solr-8.8.1-RC1-rev2c54fd212c8b3ced73d75717a6053b18d5d413fc/solr/maven/org/apache/solr/solr-dataimporthandler-extras/maven-metadata.xml (added)
+++ dev/lucene/lucene-solr-8.8.1-RC1-rev2c54fd212c8b3ced73d75717a6053b18d5d413fc/solr/maven/org/apache/solr/solr-dataimporthandler-extras/maven-metadata.xml Sat Feb 13 19:02:24 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.1</version>
+  <versioning>
+    <versions>
+      <version>8.8.1</version>
+    </versions>
+    <lastUpdated>20210213172549</lastUpdated>
+  </versioning>
+</metadata>

Added: dev/lucene/lucene-solr-8.8.1-RC1-rev2c54fd212c8b3ced73d75717a6053b18d5d413fc/solr/maven/org/apache/solr/solr-dataimporthandler-extras/maven-metadata.xml.md5
==============================================================================
--- dev/lucene/lucene-solr-8.8.1-RC1-rev2c54fd212c8b3ced73d75717a6053b18d5d413fc/solr/maven/org/apache/solr/solr-dataimporthandler-extras/maven-metadata.xml.md5 (added)
+++ dev/lucene/lucene-solr-8.8.1-RC1-rev2c54fd212c8b3ced73d75717a6053b18d5d413fc/solr/maven/org/apache/solr/solr-dataimporthandler-extras/maven-metadata.xml.md5 Sat Feb 13 19:02:24 2021
@@ -0,0 +1 @@
+911de7606a8dec8e7b0bc71ebafb1571
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.8.1-RC1-rev2c54fd212c8b3ced73d75717a6053b18d5d413fc/solr/maven/org/apache/solr/solr-dataimporthandler-extras/maven-metadata.xml.sha1
==============================================================================
--- dev/lucene/lucene-solr-8.8.1-RC1-rev2c54fd212c8b3ced73d75717a6053b18d5d413fc/solr/maven/org/apache/solr/solr-dataimporthandler-extras/maven-metadata.xml.sha1 (added)
+++ dev/lucene/lucene-solr-8.8.1-RC1-rev2c54fd212c8b3ced73d75717a6053b18d5d413fc/solr/maven/org/apache/solr/solr-dataimporthandler-extras/maven-metadata.xml.sha1 Sat Feb 13 19:02:24 2021
@@ -0,0 +1 @@
+44a888e287fb9b35f788ec3d7244f8cded58051f
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.8.1-RC1-rev2c54fd212c8b3ced73d75717a6053b18d5d413fc/solr/maven/org/apache/solr/solr-dataimporthandler/8.8.1/solr-dataimporthandler-8.8.1-javadoc.jar
==============================================================================
Binary file - no diff available.

Propchange: dev/lucene/lucene-solr-8.8.1-RC1-rev2c54fd212c8b3ced73d75717a6053b18d5d413fc/solr/maven/org/apache/solr/solr-dataimporthandler/8.8.1/solr-dataimporthandler-8.8.1-javadoc.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: dev/lucene/lucene-solr-8.8.1-RC1-rev2c54fd212c8b3ced73d75717a6053b18d5d413fc/solr/maven/org/apache/solr/solr-dataimporthandler/8.8.1/solr-dataimporthandler-8.8.1-javadoc.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-8.8.1-RC1-rev2c54fd212c8b3ced73d75717a6053b18d5d413fc/solr/maven/org/apache/solr/solr-dataimporthandler/8.8.1/solr-dataimporthandler-8.8.1-javadoc.jar.asc (added)
+++ dev/lucene/lucene-solr-8.8.1-RC1-rev2c54fd212c8b3ced73d75717a6053b18d5d413fc/solr/maven/org/apache/solr/solr-dataimporthandler/8.8.1/solr-dataimporthandler-8.8.1-javadoc.jar.asc Sat Feb 13 19:02:24 2021
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCAAdFiEE+8JdfhcSAlKU/mZZCmqhebm79F4FAmAoC7QACgkQCmqhebm7
+9F4kZxAAsg6JeepWBSsSAsrQxm23rfkFUwY2cE7mJK+p59WuOTOWtx8juC6QofW1
+nFDtojHEAZot5HjM2Tqi/YGKnd0q+sBxgqsgaD6G3KZ0AMg3uP8zWBLU0uMVYywR
+5JhoXALaSkU0sDyL9aTgnqWMhjbwwKdtFQbRdieyIR8owNwKE3pSHaMP6Ml4nuNw
+FQbyOEPs2TavCMJu18jCwgqXnGU3WTw//xyCIlcSrDcH+MGGqikq9ByJaA6fUONE
+eMGVsIrt/DknOIHDVKzWa8qMkeRzAdSVIEaf0EyiDYVKi28PJBr4oki9lfMqPwVL
+IDjvdLB1JQcKkChihn2HdUFgZ1267hWfSVswm5dZD5mlBQwU83WUwMU/TpQ/8jqV
+AtnC/uRvptWXVJoIrUOB9it1DZGC9g2NLBnDVflmHJO1UMmxf13wycr1mjk8+tw7
+ygs3Szsk+i9DPRU4UtKZf/gZwJpEnyXInr8aDRw8gFkL1z1Mh4hKQ0cVNzWcGMgI
+vHvMsWuXyuA5rxz2zMHqcMl8MxuVV7hc9wKzlbFtj1IU29QgT4mw3vy/oyj3g1Xa
+wgnXzK/bcii25zUMUH4JcXO1MWNcOKGk73WnAsGV7MlwlRdtFFNeuw9ibqZBobDY
+qzvc+bxZmu1MMXqtEOP3mLYMxYQXSnp0HIP7yp7SjF/4zwg3uc8=
+=rCfi
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-8.8.1-RC1-rev2c54fd212c8b3ced73d75717a6053b18d5d413fc/solr/maven/org/apache/solr/solr-dataimporthandler/8.8.1/solr-dataimporthandler-8.8.1-javadoc.jar.md5
==============================================================================
--- dev/lucene/lucene-solr-8.8.1-RC1-rev2c54fd212c8b3ced73d75717a6053b18d5d413fc/solr/maven/org/apache/solr/solr-dataimporthandler/8.8.1/solr-dataimporthandler-8.8.1-javadoc.jar.md5 (added)
+++ dev/lucene/lucene-solr-8.8.1-RC1-rev2c54fd212c8b3ced73d75717a6053b18d5d413fc/solr/maven/org/apache/solr/solr-dataimporthandler/8.8.1/solr-dataimporthandler-8.8.1-javadoc.jar.md5 Sat Feb 13 19:02:24 2021
@@ -0,0 +1 @@
+0f9ee81f0e9d86a061ebab08aa53aae9
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.8.1-RC1-rev2c54fd212c8b3ced73d75717a6053b18d5d413fc/solr/maven/org/apache/solr/solr-dataimporthandler/8.8.1/solr-dataimporthandler-8.8.1-javadoc.jar.sha1
==============================================================================
--- dev/lucene/lucene-solr-8.8.1-RC1-rev2c54fd212c8b3ced73d75717a6053b18d5d413fc/solr/maven/org/apache/solr/solr-dataimporthandler/8.8.1/solr-dataimporthandler-8.8.1-javadoc.jar.sha1 (added)
+++ dev/lucene/lucene-solr-8.8.1-RC1-rev2c54fd212c8b3ced73d75717a6053b18d5d413fc/solr/maven/org/apache/solr/solr-dataimporthandler/8.8.1/solr-dataimporthandler-8.8.1-javadoc.jar.sha1 Sat Feb 13 19:02:24 2021
@@ -0,0 +1 @@
+6419b18a00fd9487bc8dcf5b87ab53024c71720b
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.8.1-RC1-rev2c54fd212c8b3ced73d75717a6053b18d5d413fc/solr/maven/org/apache/solr/solr-dataimporthandler/8.8.1/solr-dataimporthandler-8.8.1-sources.jar
==============================================================================
Binary file - no diff available.

Propchange: dev/lucene/lucene-solr-8.8.1-RC1-rev2c54fd212c8b3ced73d75717a6053b18d5d413fc/solr/maven/org/apache/solr/solr-dataimporthandler/8.8.1/solr-dataimporthandler-8.8.1-sources.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: dev/lucene/lucene-solr-8.8.1-RC1-rev2c54fd212c8b3ced73d75717a6053b18d5d413fc/solr/maven/org/apache/solr/solr-dataimporthandler/8.8.1/solr-dataimporthandler-8.8.1-sources.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-8.8.1-RC1-rev2c54fd212c8b3ced73d75717a6053b18d5d413fc/solr/maven/org/apache/solr/solr-dataimporthandler/8.8.1/solr-dataimporthandler-8.8.1-sources.jar.asc (added)
+++ dev/lucene/lucene-solr-8.8.1-RC1-rev2c54fd212c8b3ced73d75717a6053b18d5d413fc/solr/maven/org/apache/solr/solr-dataimporthandler/8.8.1/solr-dataimporthandler-8.8.1-sources.jar.asc Sat Feb 13 19:02:24 2021
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCAAdFiEE+8JdfhcSAlKU/mZZCmqhebm79F4FAmAoC7QACgkQCmqhebm7
+9F5urA/9Hva/HR3IOJUVdlW+iDGce5LyT1Ux0mvUPllITba4EZnbEaE13fXpZgoH
+/IJ1FrJ9EPvZzLuhIRj6gRwqb36oxIoNyoSAtQZzZ+nvhS1JZaWvur7RBkJqxIdG
+q4sWFwvqe3qsXJx+3s976Sr/78Rv3IIIcLe3YZEKtmVedUYNGix9q+umF6kmuili
+9KgsnzDcioBHpIE/pDwaZXiYwbT2C0Khs9/rUBWtc7rH/3wpQJB7MOk7KGeS1fGo
+b5F6CS+7ofRdqu8jYFEBuGfgNv/XBhaNsF/S6yR3w8PTE+DJNEIOC0LuIz6OjD8U
+kvCriOSWLVbIvfGOIlCD4NojjahjZ0Kn5rPkQ3R3KzfDOGmIaE7T2P1dh33iNKKc
+k41sJlXG3edn6dCjhVq7w0OXCKvnNCjcF3n+kMqrQLjd2/yr7j5yDD2zlYuF7tyI
+QXqyogpuOhfqUsWhrbfyx5EfTD8NzP0EqaCJNcvPybsbQ6ZVPXJ69MthSKm4FvwA
+N+U6+kzPKU4DxSHE6jhPtUlkkzaCDqpRgYvv7agKjRq8PaxUoIROL9CF04ww2m6W
+zDDLiWX3U3FfoMCLklW4kMFxRZctWzM0Iuog0FdlhFC/zwwj+fTUDb3FkwKTBxxG
+i2dvBvXPeGOU8KbXjuDH8embWe9HOKU1dq1gsneAn4Cq8HoNwIM=
+=ufVv
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-8.8.1-RC1-rev2c54fd212c8b3ced73d75717a6053b18d5d413fc/solr/maven/org/apache/solr/solr-dataimporthandler/8.8.1/solr-dataimporthandler-8.8.1-sources.jar.md5
==============================================================================
--- dev/lucene/lucene-solr-8.8.1-RC1-rev2c54fd212c8b3ced73d75717a6053b18d5d413fc/solr/maven/org/apache/solr/solr-dataimporthandler/8.8.1/solr-dataimporthandler-8.8.1-sources.jar.md5 (added)
+++ dev/lucene/lucene-solr-8.8.1-RC1-rev2c54fd212c8b3ced73d75717a6053b18d5d413fc/solr/maven/org/apache/solr/solr-dataimporthandler/8.8.1/solr-dataimporthandler-8.8.1-sources.jar.md5 Sat Feb 13 19:02:24 2021
@@ -0,0 +1 @@
+d0290b154cfa07b663c6ca02e549c23f
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.8.1-RC1-rev2c54fd212c8b3ced73d75717a6053b18d5d413fc/solr/maven/org/apache/solr/solr-dataimporthandler/8.8.1/solr-dataimporthandler-8.8.1-sources.jar.sha1
==============================================================================
--- dev/lucene/lucene-solr-8.8.1-RC1-rev2c54fd212c8b3ced73d75717a6053b18d5d413fc/solr/maven/org/apache/solr/solr-dataimporthandler/8.8.1/solr-dataimporthandler-8.8.1-sources.jar.sha1 (added)
+++ dev/lucene/lucene-solr-8.8.1-RC1-rev2c54fd212c8b3ced73d75717a6053b18d5d413fc/solr/maven/org/apache/solr/solr-dataimporthandler/8.8.1/solr-dataimporthandler-8.8.1-sources.jar.sha1 Sat Feb 13 19:02:24 2021
@@ -0,0 +1 @@
+93047d5901ec56b5548b3773f1f072ee7bd1b4cf
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.8.1-RC1-rev2c54fd212c8b3ced73d75717a6053b18d5d413fc/solr/maven/org/apache/solr/solr-dataimporthandler/8.8.1/solr-dataimporthandler-8.8.1.jar
==============================================================================
Binary file - no diff available.

Propchange: dev/lucene/lucene-solr-8.8.1-RC1-rev2c54fd212c8b3ced73d75717a6053b18d5d413fc/solr/maven/org/apache/solr/solr-dataimporthandler/8.8.1/solr-dataimporthandler-8.8.1.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: dev/lucene/lucene-solr-8.8.1-RC1-rev2c54fd212c8b3ced73d75717a6053b18d5d413fc/solr/maven/org/apache/solr/solr-dataimporthandler/8.8.1/solr-dataimporthandler-8.8.1.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-8.8.1-RC1-rev2c54fd212c8b3ced73d75717a6053b18d5d413fc/solr/maven/org/apache/solr/solr-dataimporthandler/8.8.1/solr-dataimporthandler-8.8.1.jar.asc (added)
+++ dev/lucene/lucene-solr-8.8.1-RC1-rev2c54fd212c8b3ced73d75717a6053b18d5d413fc/solr/maven/org/apache/solr/solr-dataimporthandler/8.8.1/solr-dataimporthandler-8.8.1.jar.asc Sat Feb 13 19:02:24 2021
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCAAdFiEE+8JdfhcSAlKU/mZZCmqhebm79F4FAmAoC7QACgkQCmqhebm7
+9F7dXw//ctCzyzI/GUCWAEae8EvzILgOMMwLhRb1C5MFdkUbtnScOKb6rtErrGBx
+wVNVeWIWhpe0q+6fv7OCX0TSTH1tRprwy+ZXxMpmDGe2Es0xS6+AGJ5+6ZdNfD3C
+JXZX31mTbVKY+btFgv1A/fuXUZvK0cQVx/JZPBxBwtA/G8HZZsQ2NSm5kpqUmHqh
+Lji2N3Znknm7hNBCNyxPdvhgX8xLjYQIK/SOYpGN3Karv2BNrNP8DzDP3AqKwzdU
+bxMyx/AHJ/8jrV1+0AnNxDMKWL5mXzlLS5Ro650g2qA0hIXGnEPCtpsrZXym2Vy7
+rmNH9bEODptv9SFKDqd8pebEobjb3h5lPbf2zb7/M79y34uxXZ3hZBqYsPsCMgr+
+UIhtmpyY8glj1xV81XqCvQyjhvV/lh9I9P+dsf6tySUz5XIpVv+Riy43oyyLhrHS
+ui95nsxkezzf5NHFrdp5Kgphw5lfrdElLSKflrlzCW4Gsjjj53+9/1XjnxP2bJdu
+9QaW+MJ2lMwz29Lg/0NlTuJ58gZdCQnHpOTjL/S/ztmv3XWSvi1k1bNek042GRpP
+RsObR+D4OIREPrX5R+rQdV+N/pX8/FgjcJVCBumQaIOKwesrZaj8ARKFAw43Ibtt
+qL0SqNiqIizIpInPRk0cc4HMc89THaH+ch4kd/TljgPZT0Qi6jc=
+=Huyw
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-8.8.1-RC1-rev2c54fd212c8b3ced73d75717a6053b18d5d413fc/solr/maven/org/apache/solr/solr-dataimporthandler/8.8.1/solr-dataimporthandler-8.8.1.jar.md5
==============================================================================
--- dev/lucene/lucene-solr-8.8.1-RC1-rev2c54fd212c8b3ced73d75717a6053b18d5d413fc/solr/maven/org/apache/solr/solr-dataimporthandler/8.8.1/solr-dataimporthandler-8.8.1.jar.md5 (added)
+++ dev/lucene/lucene-solr-8.8.1-RC1-rev2c54fd212c8b3ced73d75717a6053b18d5d413fc/solr/maven/org/apache/solr/solr-dataimporthandler/8.8.1/solr-dataimporthandler-8.8.1.jar.md5 Sat Feb 13 19:02:24 2021
@@ -0,0 +1 @@
+1f4066437ee8d2c8713c91ea9b634b40
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.8.1-RC1-rev2c54fd212c8b3ced73d75717a6053b18d5d413fc/solr/maven/org/apache/solr/solr-dataimporthandler/8.8.1/solr-dataimporthandler-8.8.1.jar.sha1
==============================================================================
--- dev/lucene/lucene-solr-8.8.1-RC1-rev2c54fd212c8b3ced73d75717a6053b18d5d413fc/solr/maven/org/apache/solr/solr-dataimporthandler/8.8.1/solr-dataimporthandler-8.8.1.jar.sha1 (added)
+++ dev/lucene/lucene-solr-8.8.1-RC1-rev2c54fd212c8b3ced73d75717a6053b18d5d413fc/solr/maven/org/apache/solr/solr-dataimporthandler/8.8.1/solr-dataimporthandler-8.8.1.jar.sha1 Sat Feb 13 19:02:24 2021
@@ -0,0 +1 @@
+f15d2802e5857c34bdae63e6d1ff836c118e583e
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.8.1-RC1-rev2c54fd212c8b3ced73d75717a6053b18d5d413fc/solr/maven/org/apache/solr/solr-dataimporthandler/8.8.1/solr-dataimporthandler-8.8.1.pom
==============================================================================
--- dev/lucene/lucene-solr-8.8.1-RC1-rev2c54fd212c8b3ced73d75717a6053b18d5d413fc/solr/maven/org/apache/solr/solr-dataimporthandler/8.8.1/solr-dataimporthandler-8.8.1.pom (added)
+++ dev/lucene/lucene-solr-8.8.1-RC1-rev2c54fd212c8b3ced73d75717a6053b18d5d413fc/solr/maven/org/apache/solr/solr-dataimporthandler/8.8.1/solr-dataimporthandler-8.8.1.pom Sat Feb 13 19:02:24 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.1</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.1-RC1-rev2c54fd212c8b3ced73d75717a6053b18d5d413fc/solr/maven/org/apache/solr/solr-dataimporthandler/8.8.1/solr-dataimporthandler-8.8.1.pom.asc
==============================================================================
--- dev/lucene/lucene-solr-8.8.1-RC1-rev2c54fd212c8b3ced73d75717a6053b18d5d413fc/solr/maven/org/apache/solr/solr-dataimporthandler/8.8.1/solr-dataimporthandler-8.8.1.pom.asc (added)
+++ dev/lucene/lucene-solr-8.8.1-RC1-rev2c54fd212c8b3ced73d75717a6053b18d5d413fc/solr/maven/org/apache/solr/solr-dataimporthandler/8.8.1/solr-dataimporthandler-8.8.1.pom.asc Sat Feb 13 19:02:24 2021
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCAAdFiEE+8JdfhcSAlKU/mZZCmqhebm79F4FAmAoC7QACgkQCmqhebm7
+9F6btBAApM+czV8i6oxK9pbx2HD659Giuk/pZGFwc1v6ZVouTl1I2Jma/9GUP0T6
+kE9UYANnVZ9DU5YxVUhAjDg0fiwDwczsTgKyVEsnaqwh9PpXLdU1o4+1Pw0tI67Z
+jVZ8AoxnPkaJA+DO+7Z9GKzP8qBOE82Qg3cmpA81dapoDiJKWmjReqeBe8Nb3vJx
+5NZNuZPRy+QSPWEuhBVtqiHWFN/xMteKuV/0W8tENTyoSll28FQDdajKlfhkWBtA
+AgEogE53LRPwKVi1vQenZhM0N6YzRCG/bs/40s+O4WBVZLvbbNGnC9tMq3KCE3xU
+UAF5QjToKGWtAwSOKuSRBf4QBkdCnP+gRQVjJ9Ff8tS/itU/fn2LT6xZGT32lPU+
+afeeJS5RuAWSm+sEC3fhQHgySJXGrShofukm8HR62hdxmRcmeSXmtnk0x2OaYN1z
+gOw8krK22Ik+Cmlzfh8BiJzwfuUtvGd1Lf80UvrLUWRgKMz2MvbqGMOIOTRPvX2n
+Yqm5MUo2bMltO5kt13Lb2dcXyoCGfGQRNUxUQbqMpHn3WIpQh++n4Gh7xI++8c9R
+emBgIimVBZIhzlXgklg7XK6kTGKyfOFoCnqr5YXkTV+m+5Ted8H0IX4xIfDZTogw
+m0gseZXHkhSJCrxh/vs/B65pTPPTRMBr2GxWgbmZaL3NBFDMWS4=
+=kcPA
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-8.8.1-RC1-rev2c54fd212c8b3ced73d75717a6053b18d5d413fc/solr/maven/org/apache/solr/solr-dataimporthandler/8.8.1/solr-dataimporthandler-8.8.1.pom.md5
==============================================================================
--- dev/lucene/lucene-solr-8.8.1-RC1-rev2c54fd212c8b3ced73d75717a6053b18d5d413fc/solr/maven/org/apache/solr/solr-dataimporthandler/8.8.1/solr-dataimporthandler-8.8.1.pom.md5 (added)
+++ dev/lucene/lucene-solr-8.8.1-RC1-rev2c54fd212c8b3ced73d75717a6053b18d5d413fc/solr/maven/org/apache/solr/solr-dataimporthandler/8.8.1/solr-dataimporthandler-8.8.1.pom.md5 Sat Feb 13 19:02:24 2021
@@ -0,0 +1 @@
+f7eb2a6e675c42c604c7fcf2c9d78112
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.8.1-RC1-rev2c54fd212c8b3ced73d75717a6053b18d5d413fc/solr/maven/org/apache/solr/solr-dataimporthandler/8.8.1/solr-dataimporthandler-8.8.1.pom.sha1
==============================================================================
--- dev/lucene/lucene-solr-8.8.1-RC1-rev2c54fd212c8b3ced73d75717a6053b18d5d413fc/solr/maven/org/apache/solr/solr-dataimporthandler/8.8.1/solr-dataimporthandler-8.8.1.pom.sha1 (added)
+++ dev/lucene/lucene-solr-8.8.1-RC1-rev2c54fd212c8b3ced73d75717a6053b18d5d413fc/solr/maven/org/apache/solr/solr-dataimporthandler/8.8.1/solr-dataimporthandler-8.8.1.pom.sha1 Sat Feb 13 19:02:24 2021
@@ -0,0 +1 @@
+2ba33c9bf3019335ba16f0cb46e832598fefa670
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.8.1-RC1-rev2c54fd212c8b3ced73d75717a6053b18d5d413fc/solr/maven/org/apache/solr/solr-dataimporthandler/maven-metadata.xml
==============================================================================
--- dev/lucene/lucene-solr-8.8.1-RC1-rev2c54fd212c8b3ced73d75717a6053b18d5d413fc/solr/maven/org/apache/solr/solr-dataimporthandler/maven-metadata.xml (added)
+++ dev/lucene/lucene-solr-8.8.1-RC1-rev2c54fd212c8b3ced73d75717a6053b18d5d413fc/solr/maven/org/apache/solr/solr-dataimporthandler/maven-metadata.xml Sat Feb 13 19:02:24 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.1</version>
+  <versioning>
+    <versions>
+      <version>8.8.1</version>
+    </versions>
+    <lastUpdated>20210213172551</lastUpdated>
+  </versioning>
+</metadata>

Added: dev/lucene/lucene-solr-8.8.1-RC1-rev2c54fd212c8b3ced73d75717a6053b18d5d413fc/solr/maven/org/apache/solr/solr-dataimporthandler/maven-metadata.xml.md5
==============================================================================
--- dev/lucene/lucene-solr-8.8.1-RC1-rev2c54fd212c8b3ced73d75717a6053b18d5d413fc/solr/maven/org/apache/solr/solr-dataimporthandler/maven-metadata.xml.md5 (added)
+++ dev/lucene/lucene-solr-8.8.1-RC1-rev2c54fd212c8b3ced73d75717a6053b18d5d413fc/solr/maven/org/apache/solr/solr-dataimporthandler/maven-metadata.xml.md5 Sat Feb 13 19:02:24 2021
@@ -0,0 +1 @@
+b835cfe7af10cda6c8436c23fde9af50
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.8.1-RC1-rev2c54fd212c8b3ced73d75717a6053b18d5d413fc/solr/maven/org/apache/solr/solr-dataimporthandler/maven-metadata.xml.sha1
==============================================================================
--- dev/lucene/lucene-solr-8.8.1-RC1-rev2c54fd212c8b3ced73d75717a6053b18d5d413fc/solr/maven/org/apache/solr/solr-dataimporthandler/maven-metadata.xml.sha1 (added)
+++ dev/lucene/lucene-solr-8.8.1-RC1-rev2c54fd212c8b3ced73d75717a6053b18d5d413fc/solr/maven/org/apache/solr/solr-dataimporthandler/maven-metadata.xml.sha1 Sat Feb 13 19:02:24 2021
@@ -0,0 +1 @@
+8d89ff59c3bca7dcd3925c97cbb3a6049d8c736c
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.8.1-RC1-rev2c54fd212c8b3ced73d75717a6053b18d5d413fc/solr/maven/org/apache/solr/solr-jaegertracer-configurator/8.8.1/solr-jaegertracer-configurator-8.8.1-javadoc.jar
==============================================================================
Binary file - no diff available.

Propchange: dev/lucene/lucene-solr-8.8.1-RC1-rev2c54fd212c8b3ced73d75717a6053b18d5d413fc/solr/maven/org/apache/solr/solr-jaegertracer-configurator/8.8.1/solr-jaegertracer-configurator-8.8.1-javadoc.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: dev/lucene/lucene-solr-8.8.1-RC1-rev2c54fd212c8b3ced73d75717a6053b18d5d413fc/solr/maven/org/apache/solr/solr-jaegertracer-configurator/8.8.1/solr-jaegertracer-configurator-8.8.1-javadoc.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-8.8.1-RC1-rev2c54fd212c8b3ced73d75717a6053b18d5d413fc/solr/maven/org/apache/solr/solr-jaegertracer-configurator/8.8.1/solr-jaegertracer-configurator-8.8.1-javadoc.jar.asc (added)
+++ dev/lucene/lucene-solr-8.8.1-RC1-rev2c54fd212c8b3ced73d75717a6053b18d5d413fc/solr/maven/org/apache/solr/solr-jaegertracer-configurator/8.8.1/solr-jaegertracer-configurator-8.8.1-javadoc.jar.asc Sat Feb 13 19:02:24 2021
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCAAdFiEE+8JdfhcSAlKU/mZZCmqhebm79F4FAmAoC7QACgkQCmqhebm7
+9F717RAAoJaQdU993wbnzgTbpBwf/3lDwE9QMFCcGLnp7RhY3dADjs/OVb07PE4m
+Krm3yrsDPJPj1qPgWJMVFBvY9y19TvK6bYOFE8mPXvxobXLszJecToUjmuvIcRow
+Ad509OKopndXKyYm3WWl9OXzX7GoqtmKhFY+CpYBeM62ytniwSAri8DwEU1sSd2y
+f43RQQT2I1pBtr+L9pfqIuXULvzWVo9rJ+X012LSuKN1GdEuCFVkpXr9POtw5EOZ
+vs1vckOlb1EfynnE/5B/KDe63M0WGd0+L1JplAipx434zlblTgn9SaBKpfBWK7qV
+/tu17sawtgOlIEvFc9iITd5aJkHl9WCQxAVkkxMFqkQ1eWO7Hm+b0VI5UkxBKrl1
+/UlrY/2gvTcTCtsCzgIk3AUYwXQEFXWD13huMzKRA0V0yjg1T4dTkAY9XWWdkhTw
+enRUL4AagHhjF7ohBQEAuXtf8nj4ay1f2iW1qHDBXcVtQ1o29XjsJAiu4D2XN7RD
+DiKZtt1MFd0JsFByIO8VmaYAMjwQr2t29odJ0X+L6wARTS57DsvS9iqwL2N5Rw4n
+ccY0RjPieW4swilBbkMEkUAt6UJigTn72kbfgqQXjOEkRFOJMzw2uR+hFCi9PXQP
+ERjvtCfRvZB9gJ51d+denroYMeHkM7e6U+WgZr7b/u4QPj2IPWw=
+=5+qg
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-8.8.1-RC1-rev2c54fd212c8b3ced73d75717a6053b18d5d413fc/solr/maven/org/apache/solr/solr-jaegertracer-configurator/8.8.1/solr-jaegertracer-configurator-8.8.1-javadoc.jar.md5
==============================================================================
--- dev/lucene/lucene-solr-8.8.1-RC1-rev2c54fd212c8b3ced73d75717a6053b18d5d413fc/solr/maven/org/apache/solr/solr-jaegertracer-configurator/8.8.1/solr-jaegertracer-configurator-8.8.1-javadoc.jar.md5 (added)
+++ dev/lucene/lucene-solr-8.8.1-RC1-rev2c54fd212c8b3ced73d75717a6053b18d5d413fc/solr/maven/org/apache/solr/solr-jaegertracer-configurator/8.8.1/solr-jaegertracer-configurator-8.8.1-javadoc.jar.md5 Sat Feb 13 19:02:24 2021
@@ -0,0 +1 @@
+fa244210125244f91d3c65127ac86aaa
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.8.1-RC1-rev2c54fd212c8b3ced73d75717a6053b18d5d413fc/solr/maven/org/apache/solr/solr-jaegertracer-configurator/8.8.1/solr-jaegertracer-configurator-8.8.1-javadoc.jar.sha1
==============================================================================
--- dev/lucene/lucene-solr-8.8.1-RC1-rev2c54fd212c8b3ced73d75717a6053b18d5d413fc/solr/maven/org/apache/solr/solr-jaegertracer-configurator/8.8.1/solr-jaegertracer-configurator-8.8.1-javadoc.jar.sha1 (added)
+++ dev/lucene/lucene-solr-8.8.1-RC1-rev2c54fd212c8b3ced73d75717a6053b18d5d413fc/solr/maven/org/apache/solr/solr-jaegertracer-configurator/8.8.1/solr-jaegertracer-configurator-8.8.1-javadoc.jar.sha1 Sat Feb 13 19:02:24 2021
@@ -0,0 +1 @@
+bd771b7c99d98a4eb80a48166680d8540ecaced1
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.8.1-RC1-rev2c54fd212c8b3ced73d75717a6053b18d5d413fc/solr/maven/org/apache/solr/solr-jaegertracer-configurator/8.8.1/solr-jaegertracer-configurator-8.8.1-sources.jar
==============================================================================
Binary file - no diff available.

Propchange: dev/lucene/lucene-solr-8.8.1-RC1-rev2c54fd212c8b3ced73d75717a6053b18d5d413fc/solr/maven/org/apache/solr/solr-jaegertracer-configurator/8.8.1/solr-jaegertracer-configurator-8.8.1-sources.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: dev/lucene/lucene-solr-8.8.1-RC1-rev2c54fd212c8b3ced73d75717a6053b18d5d413fc/solr/maven/org/apache/solr/solr-jaegertracer-configurator/8.8.1/solr-jaegertracer-configurator-8.8.1-sources.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-8.8.1-RC1-rev2c54fd212c8b3ced73d75717a6053b18d5d413fc/solr/maven/org/apache/solr/solr-jaegertracer-configurator/8.8.1/solr-jaegertracer-configurator-8.8.1-sources.jar.asc (added)
+++ dev/lucene/lucene-solr-8.8.1-RC1-rev2c54fd212c8b3ced73d75717a6053b18d5d413fc/solr/maven/org/apache/solr/solr-jaegertracer-configurator/8.8.1/solr-jaegertracer-configurator-8.8.1-sources.jar.asc Sat Feb 13 19:02:24 2021
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCAAdFiEE+8JdfhcSAlKU/mZZCmqhebm79F4FAmAoC7QACgkQCmqhebm7
+9F6bMw/6Ax8bIMLKw7bPIhZPv704wkrPUm6081UQevqYcZfX1ryCrZPzwzMGX3Xz
+r1TZ54OxkYrOhE8ZIbP6lWWLFt7f5EDwpHenyti9YCLDkyTGwynGsp1oPDtpeMYq
+KwoJI8OfqN1M5O5zkQQ85sjbYbZa9JDEsCnA9VeVwFT2buT6ILqPpT3btw+lm7rx
+rlPpCBwryfgQ2zBSMHg6QXqE77QXFErMk+kdbqkyTjPcgK0MZufOCiVeMj9r3c6R
+RxXCOqlZGuKNsdvJy/NpmIKyu0O9bTLbOm1ZkDYO/1qC8NdVNbcQMZMqaz1pI0vn
+axmRIU4gXsAarpVaL+oAXXJPA3dC9CM4j8kB5/k7JMIAgjbHwkCzc53Y0LKbGNaz
+FUpVvR0t/s6zKMGFQUH3GcweiJgQNl1FL0TX3le9IsJljBzkJcBCGLxxGZyHRAU/
+zN/krSkDARfIJFDNgi5G5qY4Ru346cDdETE60xJmdFGGftLu1lA31ktid7Wi9wEP
+xaLGORxBHS7iuj8FtLm/CebNrIiNawWpHUKU2aCQdmkU7tgGAxOna25S+XyvMOdq
+Ajnjvn/ddrMOkIL7wO6LihB3tubVcDYl2fn1e8GA6oDrX4O4GR/KueyWPW3+gn3j
+i1QjskltpOQnXDb6eLRlLakXZwD3YnUsA6oBZxvZfb6BPwRiDbU=
+=bJkm
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-8.8.1-RC1-rev2c54fd212c8b3ced73d75717a6053b18d5d413fc/solr/maven/org/apache/solr/solr-jaegertracer-configurator/8.8.1/solr-jaegertracer-configurator-8.8.1-sources.jar.md5
==============================================================================
--- dev/lucene/lucene-solr-8.8.1-RC1-rev2c54fd212c8b3ced73d75717a6053b18d5d413fc/solr/maven/org/apache/solr/solr-jaegertracer-configurator/8.8.1/solr-jaegertracer-configurator-8.8.1-sources.jar.md5 (added)
+++ dev/lucene/lucene-solr-8.8.1-RC1-rev2c54fd212c8b3ced73d75717a6053b18d5d413fc/solr/maven/org/apache/solr/solr-jaegertracer-configurator/8.8.1/solr-jaegertracer-configurator-8.8.1-sources.jar.md5 Sat Feb 13 19:02:24 2021
@@ -0,0 +1 @@
+b3d98b4f451d89b603402ed39961998a
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.8.1-RC1-rev2c54fd212c8b3ced73d75717a6053b18d5d413fc/solr/maven/org/apache/solr/solr-jaegertracer-configurator/8.8.1/solr-jaegertracer-configurator-8.8.1-sources.jar.sha1
==============================================================================
--- dev/lucene/lucene-solr-8.8.1-RC1-rev2c54fd212c8b3ced73d75717a6053b18d5d413fc/solr/maven/org/apache/solr/solr-jaegertracer-configurator/8.8.1/solr-jaegertracer-configurator-8.8.1-sources.jar.sha1 (added)
+++ dev/lucene/lucene-solr-8.8.1-RC1-rev2c54fd212c8b3ced73d75717a6053b18d5d413fc/solr/maven/org/apache/solr/solr-jaegertracer-configurator/8.8.1/solr-jaegertracer-configurator-8.8.1-sources.jar.sha1 Sat Feb 13 19:02:24 2021
@@ -0,0 +1 @@
+8b7d3c64b1e856b4772a576118bfb0e0a68a80c7
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.8.1-RC1-rev2c54fd212c8b3ced73d75717a6053b18d5d413fc/solr/maven/org/apache/solr/solr-jaegertracer-configurator/8.8.1/solr-jaegertracer-configurator-8.8.1.jar
==============================================================================
Binary file - no diff available.

Propchange: dev/lucene/lucene-solr-8.8.1-RC1-rev2c54fd212c8b3ced73d75717a6053b18d5d413fc/solr/maven/org/apache/solr/solr-jaegertracer-configurator/8.8.1/solr-jaegertracer-configurator-8.8.1.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: dev/lucene/lucene-solr-8.8.1-RC1-rev2c54fd212c8b3ced73d75717a6053b18d5d413fc/solr/maven/org/apache/solr/solr-jaegertracer-configurator/8.8.1/solr-jaegertracer-configurator-8.8.1.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-8.8.1-RC1-rev2c54fd212c8b3ced73d75717a6053b18d5d413fc/solr/maven/org/apache/solr/solr-jaegertracer-configurator/8.8.1/solr-jaegertracer-configurator-8.8.1.jar.asc (added)
+++ dev/lucene/lucene-solr-8.8.1-RC1-rev2c54fd212c8b3ced73d75717a6053b18d5d413fc/solr/maven/org/apache/solr/solr-jaegertracer-configurator/8.8.1/solr-jaegertracer-configurator-8.8.1.jar.asc Sat Feb 13 19:02:24 2021
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCAAdFiEE+8JdfhcSAlKU/mZZCmqhebm79F4FAmAoC7QACgkQCmqhebm7
+9F7g+hAAgV+NqY/6ClTFehFhEgb78ZyjNXKX7n3yh+LxXXDrMofWWh9DjyI2iBUh
+C36mqWQF6wCWyQJZNgjMEH6q3dKdFxMwZnd9lcaj7DLdTC1h08TUBEQCxWxCE63E
+jGc8eaEUurRO2pTc1mX2/h0sQ/EwgUTQpFW8Z/b2BuizBAGod2o6g953K4E0SiCB
+UUI1t2acl5UrDBCdPSIODmcjjSDfP+ygWc9gVb1WAYYwexr6MI5oSqNNPtXm9gdK
+CCKN4a0S5T9s2YcY+JUniJGigSHlWNESV8kjnwHCOYHJUuTVvgOEUwN1acGyNF1X
+89UiWV5sKv+j5bE4d8jKUsawrFJskNenK//G9LqHePgnQctccnIiBOdDysdDn5Vz
+jxZ1LgbuOY1t3jUxXq/XOlfmEGnqcgOXkLxdiemasAB7NIoUtN2mvQZ9bGC0wudH
+1MjRLIFWE9DAQZx4TcjgYrw93wJmAnLKDjwGa91oMxQv22IGUlan3eEt5uV3gGuZ
+3UmlY9pVQ7ewG0VFGoA6GxyqBWcBnw+o0I0P46ZNP8uByK5krOjQGPEZMFflgVsE
+DMgWpHWCaZ641ouEItWs2PLwsznhts3HlkE0t6bcxTLKLF1BSGik1ro9nQdpKq0P
+dZt5Vxf3LuVlfoM41zrHAn29sWHN6A2rTuiQJXtP1161gAmNAzc=
+=NNQ/
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-8.8.1-RC1-rev2c54fd212c8b3ced73d75717a6053b18d5d413fc/solr/maven/org/apache/solr/solr-jaegertracer-configurator/8.8.1/solr-jaegertracer-configurator-8.8.1.jar.md5
==============================================================================
--- dev/lucene/lucene-solr-8.8.1-RC1-rev2c54fd212c8b3ced73d75717a6053b18d5d413fc/solr/maven/org/apache/solr/solr-jaegertracer-configurator/8.8.1/solr-jaegertracer-configurator-8.8.1.jar.md5 (added)
+++ dev/lucene/lucene-solr-8.8.1-RC1-rev2c54fd212c8b3ced73d75717a6053b18d5d413fc/solr/maven/org/apache/solr/solr-jaegertracer-configurator/8.8.1/solr-jaegertracer-configurator-8.8.1.jar.md5 Sat Feb 13 19:02:24 2021
@@ -0,0 +1 @@
+3410759406fa9e6cad76fa3681eab5ed
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.8.1-RC1-rev2c54fd212c8b3ced73d75717a6053b18d5d413fc/solr/maven/org/apache/solr/solr-jaegertracer-configurator/8.8.1/solr-jaegertracer-configurator-8.8.1.jar.sha1
==============================================================================
--- dev/lucene/lucene-solr-8.8.1-RC1-rev2c54fd212c8b3ced73d75717a6053b18d5d413fc/solr/maven/org/apache/solr/solr-jaegertracer-configurator/8.8.1/solr-jaegertracer-configurator-8.8.1.jar.sha1 (added)
+++ dev/lucene/lucene-solr-8.8.1-RC1-rev2c54fd212c8b3ced73d75717a6053b18d5d413fc/solr/maven/org/apache/solr/solr-jaegertracer-configurator/8.8.1/solr-jaegertracer-configurator-8.8.1.jar.sha1 Sat Feb 13 19:02:24 2021
@@ -0,0 +1 @@
+a87149cf63e97111ae0cb7254eab370df93d68bb
\ No newline at end of file