You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by ja...@apache.org on 2021/12/14 14:17:18 UTC

svn commit: r51406 [16/18] - in /dev/lucene/lucene-solr-8.11.1-RC1-rev0b002b11819df70783e83ef36b42ed1223c14b50: ./ 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.11.1-RC1-rev0b002b11819df70783e83ef36b42ed1223c14b50/solr/maven/org/apache/solr/solr-langid/8.11.1/solr-langid-8.11.1.pom
==============================================================================
--- dev/lucene/lucene-solr-8.11.1-RC1-rev0b002b11819df70783e83ef36b42ed1223c14b50/solr/maven/org/apache/solr/solr-langid/8.11.1/solr-langid-8.11.1.pom (added)
+++ dev/lucene/lucene-solr-8.11.1-RC1-rev0b002b11819df70783e83ef36b42ed1223c14b50/solr/maven/org/apache/solr/solr-langid/8.11.1/solr-langid-8.11.1.pom Tue Dec 14 14:17:13 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.11.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.11.1-RC1-rev0b002b11819df70783e83ef36b42ed1223c14b50/solr/maven/org/apache/solr/solr-langid/8.11.1/solr-langid-8.11.1.pom.asc
==============================================================================
--- dev/lucene/lucene-solr-8.11.1-RC1-rev0b002b11819df70783e83ef36b42ed1223c14b50/solr/maven/org/apache/solr/solr-langid/8.11.1/solr-langid-8.11.1.pom.asc (added)
+++ dev/lucene/lucene-solr-8.11.1-RC1-rev0b002b11819df70783e83ef36b42ed1223c14b50/solr/maven/org/apache/solr/solr-langid/8.11.1/solr-langid-8.11.1.pom.asc Tue Dec 14 14:17:13 2021
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEELOy/uhgWAVR7ZUuf+oGsikkPU44FAmG4k+4ACgkQ+oGsikkP
+U44+tA/9G82CRSxVrtPeOxanvlzORpsCMjvXhpEbhCVBuJqKf+VOJfuQhmTmOtqW
+VXFM39PNuYS5NFjGovdWABppvvxZnjAnO7OxnbOsXu8jAn1G2fl1lxJGvKVJBKLB
+B8Z9U2hONpYGp4iIhRb9pcdyFy8eQ47FUFxYiIKicuFRcvfKzSbxbYFMlGQjq13b
+1GMNU0jiXj1PAo//TbRntsIDE3HDQwrFtrHkHVtBcemviB9crXLiePCRqalJzVus
+wnQv25M9qG6RT/Wd+FMrSWKN7tCM01q78Q5U4BjhK4/QvBIiB+SF4JXdqPbyMkqA
+bzj780TNWmvpuS/BIUyB5kzUOvlxpUv9jB2Rt2KuWo+7b3v8vkTERDecs1h92lf+
+m4fa17ICRsoHTdnIJU0QUPlli7StugoOwnTgScANPv7UdRaGtTD8iS+/yVyMILoo
+HA3D1ZFh5dJvcHKkh3bI88trJFEvTs/imwryrUVKmPyC8Ng+mvJayIQEhGTgOzzC
+V2hkksrLQ1aOyBTcwGyDZ3I4o/tIqGdXRr/ADSb/P917yPNqn5+vMAaWyEp81QsG
+jbJNsXcva79cfH16KwqrORvSQyW5XG5DtN2tzhtjb5kNWLGzJL5D1toitPtpivVZ
+3jZjxcNAa2KH35kOg8JFthAfNe53ohX+bIgZqmjvV8b/BVXhVVc=
+=l4vA
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-8.11.1-RC1-rev0b002b11819df70783e83ef36b42ed1223c14b50/solr/maven/org/apache/solr/solr-langid/8.11.1/solr-langid-8.11.1.pom.md5
==============================================================================
--- dev/lucene/lucene-solr-8.11.1-RC1-rev0b002b11819df70783e83ef36b42ed1223c14b50/solr/maven/org/apache/solr/solr-langid/8.11.1/solr-langid-8.11.1.pom.md5 (added)
+++ dev/lucene/lucene-solr-8.11.1-RC1-rev0b002b11819df70783e83ef36b42ed1223c14b50/solr/maven/org/apache/solr/solr-langid/8.11.1/solr-langid-8.11.1.pom.md5 Tue Dec 14 14:17:13 2021
@@ -0,0 +1 @@
+62fa77586480d58f462638a5fa2b8b27
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.11.1-RC1-rev0b002b11819df70783e83ef36b42ed1223c14b50/solr/maven/org/apache/solr/solr-langid/8.11.1/solr-langid-8.11.1.pom.sha1
==============================================================================
--- dev/lucene/lucene-solr-8.11.1-RC1-rev0b002b11819df70783e83ef36b42ed1223c14b50/solr/maven/org/apache/solr/solr-langid/8.11.1/solr-langid-8.11.1.pom.sha1 (added)
+++ dev/lucene/lucene-solr-8.11.1-RC1-rev0b002b11819df70783e83ef36b42ed1223c14b50/solr/maven/org/apache/solr/solr-langid/8.11.1/solr-langid-8.11.1.pom.sha1 Tue Dec 14 14:17:13 2021
@@ -0,0 +1 @@
+14b9b1b11fb7cb481ea5411a71d25df0f0c87af6
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.11.1-RC1-rev0b002b11819df70783e83ef36b42ed1223c14b50/solr/maven/org/apache/solr/solr-langid/maven-metadata.xml
==============================================================================
--- dev/lucene/lucene-solr-8.11.1-RC1-rev0b002b11819df70783e83ef36b42ed1223c14b50/solr/maven/org/apache/solr/solr-langid/maven-metadata.xml (added)
+++ dev/lucene/lucene-solr-8.11.1-RC1-rev0b002b11819df70783e83ef36b42ed1223c14b50/solr/maven/org/apache/solr/solr-langid/maven-metadata.xml Tue Dec 14 14:17:13 2021
@@ -0,0 +1,12 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<metadata>
+  <groupId>org.apache.solr</groupId>
+  <artifactId>solr-langid</artifactId>
+  <version>8.11.1</version>
+  <versioning>
+    <versions>
+      <version>8.11.1</version>
+    </versions>
+    <lastUpdated>20211214125347</lastUpdated>
+  </versioning>
+</metadata>

