You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by ma...@apache.org on 2021/10/12 22:32:07 UTC

svn commit: r50383 [13/18] - in /dev/lucene/lucene-solr-8.10.1-RC1-rev2f24e6a49d48a032df1f12e146612f59141727a9: ./ lucene/ lucene/changes/ lucene/maven/ lucene/maven/org/ lucene/maven/org/apache/ lucene/maven/org/apache/lucene/ lucene/maven/org/apache/...

Added: dev/lucene/lucene-solr-8.10.1-RC1-rev2f24e6a49d48a032df1f12e146612f59141727a9/solr/maven/org/apache/solr/solr-cell/8.10.1/solr-cell-8.10.1.pom
==============================================================================
--- dev/lucene/lucene-solr-8.10.1-RC1-rev2f24e6a49d48a032df1f12e146612f59141727a9/solr/maven/org/apache/solr/solr-cell/8.10.1/solr-cell-8.10.1.pom (added)
+++ dev/lucene/lucene-solr-8.10.1-RC1-rev2f24e6a49d48a032df1f12e146612f59141727a9/solr/maven/org/apache/solr/solr-cell/8.10.1/solr-cell-8.10.1.pom Tue Oct 12 22:32:06 2021
@@ -0,0 +1,748 @@
+<!--
+  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.10.1</version>
+    <relativePath>../../pom.xml</relativePath>
+  </parent>
+  <groupId>org.apache.solr</groupId>
+  <artifactId>solr-cell</artifactId>
+  <packaging>jar</packaging>
+  <name>Apache Solr Content Extraction Library</name>
+  <description>
+    Apache Solr Content Extraction Library integrates Apache Tika 
+    content extraction framework into Solr
+  </description>
+  <properties>
+    <module-directory>solr/contrib/extraction</module-directory>
+  </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>
+      <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.epam</groupId>
+      <artifactId>parso</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.esri.geometry</groupId>
+      <artifactId>esri-geometry-api</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.fasterxml.woodstox</groupId>
+      <artifactId>woodstox-core</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.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.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-layout-template-json</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.apiguardian</groupId>
+      <artifactId>apiguardian-api</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.checkerframework</groupId>
+      <artifactId>checker-qual</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.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>
+</project>

Added: dev/lucene/lucene-solr-8.10.1-RC1-rev2f24e6a49d48a032df1f12e146612f59141727a9/solr/maven/org/apache/solr/solr-cell/8.10.1/solr-cell-8.10.1.pom.asc
==============================================================================
--- dev/lucene/lucene-solr-8.10.1-RC1-rev2f24e6a49d48a032df1f12e146612f59141727a9/solr/maven/org/apache/solr/solr-cell/8.10.1/solr-cell-8.10.1.pom.asc (added)
+++ dev/lucene/lucene-solr-8.10.1-RC1-rev2f24e6a49d48a032df1f12e146612f59141727a9/solr/maven/org/apache/solr/solr-cell/8.10.1/solr-cell-8.10.1.pom.asc Tue Oct 12 22:32:06 2021
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEElyLyX2UAV+JsgDtgptBk2DOzqWkFAmFl4IQACgkQptBk2DOz
+qWnI3g/+LHMHMXlRBCdyQY13xwY9ADBthe3GiCo2teESc344CZ6+Wvh/TYwKIrZD
+Ce98Dgd9XYH/MR6PexNcdKScV30YIo1WbaCvHcd3g95jBmQFXRifxDPAjhwl2FWF
+KEGDLb9enrCDCSbBgZ+kmFF8u+l84fu3+ksscN8Pvj7Vs4cbqZ11ULg+OBLy6QpW
+IlIFhUmeaU86r5jyob87kZ22cmEHTjxAHeR4wN09x0wzkuMsi4QdAX2Hx6tS2W0p
+2b/v9RNUjXf+f1jd11DUlbqm+5MOGULZOrlmHj5RNjhM53tvwJlQKDpvGzQ0Qchw
+ejq6WdLgrqkNXFpuO+/20E4JbtKDnIzwdUhcKFjOOEB7Gkb/7ykU0avUerLDH4uE
+EcvbCTYKyJ97LS3edZYk5KwZkLs1/jKrMgqMV5SeGz1puuWKE7iQwX1fUqioGO2d
+s3V+hKlWnOXDxxHji5EU6+6KyVbLSa1BI5txbOwZlMb3MGNlvuAh9EGOsz8VisI0
+KILPouoLMhzoLuwIMez7O3X8vWkZq2CIkEZIVvk2tYek3X8NtuEx0KEbjboBld9V
++fr5C01KAHKx3gW1nZqkIf+X5BcbbCWWDEGnZII9sVo769BFTuEsKUA4CqELthop
+Uu8undN+wfnC2Z7KohKhMM6utrQ2QirVTt5LQlVTEqULGh2QfOc=
+=YRU8
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-8.10.1-RC1-rev2f24e6a49d48a032df1f12e146612f59141727a9/solr/maven/org/apache/solr/solr-cell/8.10.1/solr-cell-8.10.1.pom.md5
==============================================================================
--- dev/lucene/lucene-solr-8.10.1-RC1-rev2f24e6a49d48a032df1f12e146612f59141727a9/solr/maven/org/apache/solr/solr-cell/8.10.1/solr-cell-8.10.1.pom.md5 (added)
+++ dev/lucene/lucene-solr-8.10.1-RC1-rev2f24e6a49d48a032df1f12e146612f59141727a9/solr/maven/org/apache/solr/solr-cell/8.10.1/solr-cell-8.10.1.pom.md5 Tue Oct 12 22:32:06 2021
@@ -0,0 +1 @@
+d069972ffc0c2a3786a216ffdff6ae88
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.10.1-RC1-rev2f24e6a49d48a032df1f12e146612f59141727a9/solr/maven/org/apache/solr/solr-cell/8.10.1/solr-cell-8.10.1.pom.sha1
==============================================================================
--- dev/lucene/lucene-solr-8.10.1-RC1-rev2f24e6a49d48a032df1f12e146612f59141727a9/solr/maven/org/apache/solr/solr-cell/8.10.1/solr-cell-8.10.1.pom.sha1 (added)
+++ dev/lucene/lucene-solr-8.10.1-RC1-rev2f24e6a49d48a032df1f12e146612f59141727a9/solr/maven/org/apache/solr/solr-cell/8.10.1/solr-cell-8.10.1.pom.sha1 Tue Oct 12 22:32:06 2021
@@ -0,0 +1 @@
+3471c8f14a0fdb1c1ea0c279375dc4aeb6099dc9
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.10.1-RC1-rev2f24e6a49d48a032df1f12e146612f59141727a9/solr/maven/org/apache/solr/solr-cell/maven-metadata.xml
==============================================================================
--- dev/lucene/lucene-solr-8.10.1-RC1-rev2f24e6a49d48a032df1f12e146612f59141727a9/solr/maven/org/apache/solr/solr-cell/maven-metadata.xml (added)
+++ dev/lucene/lucene-solr-8.10.1-RC1-rev2f24e6a49d48a032df1f12e146612f59141727a9/solr/maven/org/apache/solr/solr-cell/maven-metadata.xml Tue Oct 12 22:32:06 2021
@@ -0,0 +1,12 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<metadata>
+  <groupId>org.apache.solr</groupId>
+  <artifactId>solr-cell</artifactId>
+  <version>8.10.1</version>
+  <versioning>
+    <versions>
+      <version>8.10.1</version>
+    </versions>
+    <lastUpdated>20211012192212</lastUpdated>
+  </versioning>
+</metadata>

