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 [16/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-langid/8.10.1/solr-langid-8.10.1.pom
==============================================================================
--- dev/lucene/lucene-solr-8.10.1-RC1-rev2f24e6a49d48a032df1f12e146612f59141727a9/solr/maven/org/apache/solr/solr-langid/8.10.1/solr-langid-8.10.1.pom (added)
+++ dev/lucene/lucene-solr-8.10.1-RC1-rev2f24e6a49d48a032df1f12e146612f59141727a9/solr/maven/org/apache/solr/solr-langid/8.10.1/solr-langid-8.10.1.pom Tue Oct 12 22:32:06 2021
@@ -0,0 +1,761 @@
+<!--
+  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-langid</artifactId>
+  <packaging>jar</packaging>
+  <name>Apache Solr Language Identifier</name>
+  <description>
+    This module is intended to be used while indexing documents.
+    It is implemented as an UpdateProcessor to be placed in an UpdateChain.
+    Its purpose is to identify language from documents and tag the document with language code.
+  </description>
+  <properties>
+    <module-directory>solr/contrib/langid</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.cybozu.labs</groupId>
+      <artifactId>langdetect</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.arnx</groupId>
+      <artifactId>jsonic</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.opennlp</groupId>
+      <artifactId>opennlp-tools</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-langid/8.10.1/solr-langid-8.10.1.pom.asc
==============================================================================
--- dev/lucene/lucene-solr-8.10.1-RC1-rev2f24e6a49d48a032df1f12e146612f59141727a9/solr/maven/org/apache/solr/solr-langid/8.10.1/solr-langid-8.10.1.pom.asc (added)
+++ dev/lucene/lucene-solr-8.10.1-RC1-rev2f24e6a49d48a032df1f12e146612f59141727a9/solr/maven/org/apache/solr/solr-langid/8.10.1/solr-langid-8.10.1.pom.asc Tue Oct 12 22:32:06 2021
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEElyLyX2UAV+JsgDtgptBk2DOzqWkFAmFl4JEACgkQptBk2DOz
+qWlthBAAlq15I/AmDaUzEfRZuYyZCks4wBT0sszlpVO2YEzGm0NvD/y4mXPC82sN
+l54euBnG/KLvKqgFK0xNwslCJdPahyGlNITvh+qnwISVgsrZwqepG4rcSGv78o88
+HRCevceGGusQ8rgKqrMdiUt5ywEsawDUxpBrwVK0OvetsuyqzN6WndWJv8LLZzSL
+N+oZWdeb+U38FP1H3t0ZWcuKHB+xCSiZKFHHST7Ew5OgAbpCmn2ei0/FIKrxrXOH
+vOwSkH/Pr+QYJa/c2f+ImRNup2uwP3JdvseSBf/grvsdR2OHLg6cdjrMXueWH9em
+ESTZsA7+SsFfQvVyZAMkoQ0WCqsiOx9JdAaaeohDXOBWKVD7Gex8QmipKJwumJCI
+AQu6+qG8gXSYollB4cOgpSFpnxIp4EbvQ38rihuqFn1nPUrFPj6eMSfWIWCog9bT
+rIzujr9vticO36QXWjVr9Dq9Phippm/D4fFpBLKJqnWE1E1eLGZGks6JuaU/thW1
+KpL2UaPAbiCd5dEcewGY4E+ld36MS56G+MmY807Vo3KxsO0iIxAc3jeD9mHwxB4/
+X+vCcchWEJWNP4LHzCqEJTY13ieUuHrBUaoXAW5LvmjSlJqpxwH4ouU03Zwyh8wF
+xhTcb30GvQZMH1E4XRpyWSPYsRdlq92afsBvi+wvrou4LLISkNA=
+=sGbw
+-----END PGP SIGNATURE-----

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

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

Added: dev/lucene/lucene-solr-8.10.1-RC1-rev2f24e6a49d48a032df1f12e146612f59141727a9/solr/maven/org/apache/solr/solr-langid/maven-metadata.xml
==============================================================================
--- dev/lucene/lucene-solr-8.10.1-RC1-rev2f24e6a49d48a032df1f12e146612f59141727a9/solr/maven/org/apache/solr/solr-langid/maven-metadata.xml (added)
+++ dev/lucene/lucene-solr-8.10.1-RC1-rev2f24e6a49d48a032df1f12e146612f59141727a9/solr/maven/org/apache/solr/solr-langid/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-langid</artifactId>
+  <version>8.10.1</version>
+  <versioning>
+    <versions>
+      <version>8.10.1</version>
+    </versions>
+    <lastUpdated>20211012192223</lastUpdated>
+  </versioning>
+</metadata>

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

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

Added: dev/lucene/lucene-solr-8.10.1-RC1-rev2f24e6a49d48a032df1f12e146612f59141727a9/solr/maven/org/apache/solr/solr-ltr/8.10.1/solr-ltr-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-ltr/8.10.1/solr-ltr-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-ltr/8.10.1/solr-ltr-8.10.1-javadoc.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-8.10.1-RC1-rev2f24e6a49d48a032df1f12e146612f59141727a9/solr/maven/org/apache/solr/solr-ltr/8.10.1/solr-ltr-8.10.1-javadoc.jar.asc (added)
+++ dev/lucene/lucene-solr-8.10.1-RC1-rev2f24e6a49d48a032df1f12e146612f59141727a9/solr/maven/org/apache/solr/solr-ltr/8.10.1/solr-ltr-8.10.1-javadoc.jar.asc Tue Oct 12 22:32:06 2021
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEElyLyX2UAV+JsgDtgptBk2DOzqWkFAmFl4JIACgkQptBk2DOz
+qWlChBAAirAYG75Ds1KAt9JClDlGlA6GI6Xeha9rFkMDFaHg35H69pZ/4gh/3mFZ
+l/zKbt/7lxHEY7qCVZtxpsJ5so0AqkWeKJ4+Wj/5K66dZkaWwhk0X2oyLymsAxOQ
+KJmSV3IoUfsTesXnY0Cfn/C1zFBTJ8x5Rv/UlOgmjtwT3bvcHE93rms6n8CMGiiz
+fX0szmLyoWjy3JiV4sQSOLBYFOJY4PFmmxgpAGuZ18T2BXVgmA9Fbfp9jWoNOq1J
+nFBnDd9d1To2WsrujD0qfO5+MhtU4Uc0HI4xCMhaeDaEsYNWoFEIhbnhqqNM+v7F
+pNSO+E5OC+KKCd27D4kkUn5FUri82xnm4igjPH1T+QkXepmaSBNTgUU2NTtZVmEj
+l9kB14WY23Hqm5oGgIr9tEjCR2WG3bvIF+JQsPfEHSM4AKWIlmJ0zAvT06P7rikJ
+Fvu4BZh0h2s9g0RYWNzvATHyyOoRwVwqfPQC6eOrRaTNCVj7xxIFLHg0wgeLPTGf
+bALy+k0huj6mijwNmF9XNTyBuHIANsqbMpMrGtLUVve3/M//vL9nXCUqerQpnXPd
+f2JeLyxo+zVye+BTJ3axP72CZfsoGfm7vvc1iNkgiHLwCsyFwrLMYRMleUNlstpw
+e+nfStsI57zOkb71Igxemc8DgB6JM++IinIMptwwhbaHLLmg6EM=
+=xQAJ
+-----END PGP SIGNATURE-----

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

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

Added: dev/lucene/lucene-solr-8.10.1-RC1-rev2f24e6a49d48a032df1f12e146612f59141727a9/solr/maven/org/apache/solr/solr-ltr/8.10.1/solr-ltr-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-ltr/8.10.1/solr-ltr-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-ltr/8.10.1/solr-ltr-8.10.1-sources.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-8.10.1-RC1-rev2f24e6a49d48a032df1f12e146612f59141727a9/solr/maven/org/apache/solr/solr-ltr/8.10.1/solr-ltr-8.10.1-sources.jar.asc (added)
+++ dev/lucene/lucene-solr-8.10.1-RC1-rev2f24e6a49d48a032df1f12e146612f59141727a9/solr/maven/org/apache/solr/solr-ltr/8.10.1/solr-ltr-8.10.1-sources.jar.asc Tue Oct 12 22:32:06 2021
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEElyLyX2UAV+JsgDtgptBk2DOzqWkFAmFl4JIACgkQptBk2DOz
+qWnsuA/9GiNoFdM5QSd3sdgBvUfEB6jSBEbGbUfKJHyMqUizZh0DDIusgcO0pSny
+yTh6UPNjPSftICF005v+jIHWWf5R4cY1RUddMhTpd1K7KDNNrz4SS3RSdw+pFebx
+pk4+aDdIKHiUv/ICnUrQYo8pc6HWMYPdajljAVu2VhvM2Hxk+YJTtZ4L++zpETZW
+PczhDBqKhwADYTjv4T2Adv6TnGVhdaaQu+xIN32i5/NIXIMRtCgdWePVt8buya6U
+Qc8oT6XqNV+JWwGazXI5QlgVnQI0m2Pr+xQujxC+U97mMmzKNEOj+pyxbwTqwzQW
+6+rX/33DaHBR8KiYkpaSQolMplvbpI14a4HmJKobSttc1c0wV2le2dQR9wVdKrR5
+2anp9q9QZlfLqR/n2/zBKrFOVLLTNZ3tbii1hx5wxuSel5mgxj+Jaeu8TOZU5hyA
+PFBazZ33FVLyFav3yd8ENEtbOq5ol2Ju1tbgKa2YFy/AcrxjZ6rCBd75Gzmlzlj9
+m7E7ed5jms1l1GoqFNL+aUdGS4uq5+yVibXiLW+mBDdotKSZ7RS+4IDp0xD4rY/3
+gKVZWm2vTYenXOUFVaG0shoURTxlefKIIe1N7pXW1f9x3hWUB/5/k3iOx27GTs+e
+ZLDa0XVWHx/ZpiI0UwOF7l9kZcqx7+ykqv/gFOxXmQihSLrSpc4=
+=DgGs
+-----END PGP SIGNATURE-----

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

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

Added: dev/lucene/lucene-solr-8.10.1-RC1-rev2f24e6a49d48a032df1f12e146612f59141727a9/solr/maven/org/apache/solr/solr-ltr/8.10.1/solr-ltr-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-ltr/8.10.1/solr-ltr-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-ltr/8.10.1/solr-ltr-8.10.1.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-8.10.1-RC1-rev2f24e6a49d48a032df1f12e146612f59141727a9/solr/maven/org/apache/solr/solr-ltr/8.10.1/solr-ltr-8.10.1.jar.asc (added)
+++ dev/lucene/lucene-solr-8.10.1-RC1-rev2f24e6a49d48a032df1f12e146612f59141727a9/solr/maven/org/apache/solr/solr-ltr/8.10.1/solr-ltr-8.10.1.jar.asc Tue Oct 12 22:32:06 2021
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEElyLyX2UAV+JsgDtgptBk2DOzqWkFAmFl4JMACgkQptBk2DOz
+qWk9Pg/+Ly0m1e/TiAFp5sPpxFfz8viWXVvfUpy1vwNwtnS4+F+GJk7C1FK9LDbd
+b+WP76iSusB83Rg83wWod2i+WnpnilfRyYpuaRXMgyoGSSxWZQsj1EpK4EnbAcDt
+SkL60tXYCnaZz50dTSH9Kzzv3rlytG6JelJc4TsBhl+bYNZWVTWA7AfGxZsKp/tu
+3zdZ6Q9IZZi7NESVWVCreyAdJNMYanYMpR3Y/SbwygoQI0Azgo5I2VkrRATdNwqY
+tYsVvxMh/vfplcrCmSEve+AhpnOtDZNL/CONOxF4AeVpf5iwhiCJsUFhMk9c6Ptg
+XkQRUZRZaGtDSXEE3N2an/EEcz5j7EcvCGil0FCsvWzu/wvOYJk8DSYF03h9Wh2/
+mkJTf9OQdHP6m7PpYKpc65l22ZuldVfqrOTEWOmcHvbDRqJj8AypCZdg4X7F9H50
+15FaTx2BGBnclRlfkYdhPsOpMZDiEDYPWM4Q/Y4a8DoEQsnGxSROYQgjpCI50ySq
+dmDHplt/944S8OJAvH/RI2WrQlvFmhVi/1bBZf7HNJycHY0gG63V0pq3mcEXNLIS
+t3X+eVHXld+8/n06L2o7sDLegGYKI39IbGym5NxjYWMV1v6UFLTTg7tOekS13Q+C
+j+9KSEMsvhLDxRPySo9ZYOBHiC7YQDE5SefOdfkwIs8Kwgfa1Fw=
+=g4pC
+-----END PGP SIGNATURE-----

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

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

Added: dev/lucene/lucene-solr-8.10.1-RC1-rev2f24e6a49d48a032df1f12e146612f59141727a9/solr/maven/org/apache/solr/solr-ltr/8.10.1/solr-ltr-8.10.1.pom
==============================================================================
--- dev/lucene/lucene-solr-8.10.1-RC1-rev2f24e6a49d48a032df1f12e146612f59141727a9/solr/maven/org/apache/solr/solr-ltr/8.10.1/solr-ltr-8.10.1.pom (added)
+++ dev/lucene/lucene-solr-8.10.1-RC1-rev2f24e6a49d48a032df1f12e146612f59141727a9/solr/maven/org/apache/solr/solr-ltr/8.10.1/solr-ltr-8.10.1.pom Tue Oct 12 22:32:06 2021
@@ -0,0 +1,567 @@
+<!--
+  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-ltr</artifactId>
+  <packaging>jar</packaging>
+  <name>Apache Solr Learning to Rank Package</name>
+  <description>
+    Apache Solr Learning to Rank Package
+  </description>
+  <properties>
+    <module-directory>solr/contrib/ltr</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.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>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-ltr/8.10.1/solr-ltr-8.10.1.pom.asc
==============================================================================
--- dev/lucene/lucene-solr-8.10.1-RC1-rev2f24e6a49d48a032df1f12e146612f59141727a9/solr/maven/org/apache/solr/solr-ltr/8.10.1/solr-ltr-8.10.1.pom.asc (added)
+++ dev/lucene/lucene-solr-8.10.1-RC1-rev2f24e6a49d48a032df1f12e146612f59141727a9/solr/maven/org/apache/solr/solr-ltr/8.10.1/solr-ltr-8.10.1.pom.asc Tue Oct 12 22:32:06 2021
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEElyLyX2UAV+JsgDtgptBk2DOzqWkFAmFl4JMACgkQptBk2DOz
+qWloHQ//TyyNI+EL2sIpvBRRBDrAXuIAjn4KF/ArGono3uD/C69V6hFff7mI3mU4
+kxPkzKk92xhl14zbBTTPXAqwJtyBZSYM0koVVAM8JJD2CCDme5Pj2MimukhZDb+6
+Ct7TvdILTqduJaGhOfPtrtpp99aGMn1uLoBrXICPVVicNCregcSRl7E685Tlb4Lx
+gCJlKi49JstoKQqHWC+Hk3bDAIiio+CYsnhfH3fntnTze7ge4tun+IdfHIITOwXQ
+/nXwUbbhKnQVPVV9DwQZI8+a81h/NO6Mkea/9ZiPADSX3WUPsY/hvBmxUDLnZihY
+7XaWsZwpv5SzEkQxr6z20LTSn73vw9J/+ex3Nplh1NZcUGjuafkZK8uJKvfZWiMR
+xaKMeCpTejgCZ8u5htMieJwlOiRKHsUhlIHGOL63QmF6H4Wcdh/ut9b5lOhp4INV
+tI8NLpdd5+ZZSAlbaf6LOe66QhbdCHMGoxIG43zo0UL90xL3SiP6YX+euC8QO7q7
+4W9jq1vv9JLsh9XdZkF99I4NL1OgloYGjax2HiZTovOJ3pcJj8yj4ES6D+stxWSG
+tHl8idb1JgaRw3u47kNmluEgCORSZZHjbx+yxm82VPw58bnzbnu6N9g1fgoP6lJK
+THqdixRkL9bqac0ERfGl5m0zDUHK6HkbfRzCiYy723h73wTlRhc=
+=DAvk
+-----END PGP SIGNATURE-----

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

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

Added: dev/lucene/lucene-solr-8.10.1-RC1-rev2f24e6a49d48a032df1f12e146612f59141727a9/solr/maven/org/apache/solr/solr-ltr/maven-metadata.xml
==============================================================================
--- dev/lucene/lucene-solr-8.10.1-RC1-rev2f24e6a49d48a032df1f12e146612f59141727a9/solr/maven/org/apache/solr/solr-ltr/maven-metadata.xml (added)
+++ dev/lucene/lucene-solr-8.10.1-RC1-rev2f24e6a49d48a032df1f12e146612f59141727a9/solr/maven/org/apache/solr/solr-ltr/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-ltr</artifactId>
+  <version>8.10.1</version>
+  <versioning>
+    <versions>
+      <version>8.10.1</version>
+    </versions>
+    <lastUpdated>20211012192226</lastUpdated>
+  </versioning>
+</metadata>

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

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

Added: dev/lucene/lucene-solr-8.10.1-RC1-rev2f24e6a49d48a032df1f12e146612f59141727a9/solr/maven/org/apache/solr/solr-parent/8.10.1/solr-parent-8.10.1.pom
==============================================================================
--- dev/lucene/lucene-solr-8.10.1-RC1-rev2f24e6a49d48a032df1f12e146612f59141727a9/solr/maven/org/apache/solr/solr-parent/8.10.1/solr-parent-8.10.1.pom (added)
+++ dev/lucene/lucene-solr-8.10.1-RC1-rev2f24e6a49d48a032df1f12e146612f59141727a9/solr/maven/org/apache/solr/solr-parent/8.10.1/solr-parent-8.10.1.pom Tue Oct 12 22:32:06 2021
@@ -0,0 +1,87 @@
+<!--
+  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.lucene</groupId>
+    <artifactId>lucene-solr-grandparent</artifactId>
+    <version>8.10.1</version>
+    <relativePath>../pom.xml</relativePath>
+  </parent>
+  <groupId>org.apache.solr</groupId>
+  <artifactId>solr-parent</artifactId>
+  <packaging>pom</packaging>
+  <name>Apache Solr parent POM</name>
+  <description>Apache Solr parent POM</description>
+  <modules>
+    <module>core</module>
+    <module>solrj</module>
+    <module>test-framework</module>
+    <module>contrib</module>
+  </modules>
+  <properties>
+    <module-directory>solr</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>
+  <issueManagement>
+    <system>JIRA</system>
+    <url>https://issues.apache.org/jira/browse/SOLR</url>
+  </issueManagement>
+  <mailingLists>
+    <mailingList>
+      <name>Solr User List</name>
+      <subscribe>solr-user-subscribe@lucene.apache.org</subscribe>
+      <unsubscribe>solr-user-unsubscribe@lucene.apache.org</unsubscribe>
+      <archive>
+        https://mail-archives.apache.org/mod_mbox/solr-user/
+      </archive>
+    </mailingList>
+    <mailingList>
+      <name>Java Developer List</name>
+      <subscribe>dev-subscribe@lucene.apache.org</subscribe>
+      <unsubscribe>dev-unsubscribe@lucene.apache.org</unsubscribe>
+      <archive>https://mail-archives.apache.org/mod_mbox/lucene-dev/</archive>
+    </mailingList>
+    <mailingList>
+      <name>Java Commits List</name>
+      <subscribe>commits-subscribe@lucene.apache.org</subscribe>
+      <unsubscribe>commits-unsubscribe@lucene.apache.org</unsubscribe>
+      <archive>
+        https://mail-archives.apache.org/mod_mbox/lucene-java-commits/
+      </archive>
+    </mailingList>
+  </mailingLists>
+  <inceptionYear>2006</inceptionYear>
+  <repositories>
+    <repository>
+      <id>releases.cloudera.com</id>
+      <name>Cloudera Releases</name>
+      <url>https://repository.cloudera.com/artifactory/libs-release-local/</url>
+      <snapshots>
+        <enabled>false</enabled>
+      </snapshots>
+    </repository>
+  </repositories>
+</project>

Added: dev/lucene/lucene-solr-8.10.1-RC1-rev2f24e6a49d48a032df1f12e146612f59141727a9/solr/maven/org/apache/solr/solr-parent/8.10.1/solr-parent-8.10.1.pom.asc
==============================================================================
--- dev/lucene/lucene-solr-8.10.1-RC1-rev2f24e6a49d48a032df1f12e146612f59141727a9/solr/maven/org/apache/solr/solr-parent/8.10.1/solr-parent-8.10.1.pom.asc (added)
+++ dev/lucene/lucene-solr-8.10.1-RC1-rev2f24e6a49d48a032df1f12e146612f59141727a9/solr/maven/org/apache/solr/solr-parent/8.10.1/solr-parent-8.10.1.pom.asc Tue Oct 12 22:32:06 2021
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEElyLyX2UAV+JsgDtgptBk2DOzqWkFAmFl4JQACgkQptBk2DOz
+qWmJ9g//SIGLGept2UKvF9d0Cg8DGho4BkMrDzmbQaAlecEv70J8z77sI+PYK66x
+hhPJRMx6WRk5EiBC0di4NDfuiq4Er3X1jiLwWUwIEeUAgSw/gUJxODVsZHv2XGHx
+kyrAqx4QI8QfWoJgcxLIR79/bnqbg3Bx6d8nT6rebpeFwshvO+TZHePYwkbkSsV6
+l6W27D0wYhmRDOC2yf8+cHD1M5A3APngCv2bJzlSRRtDEdWqNFDCbAQaPPB1c4t0
+6hwWHwJ0+hVSdtBPKK+f6Ww8j7A0AFA7CQFQ5NyPgIpzf20RN2L7XlnzuOU8oreq
+ZbgZ9DhepcnnX8PPk0vsnzzes1ugItMfZKI+8lR83IT9/KZbbSv0i5eIhSejeEEE
+wycujeyhg4wThN7m5h5oRorEFmLZXESE4883w0sM5YtzwLN3/Ooqeoqaz514t62B
++C7GCYEbpzqQZyCPqOMXUlrZ6D1TpidKsW62wwYJf8C1C7tNIFoCwWFCT/0Vaq55
+S0QSr91s5sXVpWKj4f0dZka+vwi93wyHZEGFa8w0jhtNloHE1sGR9lMoKFXDamv8
+2VU42jn/AWncU+nqnEN3xoilwsixzAHhW0vU/dYaAPySd+VtW/SBjPcK/8x05IXJ
+G+LL697P+DKMsDudwnQejLyyvXd1Ih43qcbvLvNf8W1vB2tmk18=
+=UarE
+-----END PGP SIGNATURE-----

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

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

Added: dev/lucene/lucene-solr-8.10.1-RC1-rev2f24e6a49d48a032df1f12e146612f59141727a9/solr/maven/org/apache/solr/solr-parent/maven-metadata.xml
==============================================================================
--- dev/lucene/lucene-solr-8.10.1-RC1-rev2f24e6a49d48a032df1f12e146612f59141727a9/solr/maven/org/apache/solr/solr-parent/maven-metadata.xml (added)
+++ dev/lucene/lucene-solr-8.10.1-RC1-rev2f24e6a49d48a032df1f12e146612f59141727a9/solr/maven/org/apache/solr/solr-parent/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-parent</artifactId>
+  <version>8.10.1</version>
+  <versioning>
+    <versions>
+      <version>8.10.1</version>
+    </versions>
+    <lastUpdated>20211012192146</lastUpdated>
+  </versioning>
+</metadata>

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

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

Added: dev/lucene/lucene-solr-8.10.1-RC1-rev2f24e6a49d48a032df1f12e146612f59141727a9/solr/maven/org/apache/solr/solr-prometheus-exporter/8.10.1/solr-prometheus-exporter-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-prometheus-exporter/8.10.1/solr-prometheus-exporter-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-prometheus-exporter/8.10.1/solr-prometheus-exporter-8.10.1-javadoc.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-8.10.1-RC1-rev2f24e6a49d48a032df1f12e146612f59141727a9/solr/maven/org/apache/solr/solr-prometheus-exporter/8.10.1/solr-prometheus-exporter-8.10.1-javadoc.jar.asc (added)
+++ dev/lucene/lucene-solr-8.10.1-RC1-rev2f24e6a49d48a032df1f12e146612f59141727a9/solr/maven/org/apache/solr/solr-prometheus-exporter/8.10.1/solr-prometheus-exporter-8.10.1-javadoc.jar.asc Tue Oct 12 22:32:06 2021
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEElyLyX2UAV+JsgDtgptBk2DOzqWkFAmFl4JUACgkQptBk2DOz
+qWlGbw//Xl0ljN7dtQ/TDTj+RrGrJ8LGCZKb1QxRVCc1myLhKNsLxC8lo/0KUk2D
+f/nHq3Ehr8EkNIndLq/LnB7DGQFzerfDF5d91OG9Tjk1pimB9HcOGcNwVA7rCK/X
+wujqPcdrNRzFbjJ72/IYLgUXbZ3Fg1pCBU9HfhRNlSilMTX2M6j1dNn7nMwPIZoX
+Ch55vgqJNshAgf2fzPDrf2nQhg7+qV6K/1blQ+hfqUldN4SBSR6CL2LzT8drLsDS
+/0uf14D/H/xgcZdUTAmSrjCVHauz2aIJHlfAp7wVU+CoVh1moYvHkB61oHCWKlq1
+2kGiVIXv3Tx1CEprCUbsMvl76knHeNJR1mPRppbIwwBIS7tqq9XV89JiYm/US9EN
+PJHU+zkueo3FZIQE2ZcjLH+BrzBIeRwT4poAjhFNTEZaYEqp3tL/jeJLh9btSfbK
+7JoOWr16dFftuU1xBS8a7eA1G1UswcU3KAQn7RVQ48r0XShrH0xYJ6qu613vJLqC
+wzNzafnl7WCR7o4A0SZZrX+uhEn2RpzHhp2Uem5cw2WIDkEKsI5squZaR731Cm4S
+2hOvzZQZ6D8EDaKeP8eF0n6/XKc82PXBBN/DsU2ieM6XnTFO8nDPo0LiYmkVpFBL
+LNaghMsxX9vr2Hl5gu65lFvP3k2hoivW0xhyHM96th2WFwdLzqU=
+=Mu36
+-----END PGP SIGNATURE-----

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

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

Added: dev/lucene/lucene-solr-8.10.1-RC1-rev2f24e6a49d48a032df1f12e146612f59141727a9/solr/maven/org/apache/solr/solr-prometheus-exporter/8.10.1/solr-prometheus-exporter-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-prometheus-exporter/8.10.1/solr-prometheus-exporter-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-prometheus-exporter/8.10.1/solr-prometheus-exporter-8.10.1-sources.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-8.10.1-RC1-rev2f24e6a49d48a032df1f12e146612f59141727a9/solr/maven/org/apache/solr/solr-prometheus-exporter/8.10.1/solr-prometheus-exporter-8.10.1-sources.jar.asc (added)
+++ dev/lucene/lucene-solr-8.10.1-RC1-rev2f24e6a49d48a032df1f12e146612f59141727a9/solr/maven/org/apache/solr/solr-prometheus-exporter/8.10.1/solr-prometheus-exporter-8.10.1-sources.jar.asc Tue Oct 12 22:32:06 2021
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEElyLyX2UAV+JsgDtgptBk2DOzqWkFAmFl4JUACgkQptBk2DOz
+qWlLpQ//VrCjnlILVHVcE/m65AD89DTRjYaCuDwf70gNyv2trRdGg9WcX2rNGl5c
++q7sAZMK2Z4eyoOTEVRUYoZdvbPSy09AF0VDN9QAr1XGhhZl2/dVorPCnsHb0kfx
+JyjOgTNtPubkNBlz/LM76+uEMjq4t/6v4pnrnZIui8lkpKpYyrg/ZNApJEsXCKXb
+KSsRxqs3Yp+jJhe9A1j7zDVww5pYDNwuHDa524DgYaT4FUPl5x+LCy3d/FgZL7Q3
+dg6EdYR4AWkcvLQpSIuqnjzbzGSIU1aeo2cv7ruTTsW5IcGlXBrJPaki3MybXi+w
+eRngArEzkfhLFq1cmXAXdu79ZvVddgwWyKWJKC2Mbil8W+61WpLgGFx571zHIshx
+Ht/YbkFcxOqQrO86dKRggFEGQb2CgQeWp89F1iILUeOa2pXXgPynA7XbPOfhcKaQ
+qLOenP0uJlEP7zbd3AaLorsV70LEegQkkGTzE5lj4EZ4YMgDVSmC2HJUytU6q4yQ
+tW21DK7Z4Gg2kFE+45zF2jOKwUseSImRaGWxZIzHCI+gZi3LrPSBKSRNCBejGvFW
+XiWlrFb3vPY8gUZkRXOM8ttVDYi3exZetyh7adnov5ysDxNgDap+VyVbLIlQcFmn
+t0WxAdSbsZwzHPBMHCyHnw7Tmk/i+dpPNxxU5TRMFf/j1ABhctg=
+=dtKU
+-----END PGP SIGNATURE-----

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

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

Added: dev/lucene/lucene-solr-8.10.1-RC1-rev2f24e6a49d48a032df1f12e146612f59141727a9/solr/maven/org/apache/solr/solr-prometheus-exporter/8.10.1/solr-prometheus-exporter-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-prometheus-exporter/8.10.1/solr-prometheus-exporter-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-prometheus-exporter/8.10.1/solr-prometheus-exporter-8.10.1.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-8.10.1-RC1-rev2f24e6a49d48a032df1f12e146612f59141727a9/solr/maven/org/apache/solr/solr-prometheus-exporter/8.10.1/solr-prometheus-exporter-8.10.1.jar.asc (added)
+++ dev/lucene/lucene-solr-8.10.1-RC1-rev2f24e6a49d48a032df1f12e146612f59141727a9/solr/maven/org/apache/solr/solr-prometheus-exporter/8.10.1/solr-prometheus-exporter-8.10.1.jar.asc Tue Oct 12 22:32:06 2021
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEElyLyX2UAV+JsgDtgptBk2DOzqWkFAmFl4JYACgkQptBk2DOz
+qWmzDA//b0+IGObaGfFW9oAdM7LIKtnyZLrHb43Aw2k/LUywMSnU1sPFJL/Ci7lK
+M/ikgqZv8iqawM69kDGW9oZmbkFu4qTDr7/wjhMAvtvdPwuSPhJqbN3vG8tw1gbq
+l01hfaqaCUx2IIdrgDS2xgW0QBXNpOjwR/MfrAVYctfNFBWW0QXwNOI263PFE7eg
+piHLrWen/RRp4xhTgij6kYtA0aOMND+5y8tadJJJbJO7um32SOQCn75u9tup35UI
+nuM6dBY5Ztlv62xS1jrkHtXiGrOty4KNP8UNXZjlo6ztsWa/tGRnoHJXi1tua65x
+6yyEYlShnM6dAOeINa3N6+9i/H8+IbHa4Z6jzIODqtNwnZ8kIJCqSq1H/C91nGFf
+8Ru0m74YUlNzStT1QW1prtahv2gPUkvO7FDZKxUG+z50+CMuinPw2Ib8Gxf09w4Z
+91RbmtMXwJ6h2rvKtYb/CPcvpX0rYfoLu0TaNQrGsIx+ci2QgqSwZG3EBGJcaBfI
+4kYRwc0mCcZlwzdX1ilxp3mBn5FoCESDVc844gvLYiVQSU68QLRBE5mgWmctsBEq
+AUkJszXKOLkFxjjEIzJjsxrIsX4nsfrKbJ4XBcLZRsbkPp3uFLcrtdVeyf9vDvng
+x5VGRdX8HyUoQD11BRO44YjYlcAgPLMO0HYcP1aQSnbSZXPEDIw=
+=BcL3
+-----END PGP SIGNATURE-----

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

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