Added: dev/lucene/lucene-solr-8.11.1-RC1-rev0b002b11819df70783e83ef36b42ed1223c14b50/solr/maven/org/apache/solr/solr-langid/maven-metadata.xml.md5
==============================================================================
--- dev/lucene/lucene-solr-8.11.1-RC1-rev0b002b11819df70783e83ef36b42ed1223c14b50/solr/maven/org/apache/solr/solr-langid/maven-metadata.xml.md5 (added)
+++ dev/lucene/lucene-solr-8.11.1-RC1-rev0b002b11819df70783e83ef36b42ed1223c14b50/solr/maven/org/apache/solr/solr-langid/maven-metadata.xml.md5 Tue Dec 14 14:17:13 2021
@@ -0,0 +1 @@
+50166a0251497648f306b530150af503
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.11.1-RC1-rev0b002b11819df70783e83ef36b42ed1223c14b50/solr/maven/org/apache/solr/solr-langid/maven-metadata.xml.sha1
==============================================================================
--- dev/lucene/lucene-solr-8.11.1-RC1-rev0b002b11819df70783e83ef36b42ed1223c14b50/solr/maven/org/apache/solr/solr-langid/maven-metadata.xml.sha1 (added)
+++ dev/lucene/lucene-solr-8.11.1-RC1-rev0b002b11819df70783e83ef36b42ed1223c14b50/solr/maven/org/apache/solr/solr-langid/maven-metadata.xml.sha1 Tue Dec 14 14:17:13 2021
@@ -0,0 +1 @@
+4a35967c0caefbd569943a73ab7c4bd0d547c0fc
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.11.1-RC1-rev0b002b11819df70783e83ef36b42ed1223c14b50/solr/maven/org/apache/solr/solr-ltr/8.11.1/solr-ltr-8.11.1-javadoc.jar
==============================================================================
Binary file - no diff available.

Propchange: dev/lucene/lucene-solr-8.11.1-RC1-rev0b002b11819df70783e83ef36b42ed1223c14b50/solr/maven/org/apache/solr/solr-ltr/8.11.1/solr-ltr-8.11.1-javadoc.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: dev/lucene/lucene-solr-8.11.1-RC1-rev0b002b11819df70783e83ef36b42ed1223c14b50/solr/maven/org/apache/solr/solr-ltr/8.11.1/solr-ltr-8.11.1-javadoc.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-8.11.1-RC1-rev0b002b11819df70783e83ef36b42ed1223c14b50/solr/maven/org/apache/solr/solr-ltr/8.11.1/solr-ltr-8.11.1-javadoc.jar.asc (added)
+++ dev/lucene/lucene-solr-8.11.1-RC1-rev0b002b11819df70783e83ef36b42ed1223c14b50/solr/maven/org/apache/solr/solr-ltr/8.11.1/solr-ltr-8.11.1-javadoc.jar.asc Tue Dec 14 14:17:13 2021
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEELOy/uhgWAVR7ZUuf+oGsikkPU44FAmG4k+4ACgkQ+oGsikkP
+U4651Q//b65Rc0EcGtxE6C4XR7nKCbBdHQy4MnGShDAXvvQuPI+oFYNEQYuSOeVC
+1K/koSTjzmT/d/fcFJVbS+2X2D+sFpGIZJ8iNnCkkLER7whqIgVoIT8HDykAIoKw
+ilE5BmLO8gRLtNY6pnFhRIQ8G1LY4BMlgRxjtWawCx51RDPKiiGE0KAvg5yx21GL
+zz2zgzIRmVMHV9imnJx2/PQubq9Spk0HRHQtpQmmLNVZIePnYIApVYru7HfVloOq
+x9ENY1e69276cqkNnpu2gkQon2PLX4CZP/vrg4WmWGvTxzofzHwqHmxa9v3qdr9W
+ukjitPNH/9CtIdBs4v9PRBR8HbZz5q3p4ghHzTYlqBPtd7xEVDWzAY1XAOZ+GZQA
+5XnaLZBO7oMjE7zMzFEg5mL38xdF6Z1AaqBMtOCNVbpzHAp9HdiSdC6xwNujLxTX
+HQKt8tkCUz/VNPVGhDwJ/DCqxuT3G28G6IaGBjrm2Sa59l2SqF/Salsc3NAgqif5
+P8Idj8pAgLJtSp3uaKBguZrYTfZ2dBqXF300Joe56l60+nHjVkYCqnha7rcG3Z/F
+u6DHF3S9V8F90HU/wt1Tx/F/h22XIndFKjePaeDI5Y+jGkQRsOpbbxzyqqAadWZk
+l83ueBrrVTTMQFG/oVB+trPUKbji0Blj1/85U1Nh7FQ71peK5uw=
+=eRpF
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-8.11.1-RC1-rev0b002b11819df70783e83ef36b42ed1223c14b50/solr/maven/org/apache/solr/solr-ltr/8.11.1/solr-ltr-8.11.1-javadoc.jar.md5
==============================================================================
--- dev/lucene/lucene-solr-8.11.1-RC1-rev0b002b11819df70783e83ef36b42ed1223c14b50/solr/maven/org/apache/solr/solr-ltr/8.11.1/solr-ltr-8.11.1-javadoc.jar.md5 (added)
+++ dev/lucene/lucene-solr-8.11.1-RC1-rev0b002b11819df70783e83ef36b42ed1223c14b50/solr/maven/org/apache/solr/solr-ltr/8.11.1/solr-ltr-8.11.1-javadoc.jar.md5 Tue Dec 14 14:17:13 2021
@@ -0,0 +1 @@
+bb78076e799f629299b65d282ed673bd
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.11.1-RC1-rev0b002b11819df70783e83ef36b42ed1223c14b50/solr/maven/org/apache/solr/solr-ltr/8.11.1/solr-ltr-8.11.1-javadoc.jar.sha1
==============================================================================
--- dev/lucene/lucene-solr-8.11.1-RC1-rev0b002b11819df70783e83ef36b42ed1223c14b50/solr/maven/org/apache/solr/solr-ltr/8.11.1/solr-ltr-8.11.1-javadoc.jar.sha1 (added)
+++ dev/lucene/lucene-solr-8.11.1-RC1-rev0b002b11819df70783e83ef36b42ed1223c14b50/solr/maven/org/apache/solr/solr-ltr/8.11.1/solr-ltr-8.11.1-javadoc.jar.sha1 Tue Dec 14 14:17:13 2021
@@ -0,0 +1 @@
+6555027172d9d9c1d395e21cec560ab9dc61cd5d
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.11.1-RC1-rev0b002b11819df70783e83ef36b42ed1223c14b50/solr/maven/org/apache/solr/solr-ltr/8.11.1/solr-ltr-8.11.1-sources.jar
==============================================================================
Binary file - no diff available.