Added: dev/lucene/lucene-solr-8.10.1-RC1-rev2f24e6a49d48a032df1f12e146612f59141727a9/solr/maven/org/apache/solr/solr-cell/maven-metadata.xml.md5
==============================================================================
--- dev/lucene/lucene-solr-8.10.1-RC1-rev2f24e6a49d48a032df1f12e146612f59141727a9/solr/maven/org/apache/solr/solr-cell/maven-metadata.xml.md5 (added)
+++ dev/lucene/lucene-solr-8.10.1-RC1-rev2f24e6a49d48a032df1f12e146612f59141727a9/solr/maven/org/apache/solr/solr-cell/maven-metadata.xml.md5 Tue Oct 12 22:32:06 2021
@@ -0,0 +1 @@
+9d5b1e14f68f12dedef330a3368d873a
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.10.1-RC1-rev2f24e6a49d48a032df1f12e146612f59141727a9/solr/maven/org/apache/solr/solr-cell/maven-metadata.xml.sha1
==============================================================================
--- dev/lucene/lucene-solr-8.10.1-RC1-rev2f24e6a49d48a032df1f12e146612f59141727a9/solr/maven/org/apache/solr/solr-cell/maven-metadata.xml.sha1 (added)
+++ dev/lucene/lucene-solr-8.10.1-RC1-rev2f24e6a49d48a032df1f12e146612f59141727a9/solr/maven/org/apache/solr/solr-cell/maven-metadata.xml.sha1 Tue Oct 12 22:32:06 2021
@@ -0,0 +1 @@
+3d2e1b7a7b7b76c0c5da968c66fe6fe2b2057040
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.10.1-RC1-rev2f24e6a49d48a032df1f12e146612f59141727a9/solr/maven/org/apache/solr/solr-core/8.10.1/solr-core-8.10.1-javadoc.jar
==============================================================================
Binary file - no diff available.