Propchange: dev/lucene/lucene-solr-8.11.1-RC1-rev0b002b11819df70783e83ef36b42ed1223c14b50/solr/maven/org/apache/solr/solr-ltr/8.11.1/solr-ltr-8.11.1-sources.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: dev/lucene/lucene-solr-8.11.1-RC1-rev0b002b11819df70783e83ef36b42ed1223c14b50/solr/maven/org/apache/solr/solr-ltr/8.11.1/solr-ltr-8.11.1-sources.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-8.11.1-RC1-rev0b002b11819df70783e83ef36b42ed1223c14b50/solr/maven/org/apache/solr/solr-ltr/8.11.1/solr-ltr-8.11.1-sources.jar.asc (added)
+++ dev/lucene/lucene-solr-8.11.1-RC1-rev0b002b11819df70783e83ef36b42ed1223c14b50/solr/maven/org/apache/solr/solr-ltr/8.11.1/solr-ltr-8.11.1-sources.jar.asc Tue Dec 14 14:17:13 2021
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEELOy/uhgWAVR7ZUuf+oGsikkPU44FAmG4k+4ACgkQ+oGsikkP
+U440iA/+JFxmpIZ92HH28vb8OKhNlAz2FX2uf//jqrQEWLxLtMRq0lvj7Idltuz4
+X23a/I8KtprGQ9Rs8a2tu1mMl6FYv2TfkcPJollkfi2hO4C8dHU1EvY8GV7DKTRh
+gFolqJodl+whTFQ6L5ijjlHnOsk67Mz1h9MTPtWXqXgyI1ek5DkicV4ewCKcExQe
+EhqJIkqDjxl6v+vhYC4frea24V1SVbNvX3loj4ShlnIiUfmINOZGql1HWWwYW1By
+INV9VLmmBzd8G+TW9MQ49K7kkXu+BvEZCThADE4NL0zzNnu+vdwVDbIy0CiJokbF
+B9LUXyVfpq22JVtLLiEgHnVUcW8Kli71F7k8NUd4iC2RhgKMPsl/C3YZau5A5YtN
+RLF+0+s+KGmct47LhsP3OXGYPTp04sU0dxHQXkH1//7Qed3LWRuuFKfyveZf1zlX
+Q404Q9g10SrM7z6tUD757tOk+ss6TMQgQbuzTGg5AKcg98cmPv21mMnNi9jVkyoT
+o2i0D6D9LPaq1judbRp/h5GntgaLasGuHpeWzOeUFY7YPwk+NMq/2zXx/5RGVD9d
+g0OVHgWanHviI4U5tdvidMP/gG+8uWuanrE8zOaKuHSLY0ABfpEAWh4V4N0PPZT8
+aLWfsBnzwhz3FDqzuUDbMlk2mWNsvyupcxI9htP+nQvRgtn6aJ8=
+=414C
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-8.11.1-RC1-rev0b002b11819df70783e83ef36b42ed1223c14b50/solr/maven/org/apache/solr/solr-ltr/8.11.1/solr-ltr-8.11.1-sources.jar.md5
==============================================================================
--- dev/lucene/lucene-solr-8.11.1-RC1-rev0b002b11819df70783e83ef36b42ed1223c14b50/solr/maven/org/apache/solr/solr-ltr/8.11.1/solr-ltr-8.11.1-sources.jar.md5 (added)
+++ dev/lucene/lucene-solr-8.11.1-RC1-rev0b002b11819df70783e83ef36b42ed1223c14b50/solr/maven/org/apache/solr/solr-ltr/8.11.1/solr-ltr-8.11.1-sources.jar.md5 Tue Dec 14 14:17:13 2021
@@ -0,0 +1 @@
+7a54f9ef6013b083b168c6093f3893cb
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.11.1-RC1-rev0b002b11819df70783e83ef36b42ed1223c14b50/solr/maven/org/apache/solr/solr-ltr/8.11.1/solr-ltr-8.11.1-sources.jar.sha1
==============================================================================
--- dev/lucene/lucene-solr-8.11.1-RC1-rev0b002b11819df70783e83ef36b42ed1223c14b50/solr/maven/org/apache/solr/solr-ltr/8.11.1/solr-ltr-8.11.1-sources.jar.sha1 (added)
+++ dev/lucene/lucene-solr-8.11.1-RC1-rev0b002b11819df70783e83ef36b42ed1223c14b50/solr/maven/org/apache/solr/solr-ltr/8.11.1/solr-ltr-8.11.1-sources.jar.sha1 Tue Dec 14 14:17:13 2021
@@ -0,0 +1 @@
+539319591342db410c632a40f7dbac09e51f8244
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.11.1-RC1-rev0b002b11819df70783e83ef36b42ed1223c14b50/solr/maven/org/apache/solr/solr-ltr/8.11.1/solr-ltr-8.11.1.jar
==============================================================================
Binary file - no diff available.