Propchange: dev/lucene/lucene-solr-8.10.1-RC1-rev2f24e6a49d48a032df1f12e146612f59141727a9/solr/maven/org/apache/solr/solr-core/8.10.1/solr-core-8.10.1-javadoc.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: dev/lucene/lucene-solr-8.10.1-RC1-rev2f24e6a49d48a032df1f12e146612f59141727a9/solr/maven/org/apache/solr/solr-core/8.10.1/solr-core-8.10.1-javadoc.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-8.10.1-RC1-rev2f24e6a49d48a032df1f12e146612f59141727a9/solr/maven/org/apache/solr/solr-core/8.10.1/solr-core-8.10.1-javadoc.jar.asc (added)
+++ dev/lucene/lucene-solr-8.10.1-RC1-rev2f24e6a49d48a032df1f12e146612f59141727a9/solr/maven/org/apache/solr/solr-core/8.10.1/solr-core-8.10.1-javadoc.jar.asc Tue Oct 12 22:32:06 2021
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEElyLyX2UAV+JsgDtgptBk2DOzqWkFAmFl4IUACgkQptBk2DOz
+qWk2/w/6Ao2lrUO8TCwkvl1SyvdwHS2aRXLUMjWN5//qh7VKwzmZKCKA7jc6WuGX
+CIjWH1TflV0wlAOWZdWSXeBYFUV1wqWAFz5DifG6Ia97Z3KbOQVfL9YKHudRprKw
+L5i6u0YFvEvIEvi18dja6R5Kl/xN3OgoSNP04UB3lto3V3+wpKXJN8QsWBkhI/1f
+7Dxameh0j/o0qiLjBklnPfXy+Um35zd1dDd8Xhh00PVdmPI76bcsTM3uH5iWBun9
+MyEmIHBPD0LKul5we6K5Hn6TCLQpwIPYBR5B0VkOFLRy2N47XEM7pMS+MQM/E2ZM
+1M1tNBgZb8E7l1J/TmCNoxCaGYg4OMO2g90pUxJ0o/xe62RygAR02UCOqdqzNgiG
+4rhTl+azEKEIqU+sxSFWjPcelf6QZ0G+fxSoBeOkfnYuwzkY7aEJIchWcgJCO+ze
+Ig5ogM3VZ3tWrX/eFYdumVrhwSi4T/Nqqcd+ZMvk8F6YmmWNXfXMGir1LN6ZVb2K
+aS/NUh0eYdDHt9ExwwURAjSpfqt8oBkGBGaIrzBzxgufaQvRAx823nEx3jE/8uel
+fOJmJ8uMLi28bGvGG7qFrupyV/tIlZuZBxTcaTNQp+Sd3lphqaH4evLTZoVSeZsD
+jdNkBs9NXeiAr7eqq+opaqL9Jw8TOsbkgLAkJ3rlPyRxGL944Bw=
+=Hr1L
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-8.10.1-RC1-rev2f24e6a49d48a032df1f12e146612f59141727a9/solr/maven/org/apache/solr/solr-core/8.10.1/solr-core-8.10.1-javadoc.jar.md5
==============================================================================
--- dev/lucene/lucene-solr-8.10.1-RC1-rev2f24e6a49d48a032df1f12e146612f59141727a9/solr/maven/org/apache/solr/solr-core/8.10.1/solr-core-8.10.1-javadoc.jar.md5 (added)
+++ dev/lucene/lucene-solr-8.10.1-RC1-rev2f24e6a49d48a032df1f12e146612f59141727a9/solr/maven/org/apache/solr/solr-core/8.10.1/solr-core-8.10.1-javadoc.jar.md5 Tue Oct 12 22:32:06 2021
@@ -0,0 +1 @@
+d1f4baf66762afcb6cfec459e7fb470f
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.10.1-RC1-rev2f24e6a49d48a032df1f12e146612f59141727a9/solr/maven/org/apache/solr/solr-core/8.10.1/solr-core-8.10.1-javadoc.jar.sha1
==============================================================================
--- dev/lucene/lucene-solr-8.10.1-RC1-rev2f24e6a49d48a032df1f12e146612f59141727a9/solr/maven/org/apache/solr/solr-core/8.10.1/solr-core-8.10.1-javadoc.jar.sha1 (added)
+++ dev/lucene/lucene-solr-8.10.1-RC1-rev2f24e6a49d48a032df1f12e146612f59141727a9/solr/maven/org/apache/solr/solr-core/8.10.1/solr-core-8.10.1-javadoc.jar.sha1 Tue Oct 12 22:32:06 2021
@@ -0,0 +1 @@
+6abb5e3a7feec81009896fdcd86708ca80af9a71
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.10.1-RC1-rev2f24e6a49d48a032df1f12e146612f59141727a9/solr/maven/org/apache/solr/solr-core/8.10.1/solr-core-8.10.1-sources.jar
==============================================================================
Binary file - no diff available.

Propchange: dev/lucene/lucene-solr-8.10.1-RC1-rev2f24e6a49d48a032df1f12e146612f59141727a9/solr/maven/org/apache/solr/solr-core/8.10.1/solr-core-8.10.1-sources.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: dev/lucene/lucene-solr-8.10.1-RC1-rev2f24e6a49d48a032df1f12e146612f59141727a9/solr/maven/org/apache/solr/solr-core/8.10.1/solr-core-8.10.1-sources.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-8.10.1-RC1-rev2f24e6a49d48a032df1f12e146612f59141727a9/solr/maven/org/apache/solr/solr-core/8.10.1/solr-core-8.10.1-sources.jar.asc (added)
+++ dev/lucene/lucene-solr-8.10.1-RC1-rev2f24e6a49d48a032df1f12e146612f59141727a9/solr/maven/org/apache/solr/solr-core/8.10.1/solr-core-8.10.1-sources.jar.asc Tue Oct 12 22:32:06 2021
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEElyLyX2UAV+JsgDtgptBk2DOzqWkFAmFl4IUACgkQptBk2DOz
+qWlVKA/+IBCVjEwHpEF10l+FZiYMlQlyRbiUMZjxblx4x3aWkAZJXm1WktYUjuGr
+6LrH3DDD1WLIbiIAnpiJDaKBgtvk3yTXeWr66BJmHaWyiaSR0e0XUrgvrKR1anG+
+pjXU/xisOZjUILIz++TtKLVEpr+3e8CV89ZK2ML1iL2sdyWRZRpVpeKs7c3IxlDq
+3qKekhjkoF/m+3LABWXbyuLjAZO5+e6uTGj5RCcoQo3WZc4iNux6s1pUvKqzVmhz
+hM51JJWPImU1dDPqMfPrtAzWyjnWDGNla5Y+CWpO5/SbgKWlxFcjtPTzIOsi1Cap
+x1LO4c0AliI46LiZJalIKEqxEY8KvDhWVy31H6P+dYp8nJeYeTOxHdLTcH65j+rw
+0/GrsyLhIkIWh2yiWz+LOkq+HojhhnPCutgW6KApAOIi/sNm+oAx29SVK6YsCppR
+cjUucUGxmkj4Jns/0uPZDylKJVmibuknwsrJOwjMQnIAqD9nQR18RS8UCElBldSr
+wUy/2WZW5B2RRaF1w6yj1YbJPBe1JZtqgIQ+tMWdBSW+4/m5tQrUDUaa+rDoQFET
+bxcPDb1Gt1gvfjMp8V6u3Yy+9AzyiCyOrS8GXoryqpcH0BVK04DInBOhNAvAxWcy
+VBYKeHW/fC5xlHnSWugwvFm4TJiSP5k70F3EZgHPKd37TovHWL0=
+=mqgw
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-8.10.1-RC1-rev2f24e6a49d48a032df1f12e146612f59141727a9/solr/maven/org/apache/solr/solr-core/8.10.1/solr-core-8.10.1-sources.jar.md5
==============================================================================
--- dev/lucene/lucene-solr-8.10.1-RC1-rev2f24e6a49d48a032df1f12e146612f59141727a9/solr/maven/org/apache/solr/solr-core/8.10.1/solr-core-8.10.1-sources.jar.md5 (added)
+++ dev/lucene/lucene-solr-8.10.1-RC1-rev2f24e6a49d48a032df1f12e146612f59141727a9/solr/maven/org/apache/solr/solr-core/8.10.1/solr-core-8.10.1-sources.jar.md5 Tue Oct 12 22:32:06 2021
@@ -0,0 +1 @@
+7592ae56c9fa1945fdce71ca0bb7d38b
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.10.1-RC1-rev2f24e6a49d48a032df1f12e146612f59141727a9/solr/maven/org/apache/solr/solr-core/8.10.1/solr-core-8.10.1-sources.jar.sha1
==============================================================================
--- dev/lucene/lucene-solr-8.10.1-RC1-rev2f24e6a49d48a032df1f12e146612f59141727a9/solr/maven/org/apache/solr/solr-core/8.10.1/solr-core-8.10.1-sources.jar.sha1 (added)
+++ dev/lucene/lucene-solr-8.10.1-RC1-rev2f24e6a49d48a032df1f12e146612f59141727a9/solr/maven/org/apache/solr/solr-core/8.10.1/solr-core-8.10.1-sources.jar.sha1 Tue Oct 12 22:32:06 2021
@@ -0,0 +1 @@
+5c7e91d726b80cc8e54a046c62dc04cebedf9df1
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.10.1-RC1-rev2f24e6a49d48a032df1f12e146612f59141727a9/solr/maven/org/apache/solr/solr-core/8.10.1/solr-core-8.10.1.jar
==============================================================================
Binary file - no diff available.