Propchange: dev/lucene/lucene-solr-8.11.1-RC1-rev0b002b11819df70783e83ef36b42ed1223c14b50/solr/maven/org/apache/solr/solr-ltr/8.11.1/solr-ltr-8.11.1.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: dev/lucene/lucene-solr-8.11.1-RC1-rev0b002b11819df70783e83ef36b42ed1223c14b50/solr/maven/org/apache/solr/solr-ltr/8.11.1/solr-ltr-8.11.1.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-8.11.1-RC1-rev0b002b11819df70783e83ef36b42ed1223c14b50/solr/maven/org/apache/solr/solr-ltr/8.11.1/solr-ltr-8.11.1.jar.asc (added)
+++ dev/lucene/lucene-solr-8.11.1-RC1-rev0b002b11819df70783e83ef36b42ed1223c14b50/solr/maven/org/apache/solr/solr-ltr/8.11.1/solr-ltr-8.11.1.jar.asc Tue Dec 14 14:17:13 2021
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEELOy/uhgWAVR7ZUuf+oGsikkPU44FAmG4k+4ACgkQ+oGsikkP
+U47AEhAAldeuL+E2ooYFnINXYfDk8xbPZUhZxGA8OyODP6XNWSuB/hmTEqNlj6IX
+YDxFWnMiXZFsMyN5TuIiKxcBxx4a+2oxoGMX4ljRuPvyfAzRSBrVOAl9qqzuz2ow
+xHWYDg+bDKWxBh+lk13z2KN8iwiw2Gq5VKnS1wkipki4MZeio0gPokn6V8X+9WH6
+0N+9C0GgLZxt7M2E3kM/7VXGWLyMsQQjug/PZsUcBi4S70JKN22Xg5hh/QHSkDI5
+oonVMwXey2bEcDYYkKEfeXVLYpCO4O6Pc6+GDI8liANLM6rLRUY2wIuKINnzE864
+Q6pV8PgdWE9xLeCQ9Kf+zvRjSRExEjMMLi8ThInqqiTjW6UcSnL1d0Ki1myOE/ro
+nGs/nudeHHiC5U77fktgzWqwPNXZTqX2JTc3DwvRbcwFDfuMQsfA65QlXnxwLhyZ
+/FYXEsQ9mYB4ZuQKP5fHGKFdadQmZhLvvOGGaoR09flSLBbQQRlIaw2LEcDrVIyD
+m+i0cXblnEo6xF9O+nm3C7nV4gR3kMFQUE+qOxfhuLcDlOywEue9yFmyNTXolt5e
+dfrQLPxwM48P2KWTaY59RkcqpFetEFuJSW9B0UbUpIf+cEDo7dD5d+VjwIrzRQro
+/9GgOb3cpl9sCbjCPPvQHt7bsQ466Ml5Njg0OeNPbLDw8P/5rUE=
+=W21q
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-8.11.1-RC1-rev0b002b11819df70783e83ef36b42ed1223c14b50/solr/maven/org/apache/solr/solr-ltr/8.11.1/solr-ltr-8.11.1.jar.md5
==============================================================================
--- dev/lucene/lucene-solr-8.11.1-RC1-rev0b002b11819df70783e83ef36b42ed1223c14b50/solr/maven/org/apache/solr/solr-ltr/8.11.1/solr-ltr-8.11.1.jar.md5 (added)
+++ dev/lucene/lucene-solr-8.11.1-RC1-rev0b002b11819df70783e83ef36b42ed1223c14b50/solr/maven/org/apache/solr/solr-ltr/8.11.1/solr-ltr-8.11.1.jar.md5 Tue Dec 14 14:17:13 2021
@@ -0,0 +1 @@
+bc3cd0b421ba2a44d13700f82a015e5f
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.11.1-RC1-rev0b002b11819df70783e83ef36b42ed1223c14b50/solr/maven/org/apache/solr/solr-ltr/8.11.1/solr-ltr-8.11.1.jar.sha1
==============================================================================
--- dev/lucene/lucene-solr-8.11.1-RC1-rev0b002b11819df70783e83ef36b42ed1223c14b50/solr/maven/org/apache/solr/solr-ltr/8.11.1/solr-ltr-8.11.1.jar.sha1 (added)
+++ dev/lucene/lucene-solr-8.11.1-RC1-rev0b002b11819df70783e83ef36b42ed1223c14b50/solr/maven/org/apache/solr/solr-ltr/8.11.1/solr-ltr-8.11.1.jar.sha1 Tue Dec 14 14:17:13 2021
@@ -0,0 +1 @@
+71bd199f23331279ece041417371ecce7af1afba
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.11.1-RC1-rev0b002b11819df70783e83ef36b42ed1223c14b50/solr/maven/org/apache/solr/solr-ltr/8.11.1/solr-ltr-8.11.1.pom
==============================================================================
--- dev/lucene/lucene-solr-8.11.1-RC1-rev0b002b11819df70783e83ef36b42ed1223c14b50/solr/maven/org/apache/solr/solr-ltr/8.11.1/solr-ltr-8.11.1.pom (added)
+++ dev/lucene/lucene-solr-8.11.1-RC1-rev0b002b11819df70783e83ef36b42ed1223c14b50/solr/maven/org/apache/solr/solr-ltr/8.11.1/solr-ltr-8.11.1.pom Tue Dec 14 14:17:13 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.11.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.11.1-RC1-rev0b002b11819df70783e83ef36b42ed1223c14b50/solr/maven/org/apache/solr/solr-ltr/8.11.1/solr-ltr-8.11.1.pom.asc
==============================================================================
--- dev/lucene/lucene-solr-8.11.1-RC1-rev0b002b11819df70783e83ef36b42ed1223c14b50/solr/maven/org/apache/solr/solr-ltr/8.11.1/solr-ltr-8.11.1.pom.asc (added)
+++ dev/lucene/lucene-solr-8.11.1-RC1-rev0b002b11819df70783e83ef36b42ed1223c14b50/solr/maven/org/apache/solr/solr-ltr/8.11.1/solr-ltr-8.11.1.pom.asc Tue Dec 14 14:17:13 2021
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEELOy/uhgWAVR7ZUuf+oGsikkPU44FAmG4k+4ACgkQ+oGsikkP
+U46MdA//cxpkIrewGrHZM5Zs8Wr1rNPBM8rHpAIBRn6jvmbxDfSWgnSFGEvOI6lX
+TnTPSrgTFAmDaMVrCUVOS5qhTwHUeSxJgXzMHN3vkLndlJhLbyTEdXsek097k9JY
+VKJnVltROjP1WXsiX/5EtyhnJ2sEWP+kJW/NWop1c1oydoq6BzTZSNjWaC+eaRph
+HNIITysfVSG49+/lipLgNSluE60vm38bZ1o1UCviNSpSReW9XsRo1kQyaNzV8W5F
+skIxClE7dCyMLsEeP7CiMmRY5yMoDRs46kUnpJXzPZ/LHDeQr/tHRoMsJM7uwQir
+gSsIQ/yjzg0dACkD8nj2ybbZhv7294fRoDl19d2TFljXiNjRDSjW30ILC2vlsdBT
+jH/WU2a9GAGTn5sbIbGZ+1XTJivMjL28fl5sPfgrj387N74KEOmouQ7Qtp90WtHm
+swPChUg7ezce8SHBKHhXmPlyuW3a/3F8UzVCNXSXQANM6pZpM9Maud7svY+lx7bk
+J9d9BrYJhjNMCznQsOkvH6oQ3xYhml32oH0DIGO/coKVn/I25UO63ouDpXqqIkiX
+U1zP9eHfvmgYOTgqJbiIjB7/29DfMurWFMVP2c2HkePJF4miFEwHV7jvU6kq8/Ua
+yqIMfEPkFhivmfiw483UNYI7UOsGeLjVFsxkAjff9qgzITiipuQ=
+=nLcR
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-8.11.1-RC1-rev0b002b11819df70783e83ef36b42ed1223c14b50/solr/maven/org/apache/solr/solr-ltr/8.11.1/solr-ltr-8.11.1.pom.md5
==============================================================================
--- dev/lucene/lucene-solr-8.11.1-RC1-rev0b002b11819df70783e83ef36b42ed1223c14b50/solr/maven/org/apache/solr/solr-ltr/8.11.1/solr-ltr-8.11.1.pom.md5 (added)
+++ dev/lucene/lucene-solr-8.11.1-RC1-rev0b002b11819df70783e83ef36b42ed1223c14b50/solr/maven/org/apache/solr/solr-ltr/8.11.1/solr-ltr-8.11.1.pom.md5 Tue Dec 14 14:17:13 2021
@@ -0,0 +1 @@
+a781d00e1a84859587fd8b8db99880af
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.11.1-RC1-rev0b002b11819df70783e83ef36b42ed1223c14b50/solr/maven/org/apache/solr/solr-ltr/8.11.1/solr-ltr-8.11.1.pom.sha1
==============================================================================
--- dev/lucene/lucene-solr-8.11.1-RC1-rev0b002b11819df70783e83ef36b42ed1223c14b50/solr/maven/org/apache/solr/solr-ltr/8.11.1/solr-ltr-8.11.1.pom.sha1 (added)
+++ dev/lucene/lucene-solr-8.11.1-RC1-rev0b002b11819df70783e83ef36b42ed1223c14b50/solr/maven/org/apache/solr/solr-ltr/8.11.1/solr-ltr-8.11.1.pom.sha1 Tue Dec 14 14:17:13 2021
@@ -0,0 +1 @@
+9559f855dfea3d579b6ba2b23c78dff2f089f205
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.11.1-RC1-rev0b002b11819df70783e83ef36b42ed1223c14b50/solr/maven/org/apache/solr/solr-ltr/maven-metadata.xml
==============================================================================
--- dev/lucene/lucene-solr-8.11.1-RC1-rev0b002b11819df70783e83ef36b42ed1223c14b50/solr/maven/org/apache/solr/solr-ltr/maven-metadata.xml (added)
+++ dev/lucene/lucene-solr-8.11.1-RC1-rev0b002b11819df70783e83ef36b42ed1223c14b50/solr/maven/org/apache/solr/solr-ltr/maven-metadata.xml Tue Dec 14 14:17:13 2021
@@ -0,0 +1,12 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<metadata>
+  <groupId>org.apache.solr</groupId>
+  <artifactId>solr-ltr</artifactId>
+  <version>8.11.1</version>
+  <versioning>
+    <versions>
+      <version>8.11.1</version>
+    </versions>
+    <lastUpdated>20211214125350</lastUpdated>
+  </versioning>
+</metadata>

Added: dev/lucene/lucene-solr-8.11.1-RC1-rev0b002b11819df70783e83ef36b42ed1223c14b50/solr/maven/org/apache/solr/solr-ltr/maven-metadata.xml.md5
==============================================================================
--- dev/lucene/lucene-solr-8.11.1-RC1-rev0b002b11819df70783e83ef36b42ed1223c14b50/solr/maven/org/apache/solr/solr-ltr/maven-metadata.xml.md5 (added)
+++ dev/lucene/lucene-solr-8.11.1-RC1-rev0b002b11819df70783e83ef36b42ed1223c14b50/solr/maven/org/apache/solr/solr-ltr/maven-metadata.xml.md5 Tue Dec 14 14:17:13 2021
@@ -0,0 +1 @@
+358f6942ab9a85e1658dc9e447f0dd00
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.11.1-RC1-rev0b002b11819df70783e83ef36b42ed1223c14b50/solr/maven/org/apache/solr/solr-ltr/maven-metadata.xml.sha1
==============================================================================
--- dev/lucene/lucene-solr-8.11.1-RC1-rev0b002b11819df70783e83ef36b42ed1223c14b50/solr/maven/org/apache/solr/solr-ltr/maven-metadata.xml.sha1 (added)
+++ dev/lucene/lucene-solr-8.11.1-RC1-rev0b002b11819df70783e83ef36b42ed1223c14b50/solr/maven/org/apache/solr/solr-ltr/maven-metadata.xml.sha1 Tue Dec 14 14:17:13 2021
@@ -0,0 +1 @@
+4ed6bbabdba041ac24764617ed4cc255050dd2ac
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.11.1-RC1-rev0b002b11819df70783e83ef36b42ed1223c14b50/solr/maven/org/apache/solr/solr-parent/8.11.1/solr-parent-8.11.1.pom
==============================================================================
--- dev/lucene/lucene-solr-8.11.1-RC1-rev0b002b11819df70783e83ef36b42ed1223c14b50/solr/maven/org/apache/solr/solr-parent/8.11.1/solr-parent-8.11.1.pom (added)
+++ dev/lucene/lucene-solr-8.11.1-RC1-rev0b002b11819df70783e83ef36b42ed1223c14b50/solr/maven/org/apache/solr/solr-parent/8.11.1/solr-parent-8.11.1.pom Tue Dec 14 14:17:13 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.11.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.11.1-RC1-rev0b002b11819df70783e83ef36b42ed1223c14b50/solr/maven/org/apache/solr/solr-parent/8.11.1/solr-parent-8.11.1.pom.asc
==============================================================================
--- dev/lucene/lucene-solr-8.11.1-RC1-rev0b002b11819df70783e83ef36b42ed1223c14b50/solr/maven/org/apache/solr/solr-parent/8.11.1/solr-parent-8.11.1.pom.asc (added)
+++ dev/lucene/lucene-solr-8.11.1-RC1-rev0b002b11819df70783e83ef36b42ed1223c14b50/solr/maven/org/apache/solr/solr-parent/8.11.1/solr-parent-8.11.1.pom.asc Tue Dec 14 14:17:13 2021
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEELOy/uhgWAVR7ZUuf+oGsikkPU44FAmG4k+4ACgkQ+oGsikkP
+U47flA//XhHjtfnOotQ6EZm9MdgOg8PvY2lFqE0EkuKAZvAGJPWJ7A9CbB2CWbwz
+Tl9avE0B6lLt/jdA1iqRe5fl8JVAV2GYEQEuujIdCABF0hmCa0vTMaMpRbq6Mizf
+uCeU7wNR4xnQpciu4l7PPLUCoMBf30wg8Kc5hHqnq7BpkYb3Vw+EEvMqkvz1udCm
+Pli2sa7Yb3DLx7tp8UShx3bOMWgG460sflPpuraBJ+CzA09m0ytP9m451rQbdqDM
+Yruz/8PPr28AKsSEUKMaS7QPQea6spRyOL0AMFKsOyM4HmXrJBMiFsRIMwt7b6W8
+doKu+WgzCmzlGSavur7yVUYD3gWk85ggiUpDefZfluRbRkNAYBr2zTPwyQkWOqP4
+eSNCZcpgnJzeoCrPWuKTUmjS4ykNC3ImSrej5C5gu5SOwU0PUZh+xJDVzXpm/OmW
+Wq+CnuEmnowy1MLabomp2OwsWzSCkklrfwzirLxnY8hLX1Bx6q3rJZ1Amq8h2Bfl
++JGSYVyd0v58JdGYBBcIYtZuzL/3oK/1g5LgCUR8vULkRHMIq8OAXGrt2VqJ3mhz
+pKJkKDDC3t0mCCpQmp4JU4w+Hzn9WXqxtlpR/zqNF7CY1+7YmYU/tf+A2RNWZ7SS
+BmQ1S1+pjKcTAv0O5gp9qDY/jdokkCS7IyyVq3p5Lykql2K/mz8=
+=Pnxc
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-8.11.1-RC1-rev0b002b11819df70783e83ef36b42ed1223c14b50/solr/maven/org/apache/solr/solr-parent/8.11.1/solr-parent-8.11.1.pom.md5
==============================================================================
--- dev/lucene/lucene-solr-8.11.1-RC1-rev0b002b11819df70783e83ef36b42ed1223c14b50/solr/maven/org/apache/solr/solr-parent/8.11.1/solr-parent-8.11.1.pom.md5 (added)
+++ dev/lucene/lucene-solr-8.11.1-RC1-rev0b002b11819df70783e83ef36b42ed1223c14b50/solr/maven/org/apache/solr/solr-parent/8.11.1/solr-parent-8.11.1.pom.md5 Tue Dec 14 14:17:13 2021
@@ -0,0 +1 @@
+15a3183b97d303dc9f3e52525b1c41e9
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.11.1-RC1-rev0b002b11819df70783e83ef36b42ed1223c14b50/solr/maven/org/apache/solr/solr-parent/8.11.1/solr-parent-8.11.1.pom.sha1
==============================================================================
--- dev/lucene/lucene-solr-8.11.1-RC1-rev0b002b11819df70783e83ef36b42ed1223c14b50/solr/maven/org/apache/solr/solr-parent/8.11.1/solr-parent-8.11.1.pom.sha1 (added)
+++ dev/lucene/lucene-solr-8.11.1-RC1-rev0b002b11819df70783e83ef36b42ed1223c14b50/solr/maven/org/apache/solr/solr-parent/8.11.1/solr-parent-8.11.1.pom.sha1 Tue Dec 14 14:17:13 2021
@@ -0,0 +1 @@
+ac61cbc86a545595306c59f0b6f1bf747cc783b9
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.11.1-RC1-rev0b002b11819df70783e83ef36b42ed1223c14b50/solr/maven/org/apache/solr/solr-parent/maven-metadata.xml
==============================================================================
--- dev/lucene/lucene-solr-8.11.1-RC1-rev0b002b11819df70783e83ef36b42ed1223c14b50/solr/maven/org/apache/solr/solr-parent/maven-metadata.xml (added)
+++ dev/lucene/lucene-solr-8.11.1-RC1-rev0b002b11819df70783e83ef36b42ed1223c14b50/solr/maven/org/apache/solr/solr-parent/maven-metadata.xml Tue Dec 14 14:17:13 2021
@@ -0,0 +1,12 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<metadata>
+  <groupId>org.apache.solr</groupId>
+  <artifactId>solr-parent</artifactId>
+  <version>8.11.1</version>
+  <versioning>
+    <versions>
+      <version>8.11.1</version>
+    </versions>
+    <lastUpdated>20211214125318</lastUpdated>
+  </versioning>
+</metadata>