Propchange: dev/lucene/lucene-solr-8.10.1-RC1-rev2f24e6a49d48a032df1f12e146612f59141727a9/solr/maven/org/apache/solr/solr-core/8.10.1/solr-core-8.10.1.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: dev/lucene/lucene-solr-8.10.1-RC1-rev2f24e6a49d48a032df1f12e146612f59141727a9/solr/maven/org/apache/solr/solr-core/8.10.1/solr-core-8.10.1.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-8.10.1-RC1-rev2f24e6a49d48a032df1f12e146612f59141727a9/solr/maven/org/apache/solr/solr-core/8.10.1/solr-core-8.10.1.jar.asc (added)
+++ dev/lucene/lucene-solr-8.10.1-RC1-rev2f24e6a49d48a032df1f12e146612f59141727a9/solr/maven/org/apache/solr/solr-core/8.10.1/solr-core-8.10.1.jar.asc Tue Oct 12 22:32:06 2021
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEElyLyX2UAV+JsgDtgptBk2DOzqWkFAmFl4IYACgkQptBk2DOz
+qWmBCBAAhBojPoEKqntCLlfOukP+h652gnViGvfA+Bm0fFVT0Ujg3KZ7d6p2Qv++
+AzXu5KEwQvi3SpWpgOyZvXmnb2eukn+jluMUQ3FQEz6258kwNzY9WHZLBFXfWlTM
+wSARemLyzIRwM82yz+JBAHdqkA+rGw5ATJiGz0SUg+3QFGtvB9nzWMyYqf73D0H/
+QfwasuAqK0gQIIXlG7o3dxtIWfEVZe2TVhMv5f1vlezbWXhsp4Ayxw2R+fRWt175
+4RJ3wodwpFQ4CcV1Cy5JTQudFoukevrU/r+HE22grhrcWw5B0dwSi5wJDU8AKugt
+2uQ5huzu5azyNN2YwHoK8B5sE7vu2ewf9qUXQYu/IAuGvm38rdcZXlRTHHzXrDYu
+su3fvnJmeh1GGdkh4dUEHkUGRwd409mH8WHPcQSj47O+3VdlODqSJjZvkKnUQbcx
+w1NvlTuuSCEXRp2wNVevMWBM49fSrkcahad/oPZm6jTxVIrhB3XwDqxXsCEzlGrt
+3brbIFfrbobF/l7ymSK07RHB87yPqLy8nC2PtOKArUnw7F8Bikn0nCz3Fjvk5Qhl
+LCeUdt5Kj68WhLefVFCujNeSo6rM7ITF8ixDvse7yWlOQEonOaOPUCylADkxWOfP
+BPy2Jkrjca8d1b5eoQBV4fbQZ8Aqy4FL1VbJmqvjVMyN85mKsUQ=
+=Bxqs
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-8.10.1-RC1-rev2f24e6a49d48a032df1f12e146612f59141727a9/solr/maven/org/apache/solr/solr-core/8.10.1/solr-core-8.10.1.jar.md5
==============================================================================
--- dev/lucene/lucene-solr-8.10.1-RC1-rev2f24e6a49d48a032df1f12e146612f59141727a9/solr/maven/org/apache/solr/solr-core/8.10.1/solr-core-8.10.1.jar.md5 (added)
+++ dev/lucene/lucene-solr-8.10.1-RC1-rev2f24e6a49d48a032df1f12e146612f59141727a9/solr/maven/org/apache/solr/solr-core/8.10.1/solr-core-8.10.1.jar.md5 Tue Oct 12 22:32:06 2021
@@ -0,0 +1 @@
+d35ffbe1fffd29e6c0d11c121ffe6dfd
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.10.1-RC1-rev2f24e6a49d48a032df1f12e146612f59141727a9/solr/maven/org/apache/solr/solr-core/8.10.1/solr-core-8.10.1.jar.sha1
==============================================================================
--- dev/lucene/lucene-solr-8.10.1-RC1-rev2f24e6a49d48a032df1f12e146612f59141727a9/solr/maven/org/apache/solr/solr-core/8.10.1/solr-core-8.10.1.jar.sha1 (added)
+++ dev/lucene/lucene-solr-8.10.1-RC1-rev2f24e6a49d48a032df1f12e146612f59141727a9/solr/maven/org/apache/solr/solr-core/8.10.1/solr-core-8.10.1.jar.sha1 Tue Oct 12 22:32:06 2021
@@ -0,0 +1 @@
+b96e6ab72b928ed66c304cd2246daa12ee9f745a
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.10.1-RC1-rev2f24e6a49d48a032df1f12e146612f59141727a9/solr/maven/org/apache/solr/solr-core/8.10.1/solr-core-8.10.1.pom
==============================================================================
--- dev/lucene/lucene-solr-8.10.1-RC1-rev2f24e6a49d48a032df1f12e146612f59141727a9/solr/maven/org/apache/solr/solr-core/8.10.1/solr-core-8.10.1.pom (added)
+++ dev/lucene/lucene-solr-8.10.1-RC1-rev2f24e6a49d48a032df1f12e146612f59141727a9/solr/maven/org/apache/solr/solr-core/8.10.1/solr-core-8.10.1.pom Tue Oct 12 22:32:06 2021
@@ -0,0 +1,565 @@
+<!--
+  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.10.1</version>
+    <relativePath>../pom.xml</relativePath>
+  </parent>
+  <groupId>org.apache.solr</groupId>
+  <artifactId>solr-core</artifactId>
+  <packaging>jar</packaging>
+  <name>Apache Solr Core</name>
+  <description>Apache Solr Core</description>
+  <properties>
+    <module-directory>solr/core</module-directory>
+  </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>
+      <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-solrj</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.carrotsearch</groupId>
+      <artifactId>hppc</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.esri.geometry</groupId>
+      <artifactId>esri-geometry-api</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.fasterxml.woodstox</groupId>
+      <artifactId>woodstox-core</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-layout-template-json</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.apiguardian</groupId>
+      <artifactId>apiguardian-api</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.bitbucket.b_c</groupId>
+      <artifactId>jose4j</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.checkerframework</groupId>
+      <artifactId>checker-qual</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.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>
+  </dependencies>
+</project>

Added: dev/lucene/lucene-solr-8.10.1-RC1-rev2f24e6a49d48a032df1f12e146612f59141727a9/solr/maven/org/apache/solr/solr-core/8.10.1/solr-core-8.10.1.pom.asc
==============================================================================
--- dev/lucene/lucene-solr-8.10.1-RC1-rev2f24e6a49d48a032df1f12e146612f59141727a9/solr/maven/org/apache/solr/solr-core/8.10.1/solr-core-8.10.1.pom.asc (added)
+++ dev/lucene/lucene-solr-8.10.1-RC1-rev2f24e6a49d48a032df1f12e146612f59141727a9/solr/maven/org/apache/solr/solr-core/8.10.1/solr-core-8.10.1.pom.asc Tue Oct 12 22:32:06 2021
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEElyLyX2UAV+JsgDtgptBk2DOzqWkFAmFl4IYACgkQptBk2DOz
+qWmW7xAAkDibK9lfl5uPLzF9S3IYsC91xQPBohEBD18vdtl53AstpNkwFSBXcxkq
+2GwFubMtMfYR/TDDzgHuozQBJcS7oYf1Nxc9GT0hcDRj/M5mMUYE35AsmK65msg9
+vGhM7RfbAPfa7u5aV29gT+RywtDVgpiLBfl05j5fNK01uWlRSSYYXuvZVfBIgMFj
+PwpLQ/4pk0sE524SRvD8+J1c0F0ptT72hVC/EYIs3YdOyChj245WvfhOQTm8CZhv
+APcyiZoLAC99mNKEKod6qINWxvIoFu9m97K8A1LS0FYaxpL3k9s5A3mZDQryeAC0
+9684GNakG+5RRUiTSpuDEvAyDCSI2/HG8rkMarzo7PcyrPFNulfX6Eyd/xBPepl6
+tutgp3ysImfnFEWNZMBpdVkAXL6d9EiKiFCTMsHln9ESQuT4YIQO8fvtzhb0XcRZ
+GM1oQUSlm05IPbDWKxozC7+NFuvPmbkuYsGxHlVO6mVhUxrqcDw5TTXzMS7W2OJj
+II/sQYv8Ljecmb85/Uyaz9R5Ft6kplNwmGWVszUffG++ijHiG1CcNKNaH9t7tdKS
+H2jCluP/t5z6pGetJiEvY03v1TYqMnCTh8hFRXc9kTUSuLU5elQUAqEr0rlNqNTu
+/5xFjxEepT45nY3OJzwY/xmypL18xlwhqJCGO0YuaKm/2cj0UOs=
+=GA5K
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-8.10.1-RC1-rev2f24e6a49d48a032df1f12e146612f59141727a9/solr/maven/org/apache/solr/solr-core/8.10.1/solr-core-8.10.1.pom.md5
==============================================================================
--- dev/lucene/lucene-solr-8.10.1-RC1-rev2f24e6a49d48a032df1f12e146612f59141727a9/solr/maven/org/apache/solr/solr-core/8.10.1/solr-core-8.10.1.pom.md5 (added)
+++ dev/lucene/lucene-solr-8.10.1-RC1-rev2f24e6a49d48a032df1f12e146612f59141727a9/solr/maven/org/apache/solr/solr-core/8.10.1/solr-core-8.10.1.pom.md5 Tue Oct 12 22:32:06 2021
@@ -0,0 +1 @@
+576ef68b4991c91eb03b08e6e43bac5e
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.10.1-RC1-rev2f24e6a49d48a032df1f12e146612f59141727a9/solr/maven/org/apache/solr/solr-core/8.10.1/solr-core-8.10.1.pom.sha1
==============================================================================
--- dev/lucene/lucene-solr-8.10.1-RC1-rev2f24e6a49d48a032df1f12e146612f59141727a9/solr/maven/org/apache/solr/solr-core/8.10.1/solr-core-8.10.1.pom.sha1 (added)
+++ dev/lucene/lucene-solr-8.10.1-RC1-rev2f24e6a49d48a032df1f12e146612f59141727a9/solr/maven/org/apache/solr/solr-core/8.10.1/solr-core-8.10.1.pom.sha1 Tue Oct 12 22:32:06 2021
@@ -0,0 +1 @@
+dd36ff0762e299251363fa729875fc0c6f0e56d5
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.10.1-RC1-rev2f24e6a49d48a032df1f12e146612f59141727a9/solr/maven/org/apache/solr/solr-core/maven-metadata.xml
==============================================================================
--- dev/lucene/lucene-solr-8.10.1-RC1-rev2f24e6a49d48a032df1f12e146612f59141727a9/solr/maven/org/apache/solr/solr-core/maven-metadata.xml (added)
+++ dev/lucene/lucene-solr-8.10.1-RC1-rev2f24e6a49d48a032df1f12e146612f59141727a9/solr/maven/org/apache/solr/solr-core/maven-metadata.xml Tue Oct 12 22:32:06 2021
@@ -0,0 +1,12 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<metadata>
+  <groupId>org.apache.solr</groupId>
+  <artifactId>solr-core</artifactId>
+  <version>8.10.1</version>
+  <versioning>
+    <versions>
+      <version>8.10.1</version>
+    </versions>
+    <lastUpdated>20211012192149</lastUpdated>
+  </versioning>
+</metadata>