Added: dev/lucene/lucene-solr-8.11.1-RC1-rev0b002b11819df70783e83ef36b42ed1223c14b50/solr/maven/org/apache/solr/solr-parent/maven-metadata.xml.md5
==============================================================================
--- dev/lucene/lucene-solr-8.11.1-RC1-rev0b002b11819df70783e83ef36b42ed1223c14b50/solr/maven/org/apache/solr/solr-parent/maven-metadata.xml.md5 (added)
+++ dev/lucene/lucene-solr-8.11.1-RC1-rev0b002b11819df70783e83ef36b42ed1223c14b50/solr/maven/org/apache/solr/solr-parent/maven-metadata.xml.md5 Tue Dec 14 14:17:13 2021
@@ -0,0 +1 @@
+2d9f6c02a6d23eed5a2e932ca5515130
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.11.1-RC1-rev0b002b11819df70783e83ef36b42ed1223c14b50/solr/maven/org/apache/solr/solr-parent/maven-metadata.xml.sha1
==============================================================================
--- dev/lucene/lucene-solr-8.11.1-RC1-rev0b002b11819df70783e83ef36b42ed1223c14b50/solr/maven/org/apache/solr/solr-parent/maven-metadata.xml.sha1 (added)
+++ dev/lucene/lucene-solr-8.11.1-RC1-rev0b002b11819df70783e83ef36b42ed1223c14b50/solr/maven/org/apache/solr/solr-parent/maven-metadata.xml.sha1 Tue Dec 14 14:17:13 2021
@@ -0,0 +1 @@
+68d34cb65c4413a5ca7c4a0e5da9967cccef2062
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.11.1-RC1-rev0b002b11819df70783e83ef36b42ed1223c14b50/solr/maven/org/apache/solr/solr-prometheus-exporter/8.11.1/solr-prometheus-exporter-8.11.1-javadoc.jar
==============================================================================
Binary file - no diff available.