Added: dev/lucene/lucene-solr-8.10.1-RC1-rev2f24e6a49d48a032df1f12e146612f59141727a9/solr/maven/org/apache/solr/solr-core/maven-metadata.xml.md5
==============================================================================
--- dev/lucene/lucene-solr-8.10.1-RC1-rev2f24e6a49d48a032df1f12e146612f59141727a9/solr/maven/org/apache/solr/solr-core/maven-metadata.xml.md5 (added)
+++ dev/lucene/lucene-solr-8.10.1-RC1-rev2f24e6a49d48a032df1f12e146612f59141727a9/solr/maven/org/apache/solr/solr-core/maven-metadata.xml.md5 Tue Oct 12 22:32:06 2021
@@ -0,0 +1 @@
+456df8694153ca09f64e32a483292beb
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.10.1-RC1-rev2f24e6a49d48a032df1f12e146612f59141727a9/solr/maven/org/apache/solr/solr-core/maven-metadata.xml.sha1
==============================================================================
--- dev/lucene/lucene-solr-8.10.1-RC1-rev2f24e6a49d48a032df1f12e146612f59141727a9/solr/maven/org/apache/solr/solr-core/maven-metadata.xml.sha1 (added)
+++ dev/lucene/lucene-solr-8.10.1-RC1-rev2f24e6a49d48a032df1f12e146612f59141727a9/solr/maven/org/apache/solr/solr-core/maven-metadata.xml.sha1 Tue Oct 12 22:32:06 2021
@@ -0,0 +1 @@
+3a410a8f63ffdc8c1ce2184634c0e6f859974850
\ No newline at end of file

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

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

Added: dev/lucene/lucene-solr-8.10.1-RC1-rev2f24e6a49d48a032df1f12e146612f59141727a9/solr/maven/org/apache/solr/solr-dataimporthandler-extras/8.10.1/solr-dataimporthandler-extras-8.10.1-javadoc.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-8.10.1-RC1-rev2f24e6a49d48a032df1f12e146612f59141727a9/solr/maven/org/apache/solr/solr-dataimporthandler-extras/8.10.1/solr-dataimporthandler-extras-8.10.1-javadoc.jar.asc (added)
+++ dev/lucene/lucene-solr-8.10.1-RC1-rev2f24e6a49d48a032df1f12e146612f59141727a9/solr/maven/org/apache/solr/solr-dataimporthandler-extras/8.10.1/solr-dataimporthandler-extras-8.10.1-javadoc.jar.asc Tue Oct 12 22:32:06 2021
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEElyLyX2UAV+JsgDtgptBk2DOzqWkFAmFl4IcACgkQptBk2DOz
+qWk6YhAAk7cYOm7z9fp8mcALkIP5ASrnnPF8NP24YNszQTP7rFjHnVB66k5VQggL
+lk3zf+Fn11Wt6/JXwaRLnL0GfiX8DYgd40BV6pyOEqeLUd2RuVByRHzmqMEbTMQV
+bGFKBNCbjW1trrvjKPkhI33cv2jtX3Mol/+QiRg98Cg4ZGJ3twprTrHZknDlaEIE
+zXyIeIqJw4GsC3MrTAYvKVYsSMAO1mrphaLR+rHUuzvjyT8WS3SOvOcefV5HmUG7
+COoan2X3ZmC9ZAuIBY4oYMZms2Vp9bKV8lS7MKpcJvvsdH/c2gLjYY0ofDOzR6D9
+qxeUNFuQ/HFbGm56B9kXp87NKj3C4p5GIUXQgUVjeiNfQnkOurS6AdCf5RqyRltf
+tHYosLV07Py89+T2j3yfFwaDjbiXpf41EAcwD5k90nM+QdG2ZlkwGmuKhNJsryz0
+HdfHxydlh2j9eiir020rg7x7k/cp9YRoms3s0icOFFP9z+orqlRYZckC/1zvZ6g3
+oONOLnruXG5qB1NZEIWSLThVa5fYrlsf7UuGmZtVqEXcBPFdGC9ANTGZpF1mXGqu
+RED1aw5cWW/UmvjmFXLOzRVsRNtHv6kANHdCqMdRYfmjD1ZCB6DB+h7jxd+YGyYl
+chIELbta0qojHuIWZLtUG4bkzcyVV8K2Ji4vviC4ZqdYY5thKMY=
+=Ps0D
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-8.10.1-RC1-rev2f24e6a49d48a032df1f12e146612f59141727a9/solr/maven/org/apache/solr/solr-dataimporthandler-extras/8.10.1/solr-dataimporthandler-extras-8.10.1-javadoc.jar.md5
==============================================================================
--- dev/lucene/lucene-solr-8.10.1-RC1-rev2f24e6a49d48a032df1f12e146612f59141727a9/solr/maven/org/apache/solr/solr-dataimporthandler-extras/8.10.1/solr-dataimporthandler-extras-8.10.1-javadoc.jar.md5 (added)
+++ dev/lucene/lucene-solr-8.10.1-RC1-rev2f24e6a49d48a032df1f12e146612f59141727a9/solr/maven/org/apache/solr/solr-dataimporthandler-extras/8.10.1/solr-dataimporthandler-extras-8.10.1-javadoc.jar.md5 Tue Oct 12 22:32:06 2021
@@ -0,0 +1 @@
+2e899ae2bdd1b9e809685a18eaf77d5b
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.10.1-RC1-rev2f24e6a49d48a032df1f12e146612f59141727a9/solr/maven/org/apache/solr/solr-dataimporthandler-extras/8.10.1/solr-dataimporthandler-extras-8.10.1-javadoc.jar.sha1
==============================================================================
--- dev/lucene/lucene-solr-8.10.1-RC1-rev2f24e6a49d48a032df1f12e146612f59141727a9/solr/maven/org/apache/solr/solr-dataimporthandler-extras/8.10.1/solr-dataimporthandler-extras-8.10.1-javadoc.jar.sha1 (added)
+++ dev/lucene/lucene-solr-8.10.1-RC1-rev2f24e6a49d48a032df1f12e146612f59141727a9/solr/maven/org/apache/solr/solr-dataimporthandler-extras/8.10.1/solr-dataimporthandler-extras-8.10.1-javadoc.jar.sha1 Tue Oct 12 22:32:06 2021
@@ -0,0 +1 @@
+3b3090004bde58071997e64527560fadfdc9d67c
\ No newline at end of file

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

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

Added: dev/lucene/lucene-solr-8.10.1-RC1-rev2f24e6a49d48a032df1f12e146612f59141727a9/solr/maven/org/apache/solr/solr-dataimporthandler-extras/8.10.1/solr-dataimporthandler-extras-8.10.1-sources.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-8.10.1-RC1-rev2f24e6a49d48a032df1f12e146612f59141727a9/solr/maven/org/apache/solr/solr-dataimporthandler-extras/8.10.1/solr-dataimporthandler-extras-8.10.1-sources.jar.asc (added)
+++ dev/lucene/lucene-solr-8.10.1-RC1-rev2f24e6a49d48a032df1f12e146612f59141727a9/solr/maven/org/apache/solr/solr-dataimporthandler-extras/8.10.1/solr-dataimporthandler-extras-8.10.1-sources.jar.asc Tue Oct 12 22:32:06 2021
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEElyLyX2UAV+JsgDtgptBk2DOzqWkFAmFl4IcACgkQptBk2DOz
+qWnnDQ//YDIKOCYBHiigxeL3OQ5PQjrsFFZRHuBPgloxOrBVGyXmFQEGx+d7tIvQ
+vKQu4VRETB952sb5trW0hqQYElegQi0q5DO9Z8tr8cS+KVD0QMxMc/JOPMkkqF64
+Mgy5AtGovX2DtcNvJ+RlxcPq05QyhDYx8EbAgi7HyatwlQuS+tW4BzoBB4MZB6oM
+yOjJlxBMFPjiZZtBQhAnuW4gdFzI5vjjDrKoF6NrjW6ADAtCp+ksiX/5kQG07izo
+2hVj/wxQaG3x1sN0QISEbHVNaoN7AIVEQOFQiqMg9NbyyIq+cIhquETdbcQQUQ9H
+2TkTXqG3VKk6F1SIyCVxAFM2UldFBIE3GuU7R7KD2g9bEs9tb3Z1h881yDsqjWpW
+wteRFSG9QH5QKszvD/1Ck2Ihv9pdEr8eBmpxW/iy6wD9sbzLkQwytrEDLiHhQxrw
+RqGDkLi9ElgKCesuaIghtsPgWPH5whoVaYMmMgfTdppaztFycZlSYoKu/BggcQfx
+hL+5InMBAHDtCh/CdGfDRKzBTzQTEoa61ZZF1AyEU5eumjpZ7FNjoV2IJlRsBkau
+4D7KqJ/Zom1lO57M38wSpIbyslnAAO+57zb2rBOXyOqAinjLY31wxEemVfme4QRC
+2HaFa6zLXBBUjoBHgARtzXjGdXtHcmRpi0h+ktLoX/kO8HfFmRE=
+=b11e
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-8.10.1-RC1-rev2f24e6a49d48a032df1f12e146612f59141727a9/solr/maven/org/apache/solr/solr-dataimporthandler-extras/8.10.1/solr-dataimporthandler-extras-8.10.1-sources.jar.md5
==============================================================================
--- dev/lucene/lucene-solr-8.10.1-RC1-rev2f24e6a49d48a032df1f12e146612f59141727a9/solr/maven/org/apache/solr/solr-dataimporthandler-extras/8.10.1/solr-dataimporthandler-extras-8.10.1-sources.jar.md5 (added)
+++ dev/lucene/lucene-solr-8.10.1-RC1-rev2f24e6a49d48a032df1f12e146612f59141727a9/solr/maven/org/apache/solr/solr-dataimporthandler-extras/8.10.1/solr-dataimporthandler-extras-8.10.1-sources.jar.md5 Tue Oct 12 22:32:06 2021
@@ -0,0 +1 @@
+78f4b276900b19eebec977c9701906bc
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.10.1-RC1-rev2f24e6a49d48a032df1f12e146612f59141727a9/solr/maven/org/apache/solr/solr-dataimporthandler-extras/8.10.1/solr-dataimporthandler-extras-8.10.1-sources.jar.sha1
==============================================================================
--- dev/lucene/lucene-solr-8.10.1-RC1-rev2f24e6a49d48a032df1f12e146612f59141727a9/solr/maven/org/apache/solr/solr-dataimporthandler-extras/8.10.1/solr-dataimporthandler-extras-8.10.1-sources.jar.sha1 (added)
+++ dev/lucene/lucene-solr-8.10.1-RC1-rev2f24e6a49d48a032df1f12e146612f59141727a9/solr/maven/org/apache/solr/solr-dataimporthandler-extras/8.10.1/solr-dataimporthandler-extras-8.10.1-sources.jar.sha1 Tue Oct 12 22:32:06 2021
@@ -0,0 +1 @@
+bb692cf77ed25260388535332489ddaed54620a2
\ No newline at end of file

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

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