Propchange: dev/lucene/lucene-solr-8.11.1-RC1-rev0b002b11819df70783e83ef36b42ed1223c14b50/solr/maven/org/apache/solr/solr-prometheus-exporter/8.11.1/solr-prometheus-exporter-8.11.1-javadoc.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: dev/lucene/lucene-solr-8.11.1-RC1-rev0b002b11819df70783e83ef36b42ed1223c14b50/solr/maven/org/apache/solr/solr-prometheus-exporter/8.11.1/solr-prometheus-exporter-8.11.1-javadoc.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-8.11.1-RC1-rev0b002b11819df70783e83ef36b42ed1223c14b50/solr/maven/org/apache/solr/solr-prometheus-exporter/8.11.1/solr-prometheus-exporter-8.11.1-javadoc.jar.asc (added)
+++ dev/lucene/lucene-solr-8.11.1-RC1-rev0b002b11819df70783e83ef36b42ed1223c14b50/solr/maven/org/apache/solr/solr-prometheus-exporter/8.11.1/solr-prometheus-exporter-8.11.1-javadoc.jar.asc Tue Dec 14 14:17:13 2021
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEELOy/uhgWAVR7ZUuf+oGsikkPU44FAmG4k+8ACgkQ+oGsikkP
+U45hww//aQ1Hjzkg26cxHgwplNSuHkrxX+AvEsC5whU4lO9USZjLnQcmlhz3XggB
+tX/PyLcx17FJgNSuYQSi05kzX3uLaSkF5fGQWd0AC2xopKDf44y/+KN38od2DBPn
+PnIwDwRU5OM0V3KGmjRbWJZIa3NwLZu0LQ0vE+1/lZc1Z6PlvKoqmOZGHTg5uUKl
+pG/pQCuinffcHk6CnlpCohf98u4LBmyobyDQOOr+sURSMPQbne3y7Q467XQjrPKg
+WVTfYzohPoV0ZPYDSs0S0a5SQ7K3RKrFivo7yYeM+2lg+1AWrsonPJrmq9nQz2Hr
+Di003iooInVcWGY8DlF8lDEyPdibDLDlB5iS6D/RDl5zPOaCnuEpA6DHd0wJ3Yrs
+ADPfd/B02kUCRQVm0MXhD9a6Rneo+zbGHF2yMlQiwesHHPqXRz+Ewf36ZpK9NXbV
+lrq0uIR5pPpu7DT3abf9aR2gCwBe9iav4YPJQ5rVAliarQPdokC1faG+V5+zKhCL
+i9lf+jmRu8mK0NxQ56+RXPIy1EgSyWpwV3m2X2cagQaSCBQrU1psmGI7OnRrd9/U
+TZtSD5w9tT6uECpxw4U29DmU+pHRQQaTeU3mjW5sTllOsUhR/8IiOXzKIoK2lZRV
+n3X27UaR21ReGyGExMAnj1B2qqR1btNFnVoWxKisbmP84H/mrBo=
+=h8gx
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-8.11.1-RC1-rev0b002b11819df70783e83ef36b42ed1223c14b50/solr/maven/org/apache/solr/solr-prometheus-exporter/8.11.1/solr-prometheus-exporter-8.11.1-javadoc.jar.md5
==============================================================================
--- dev/lucene/lucene-solr-8.11.1-RC1-rev0b002b11819df70783e83ef36b42ed1223c14b50/solr/maven/org/apache/solr/solr-prometheus-exporter/8.11.1/solr-prometheus-exporter-8.11.1-javadoc.jar.md5 (added)
+++ dev/lucene/lucene-solr-8.11.1-RC1-rev0b002b11819df70783e83ef36b42ed1223c14b50/solr/maven/org/apache/solr/solr-prometheus-exporter/8.11.1/solr-prometheus-exporter-8.11.1-javadoc.jar.md5 Tue Dec 14 14:17:13 2021
@@ -0,0 +1 @@
+a76a105ee3f0967ecc9983a19e9aba9f
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.11.1-RC1-rev0b002b11819df70783e83ef36b42ed1223c14b50/solr/maven/org/apache/solr/solr-prometheus-exporter/8.11.1/solr-prometheus-exporter-8.11.1-javadoc.jar.sha1
==============================================================================
--- dev/lucene/lucene-solr-8.11.1-RC1-rev0b002b11819df70783e83ef36b42ed1223c14b50/solr/maven/org/apache/solr/solr-prometheus-exporter/8.11.1/solr-prometheus-exporter-8.11.1-javadoc.jar.sha1 (added)
+++ dev/lucene/lucene-solr-8.11.1-RC1-rev0b002b11819df70783e83ef36b42ed1223c14b50/solr/maven/org/apache/solr/solr-prometheus-exporter/8.11.1/solr-prometheus-exporter-8.11.1-javadoc.jar.sha1 Tue Dec 14 14:17:13 2021
@@ -0,0 +1 @@
+977817a3999c1f3191900cbdc178f8c8379e4549
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.11.1-RC1-rev0b002b11819df70783e83ef36b42ed1223c14b50/solr/maven/org/apache/solr/solr-prometheus-exporter/8.11.1/solr-prometheus-exporter-8.11.1-sources.jar
==============================================================================
Binary file - no diff available.

Propchange: dev/lucene/lucene-solr-8.11.1-RC1-rev0b002b11819df70783e83ef36b42ed1223c14b50/solr/maven/org/apache/solr/solr-prometheus-exporter/8.11.1/solr-prometheus-exporter-8.11.1-sources.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: dev/lucene/lucene-solr-8.11.1-RC1-rev0b002b11819df70783e83ef36b42ed1223c14b50/solr/maven/org/apache/solr/solr-prometheus-exporter/8.11.1/solr-prometheus-exporter-8.11.1-sources.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-8.11.1-RC1-rev0b002b11819df70783e83ef36b42ed1223c14b50/solr/maven/org/apache/solr/solr-prometheus-exporter/8.11.1/solr-prometheus-exporter-8.11.1-sources.jar.asc (added)
+++ dev/lucene/lucene-solr-8.11.1-RC1-rev0b002b11819df70783e83ef36b42ed1223c14b50/solr/maven/org/apache/solr/solr-prometheus-exporter/8.11.1/solr-prometheus-exporter-8.11.1-sources.jar.asc Tue Dec 14 14:17:13 2021
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEELOy/uhgWAVR7ZUuf+oGsikkPU44FAmG4k+8ACgkQ+oGsikkP
+U44OIA/7BBbIpHCcZ2I1/FyCQsrnnaeHce5BiXAx1eHKFbVQfGhmPmg6m2tlzcIV
+Vzj8IyGnu36HAPXa6k2aZ4eOUd4tBrZbayLTQWva/KIdixFuGKpkYCVDXizO/nS1
+2UO1fuw6PzOfsYtKGsEgVL96vONHhRl2EbPevRjGHhQOgAxMexq6bshObVwcmVh0
+EYrr/DqZez2xnd044s/c07Sbf3GIzPQtruIBq83bsAg9jRtoen7a7Fzr/D454kIi
+qmtVJY+8lKNSbS0X3q38Hejy79E/4C7ddLkJ9qrlFtsyKQSEJAygml8OBlkGZC6L
+7R2GlG5i8GivVw9P/Ekvr2lHPAOidIGkaC+5DesioOFhan1/qogA85sP9xtSe3lS
+5W6HASc5PpDmjodkM8VE4a2Y1HYoHKvaW5++ZZBzBT0qN5LzRl+OhG92qhsit5te
+1chCDhPcQ867MQVypHpWy0Il3MMcCsrFpA8JdiyJ+QUK+0N1PF2tKha8JFgJgqqR
+RxezEAly9Mhzr1USz+HOQ09fK2ehBbTi4TIT4buu2aKnYBKm0mZ8jS5/j46vqJz/
+PU+y9civQqzZO1wZvsZf/mF6sK+PBH5KUyAyFILY6fV8o8u3J2w97lz4ujdEqPWW
+8sL1t6uwrABBNueUFGQgbOOfedFxyAQpoJgxMnCP8vFI6s/hZwU=
+=e/7S
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-8.11.1-RC1-rev0b002b11819df70783e83ef36b42ed1223c14b50/solr/maven/org/apache/solr/solr-prometheus-exporter/8.11.1/solr-prometheus-exporter-8.11.1-sources.jar.md5
==============================================================================
--- dev/lucene/lucene-solr-8.11.1-RC1-rev0b002b11819df70783e83ef36b42ed1223c14b50/solr/maven/org/apache/solr/solr-prometheus-exporter/8.11.1/solr-prometheus-exporter-8.11.1-sources.jar.md5 (added)
+++ dev/lucene/lucene-solr-8.11.1-RC1-rev0b002b11819df70783e83ef36b42ed1223c14b50/solr/maven/org/apache/solr/solr-prometheus-exporter/8.11.1/solr-prometheus-exporter-8.11.1-sources.jar.md5 Tue Dec 14 14:17:13 2021
@@ -0,0 +1 @@
+7dd258fc23719ce56d409ef0e560a141
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.11.1-RC1-rev0b002b11819df70783e83ef36b42ed1223c14b50/solr/maven/org/apache/solr/solr-prometheus-exporter/8.11.1/solr-prometheus-exporter-8.11.1-sources.jar.sha1
==============================================================================
--- dev/lucene/lucene-solr-8.11.1-RC1-rev0b002b11819df70783e83ef36b42ed1223c14b50/solr/maven/org/apache/solr/solr-prometheus-exporter/8.11.1/solr-prometheus-exporter-8.11.1-sources.jar.sha1 (added)
+++ dev/lucene/lucene-solr-8.11.1-RC1-rev0b002b11819df70783e83ef36b42ed1223c14b50/solr/maven/org/apache/solr/solr-prometheus-exporter/8.11.1/solr-prometheus-exporter-8.11.1-sources.jar.sha1 Tue Dec 14 14:17:13 2021
@@ -0,0 +1 @@
+be7fd688d42dc5a0d8aabcb405da92b937ffa70c
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.11.1-RC1-rev0b002b11819df70783e83ef36b42ed1223c14b50/solr/maven/org/apache/solr/solr-prometheus-exporter/8.11.1/solr-prometheus-exporter-8.11.1.jar
==============================================================================
Binary file - no diff available.