Added: dev/lucene/lucene-solr-8.10.1-RC1-rev2f24e6a49d48a032df1f12e146612f59141727a9/solr/maven/org/apache/solr/solr-dataimporthandler-extras/8.10.1/solr-dataimporthandler-extras-8.10.1.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-8.10.1-RC1-rev2f24e6a49d48a032df1f12e146612f59141727a9/solr/maven/org/apache/solr/solr-dataimporthandler-extras/8.10.1/solr-dataimporthandler-extras-8.10.1.jar.asc (added)
+++ dev/lucene/lucene-solr-8.10.1-RC1-rev2f24e6a49d48a032df1f12e146612f59141727a9/solr/maven/org/apache/solr/solr-dataimporthandler-extras/8.10.1/solr-dataimporthandler-extras-8.10.1.jar.asc Tue Oct 12 22:32:06 2021
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEElyLyX2UAV+JsgDtgptBk2DOzqWkFAmFl4IgACgkQptBk2DOz
+qWlyqw//a1EYMrXbaCbStklFJNcb3a72rwq/eHmFcwwc5qphQzSDiENHJ3osypgi
+/o1cTIGDB6B35eCyUJg8VbxCGA/ukzDKucCDP88OzXYh88yd57vE24D534S+a39a
+YCBNdGg+7vSOZ41AD/q+JzyRmgS45Hfke9mSM6agGm06rfVEofYyi/bxt3yHx1le
+5+vx4nesbFnTuR/CdRxq//sBPOPjH7pMtHIQ42tM2BEPTuqUnnPul/6Si2emMEJE
+ZsblxmGI9TW7JaRLAh+bpF6A5rjb1NwgwLrK3a7eo8gm7FueEIKQ6k5xX1PSlvoG
+Ej89fd+X9wLfUATs5WVNItKcjDhh0Vh0fkSs2mcfLZ4gV/BnOCoaaXBzH1rd7dBJ
+uJROuVh7XQ/6F+Mp0oS79BfyGYvjVlasA2okTVw1dASr5LJjfZSoRRH7lT1CR0HQ
+3oLoF/CmKw3VnmUvauU8Y3Nfxe9dnJI9bmVhqANpT/CTAL9yEXkfvsS1+BwB762i
+nZSyMnT8D6t05HFPYqUXSQmQpksqhNGU8krKx+Eyq0L4N/+E13WLf5cKjLumaN2F
+MMlH+TeJoHgQhnOW9JKTvh5dBKW+bUggIjBDt6LIabMD5D3NVxbXytnvG60Gnz/V
+7WlTsUJ7E0MQovU9z/4lu1kkIZxAU8SQ3Ldkh7D7i8ZhnNp1CFY=
+=iMjt
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-8.10.1-RC1-rev2f24e6a49d48a032df1f12e146612f59141727a9/solr/maven/org/apache/solr/solr-dataimporthandler-extras/8.10.1/solr-dataimporthandler-extras-8.10.1.jar.md5
==============================================================================
--- dev/lucene/lucene-solr-8.10.1-RC1-rev2f24e6a49d48a032df1f12e146612f59141727a9/solr/maven/org/apache/solr/solr-dataimporthandler-extras/8.10.1/solr-dataimporthandler-extras-8.10.1.jar.md5 (added)
+++ dev/lucene/lucene-solr-8.10.1-RC1-rev2f24e6a49d48a032df1f12e146612f59141727a9/solr/maven/org/apache/solr/solr-dataimporthandler-extras/8.10.1/solr-dataimporthandler-extras-8.10.1.jar.md5 Tue Oct 12 22:32:06 2021
@@ -0,0 +1 @@
+cce24535191e064bc1b0486babc30585
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.10.1-RC1-rev2f24e6a49d48a032df1f12e146612f59141727a9/solr/maven/org/apache/solr/solr-dataimporthandler-extras/8.10.1/solr-dataimporthandler-extras-8.10.1.jar.sha1
==============================================================================
--- dev/lucene/lucene-solr-8.10.1-RC1-rev2f24e6a49d48a032df1f12e146612f59141727a9/solr/maven/org/apache/solr/solr-dataimporthandler-extras/8.10.1/solr-dataimporthandler-extras-8.10.1.jar.sha1 (added)
+++ dev/lucene/lucene-solr-8.10.1-RC1-rev2f24e6a49d48a032df1f12e146612f59141727a9/solr/maven/org/apache/solr/solr-dataimporthandler-extras/8.10.1/solr-dataimporthandler-extras-8.10.1.jar.sha1 Tue Oct 12 22:32:06 2021
@@ -0,0 +1 @@
+bca19fbea33b0c888e6ca48f391d34998476c7d3
\ No newline at end of file