Propchange: dev/lucene/lucene-solr-8.11.1-RC1-rev0b002b11819df70783e83ef36b42ed1223c14b50/solr/maven/org/apache/solr/solr-prometheus-exporter/8.11.1/solr-prometheus-exporter-8.11.1.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: dev/lucene/lucene-solr-8.11.1-RC1-rev0b002b11819df70783e83ef36b42ed1223c14b50/solr/maven/org/apache/solr/solr-prometheus-exporter/8.11.1/solr-prometheus-exporter-8.11.1.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-8.11.1-RC1-rev0b002b11819df70783e83ef36b42ed1223c14b50/solr/maven/org/apache/solr/solr-prometheus-exporter/8.11.1/solr-prometheus-exporter-8.11.1.jar.asc (added)
+++ dev/lucene/lucene-solr-8.11.1-RC1-rev0b002b11819df70783e83ef36b42ed1223c14b50/solr/maven/org/apache/solr/solr-prometheus-exporter/8.11.1/solr-prometheus-exporter-8.11.1.jar.asc Tue Dec 14 14:17:13 2021
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEELOy/uhgWAVR7ZUuf+oGsikkPU44FAmG4k+8ACgkQ+oGsikkP
+U47yYg/+NXNFv9aOrVefhtEFIIrQydi8GDcOYax6LABJDlAm+llR9B5t1s5Cb2GX
+wzLQyeVE4vQjZllvSNalCC3nDoKhzg5dJV5i8eEN8BqnAc1w3jHVtAYeEMWfBwe1
+GEH2z0TZtWH54SuXhjNMsNCXTT7Ps+ntcFsthbABRegXepdqudu6hNGAQ67Usn8f
+EOEPbtMC+wsQ94QxMStXiSe1SClNRt5Rs7he/XUv6eekaZdMRZnx8aHFp/r5sDgI
+Ul6nwID+iyxB3rK/AyC58MzJ8bgEhcrm1yG3J1Y6U7ROHr0rkeZZmKx/p1h8WFM9
+clyZWRAvlVYFz0q5LR3FjNfkse9QnwZ1SgFgonTi4GjtdVo9SYNbVI6TBtxNpnhj
+3+pJp/8h7V0DeB83gBU3EZx7Zxkx6UY0fjZBwi2PMsPUgk35PlKfr416P+K+DmRn
+PMFx29ck+lWyntOGqmpYUWqnkNPwatblxq6I9UmSmhwqkjBtr/K+WZq4cwS+4AbT
+cHV1MJVWt9MkJKIoX3WVkxUxk7GSEETEQfLit2ElIBnTAzXq/ZvNJaNzcc0RuaWy
+oAQcOKq0cw3u5oMCKho1JsAQX9h1uvquLy2zUCpRaAStAciCX7e0nxuXb+qQKnI5
+V/fikHKuzGPbiV7Lo/w0nUEFkIhpm9e8GwYBJIYqx8CGnuB42cc=
+=Pygq
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-8.11.1-RC1-rev0b002b11819df70783e83ef36b42ed1223c14b50/solr/maven/org/apache/solr/solr-prometheus-exporter/8.11.1/solr-prometheus-exporter-8.11.1.jar.md5
==============================================================================
--- dev/lucene/lucene-solr-8.11.1-RC1-rev0b002b11819df70783e83ef36b42ed1223c14b50/solr/maven/org/apache/solr/solr-prometheus-exporter/8.11.1/solr-prometheus-exporter-8.11.1.jar.md5 (added)
+++ dev/lucene/lucene-solr-8.11.1-RC1-rev0b002b11819df70783e83ef36b42ed1223c14b50/solr/maven/org/apache/solr/solr-prometheus-exporter/8.11.1/solr-prometheus-exporter-8.11.1.jar.md5 Tue Dec 14 14:17:13 2021
@@ -0,0 +1 @@
+ac6cd81caa0ae3381c34a6668ae705a1
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.11.1-RC1-rev0b002b11819df70783e83ef36b42ed1223c14b50/solr/maven/org/apache/solr/solr-prometheus-exporter/8.11.1/solr-prometheus-exporter-8.11.1.jar.sha1
==============================================================================
--- dev/lucene/lucene-solr-8.11.1-RC1-rev0b002b11819df70783e83ef36b42ed1223c14b50/solr/maven/org/apache/solr/solr-prometheus-exporter/8.11.1/solr-prometheus-exporter-8.11.1.jar.sha1 (added)
+++ dev/lucene/lucene-solr-8.11.1-RC1-rev0b002b11819df70783e83ef36b42ed1223c14b50/solr/maven/org/apache/solr/solr-prometheus-exporter/8.11.1/solr-prometheus-exporter-8.11.1.jar.sha1 Tue Dec 14 14:17:13 2021
@@ -0,0 +1 @@
+149b011136adc9e679e7c09d87961c705af821cf
\ No newline at end of file