You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by jp...@apache.org on 2021/11/09 18:44:34 UTC

svn commit: r50856 [16/18] - in /dev/lucene/lucene-solr-8.11.0-RC1-reve912fdd5b632267a9088507a2a6bcbc75108f381: ./ 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.0-RC1-reve912fdd5b632267a9088507a2a6bcbc75108f381/solr/maven/org/apache/solr/solr-langid/8.11.0/solr-langid-8.11.0.pom
==============================================================================
--- dev/lucene/lucene-solr-8.11.0-RC1-reve912fdd5b632267a9088507a2a6bcbc75108f381/solr/maven/org/apache/solr/solr-langid/8.11.0/solr-langid-8.11.0.pom (added)
+++ dev/lucene/lucene-solr-8.11.0-RC1-reve912fdd5b632267a9088507a2a6bcbc75108f381/solr/maven/org/apache/solr/solr-langid/8.11.0/solr-langid-8.11.0.pom Tue Nov  9 18:44:31 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.0</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.0-RC1-reve912fdd5b632267a9088507a2a6bcbc75108f381/solr/maven/org/apache/solr/solr-langid/8.11.0/solr-langid-8.11.0.pom.asc
==============================================================================
--- dev/lucene/lucene-solr-8.11.0-RC1-reve912fdd5b632267a9088507a2a6bcbc75108f381/solr/maven/org/apache/solr/solr-langid/8.11.0/solr-langid-8.11.0.pom.asc (added)
+++ dev/lucene/lucene-solr-8.11.0-RC1-reve912fdd5b632267a9088507a2a6bcbc75108f381/solr/maven/org/apache/solr/solr-langid/8.11.0/solr-langid-8.11.0.pom.asc Tue Nov  9 18:44:31 2021
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEE5uIf/NzqFMlZEOplBRoPr3a8ZQcFAmGKc4kACgkQBRoPr3a8
+ZQdAbQ/9EIPZ0/s7C1wN02lKJ9JKKeh0orTyL3arl5o6DIeC5g3I9LKYTDpRT6i2
+Gerfc6chmhebQjs5I86dMwfk3WfxVvbJ4sPj7ErEaP1aEtv3Lt/MhIDiqgOnmLI5
+aCHV+D4+bZKi3B0bEZcG+U7CHlmkvR5/JCLYzOMQA5mymt/8+oazxmrNkx60Km4d
+xfB/gUGVSIYQmtOHRjPkTBNMZoaa850EdM4Pj2GDAV3xi4+y1CG4oGf4ODHwKEtY
+wlCLqL9pct3GRtANlo7CcFKe3ynUivIbUgkBef2imeTCQxyfX67vreOG7lxyjUQ8
+ZraAvy0rR6ar8cwoJbDxGejSmmxENSuau17YCfluPu7CHHrOSxjqKLZ/h0Gr785r
+S1dCEkoEGoieMOK/Tf9Uz5Z6RzlI0TFv7TZZPmBG6i4x7ZeUM7BMWMETFMLa0+x/
+OtnkGrH93SCIWu6/qB38AzUBQzq77DzuI2quebMKRq0hV4ge7W39M43BfdxUxXkj
+x9aABvmuUzsW7QKFJ3ZkZYKy+vmReUmdoYMBy7Ugy4RRO7gQyQpU6mXiUc4Udyc6
+04YBlgaG55q28QZ3l3dG25YHfFjcWK2VeN2GOoVUeRckWZzIxCQN8PEM7Ylovy1/
++2rcZ7P8GGs+xC8A189PKM+7W2VSCS1GeNJHrHC6yxHhD9IZ96g=
+=FpFy
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-8.11.0-RC1-reve912fdd5b632267a9088507a2a6bcbc75108f381/solr/maven/org/apache/solr/solr-langid/8.11.0/solr-langid-8.11.0.pom.md5
==============================================================================
--- dev/lucene/lucene-solr-8.11.0-RC1-reve912fdd5b632267a9088507a2a6bcbc75108f381/solr/maven/org/apache/solr/solr-langid/8.11.0/solr-langid-8.11.0.pom.md5 (added)
+++ dev/lucene/lucene-solr-8.11.0-RC1-reve912fdd5b632267a9088507a2a6bcbc75108f381/solr/maven/org/apache/solr/solr-langid/8.11.0/solr-langid-8.11.0.pom.md5 Tue Nov  9 18:44:31 2021
@@ -0,0 +1 @@
+432165a804cf29cc8b7c85cac7021dff
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.11.0-RC1-reve912fdd5b632267a9088507a2a6bcbc75108f381/solr/maven/org/apache/solr/solr-langid/8.11.0/solr-langid-8.11.0.pom.sha1
==============================================================================
--- dev/lucene/lucene-solr-8.11.0-RC1-reve912fdd5b632267a9088507a2a6bcbc75108f381/solr/maven/org/apache/solr/solr-langid/8.11.0/solr-langid-8.11.0.pom.sha1 (added)
+++ dev/lucene/lucene-solr-8.11.0-RC1-reve912fdd5b632267a9088507a2a6bcbc75108f381/solr/maven/org/apache/solr/solr-langid/8.11.0/solr-langid-8.11.0.pom.sha1 Tue Nov  9 18:44:31 2021
@@ -0,0 +1 @@
+04ef9eab44630fa1fe03292e9f823f35241e6a81
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.11.0-RC1-reve912fdd5b632267a9088507a2a6bcbc75108f381/solr/maven/org/apache/solr/solr-langid/maven-metadata.xml
==============================================================================
--- dev/lucene/lucene-solr-8.11.0-RC1-reve912fdd5b632267a9088507a2a6bcbc75108f381/solr/maven/org/apache/solr/solr-langid/maven-metadata.xml (added)
+++ dev/lucene/lucene-solr-8.11.0-RC1-reve912fdd5b632267a9088507a2a6bcbc75108f381/solr/maven/org/apache/solr/solr-langid/maven-metadata.xml Tue Nov  9 18:44:31 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.0</version>
+  <versioning>
+    <versions>
+      <version>8.11.0</version>
+    </versions>
+    <lastUpdated>20211109131101</lastUpdated>
+  </versioning>
+</metadata>

Added: dev/lucene/lucene-solr-8.11.0-RC1-reve912fdd5b632267a9088507a2a6bcbc75108f381/solr/maven/org/apache/solr/solr-langid/maven-metadata.xml.md5
==============================================================================
--- dev/lucene/lucene-solr-8.11.0-RC1-reve912fdd5b632267a9088507a2a6bcbc75108f381/solr/maven/org/apache/solr/solr-langid/maven-metadata.xml.md5 (added)
+++ dev/lucene/lucene-solr-8.11.0-RC1-reve912fdd5b632267a9088507a2a6bcbc75108f381/solr/maven/org/apache/solr/solr-langid/maven-metadata.xml.md5 Tue Nov  9 18:44:31 2021
@@ -0,0 +1 @@
+701f5ba9ba0a7139a7564e9a923adba5
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.11.0-RC1-reve912fdd5b632267a9088507a2a6bcbc75108f381/solr/maven/org/apache/solr/solr-langid/maven-metadata.xml.sha1
==============================================================================
--- dev/lucene/lucene-solr-8.11.0-RC1-reve912fdd5b632267a9088507a2a6bcbc75108f381/solr/maven/org/apache/solr/solr-langid/maven-metadata.xml.sha1 (added)
+++ dev/lucene/lucene-solr-8.11.0-RC1-reve912fdd5b632267a9088507a2a6bcbc75108f381/solr/maven/org/apache/solr/solr-langid/maven-metadata.xml.sha1 Tue Nov  9 18:44:31 2021
@@ -0,0 +1 @@
+ee6cf1e589ae8c8f2de177b5c869a327620956ac
\ No newline at end of file

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

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

Added: dev/lucene/lucene-solr-8.11.0-RC1-reve912fdd5b632267a9088507a2a6bcbc75108f381/solr/maven/org/apache/solr/solr-ltr/8.11.0/solr-ltr-8.11.0-javadoc.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-8.11.0-RC1-reve912fdd5b632267a9088507a2a6bcbc75108f381/solr/maven/org/apache/solr/solr-ltr/8.11.0/solr-ltr-8.11.0-javadoc.jar.asc (added)
+++ dev/lucene/lucene-solr-8.11.0-RC1-reve912fdd5b632267a9088507a2a6bcbc75108f381/solr/maven/org/apache/solr/solr-ltr/8.11.0/solr-ltr-8.11.0-javadoc.jar.asc Tue Nov  9 18:44:31 2021
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEE5uIf/NzqFMlZEOplBRoPr3a8ZQcFAmGKc4oACgkQBRoPr3a8
+ZQcP2hAAjhlmtUeLKF+78rrpw4c4e7codAXtKEyz77zweka1+Asyeu4I02G5Y7jJ
+5vxhgYKpE6U4hyE2JAeS7PbBly0n5zmUb8ddZW8LYXDv/GIZYTO7VMcKHJh7WdbX
+kvkBuFjt4TQsp7uTulzyNRhJ14hxhONQql3OcbcoRMtJL+7MEl2MCISUcg0kfEAi
+c8pJwYisGwWE4maWclc5qhOxESVmtlGV01IAcelRfc+RKNhNze6Qllv7WFKjUmpP
+8JriDCH3MZ5HGaLK24XtfWTONe54UY4atKxooxvZVOMhCITLEvZsDAXgBb1hTTOQ
+c0Zn00bOI0dxs8Lss9RW4Mxg3MNkJpvexinj/YUzUVSl0Ffrtr5yRhIgH04/Q0EF
+uFkNSX7duj7m5Sm2OUDEyg4apwIF+dvF/ULxnLuT1LWv6ve3l0CHbv7q/LrSy213
+8rWKV4t0w1NH1mZ28cekrLcr3Q2BTKDud+MmYx7Z9VL79MGrbR5mwUdUyStX9ZQS
+JVjQjf5O7JKZZV4IPqJcCsOlnK33AhVXfRNJCZaTgvQR6seYyUXasivvqeSum9TQ
+YK1PBQMP3fJ3o7zkekqD2ml04ae3ZZPgO6tj0/YAW4Mx5pc6dCP7TMhHUgsZN90j
+eEax708O3VQNVVLkrp1/6xv8mRn2nqXrRg2133MyTiliId7fogA=
+=7L0u
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-8.11.0-RC1-reve912fdd5b632267a9088507a2a6bcbc75108f381/solr/maven/org/apache/solr/solr-ltr/8.11.0/solr-ltr-8.11.0-javadoc.jar.md5
==============================================================================
--- dev/lucene/lucene-solr-8.11.0-RC1-reve912fdd5b632267a9088507a2a6bcbc75108f381/solr/maven/org/apache/solr/solr-ltr/8.11.0/solr-ltr-8.11.0-javadoc.jar.md5 (added)
+++ dev/lucene/lucene-solr-8.11.0-RC1-reve912fdd5b632267a9088507a2a6bcbc75108f381/solr/maven/org/apache/solr/solr-ltr/8.11.0/solr-ltr-8.11.0-javadoc.jar.md5 Tue Nov  9 18:44:31 2021
@@ -0,0 +1 @@
+2ea1a0a9228e07bef21e3eae98d6d778
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.11.0-RC1-reve912fdd5b632267a9088507a2a6bcbc75108f381/solr/maven/org/apache/solr/solr-ltr/8.11.0/solr-ltr-8.11.0-javadoc.jar.sha1
==============================================================================
--- dev/lucene/lucene-solr-8.11.0-RC1-reve912fdd5b632267a9088507a2a6bcbc75108f381/solr/maven/org/apache/solr/solr-ltr/8.11.0/solr-ltr-8.11.0-javadoc.jar.sha1 (added)
+++ dev/lucene/lucene-solr-8.11.0-RC1-reve912fdd5b632267a9088507a2a6bcbc75108f381/solr/maven/org/apache/solr/solr-ltr/8.11.0/solr-ltr-8.11.0-javadoc.jar.sha1 Tue Nov  9 18:44:31 2021
@@ -0,0 +1 @@
+a68c211538e3ecb0eac8fa1925498e8ea83376cd
\ No newline at end of file

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

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

Added: dev/lucene/lucene-solr-8.11.0-RC1-reve912fdd5b632267a9088507a2a6bcbc75108f381/solr/maven/org/apache/solr/solr-ltr/8.11.0/solr-ltr-8.11.0-sources.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-8.11.0-RC1-reve912fdd5b632267a9088507a2a6bcbc75108f381/solr/maven/org/apache/solr/solr-ltr/8.11.0/solr-ltr-8.11.0-sources.jar.asc (added)
+++ dev/lucene/lucene-solr-8.11.0-RC1-reve912fdd5b632267a9088507a2a6bcbc75108f381/solr/maven/org/apache/solr/solr-ltr/8.11.0/solr-ltr-8.11.0-sources.jar.asc Tue Nov  9 18:44:31 2021
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEE5uIf/NzqFMlZEOplBRoPr3a8ZQcFAmGKc4sACgkQBRoPr3a8
+ZQdUwxAA18d5eE1VxDuT/9L/H5T0UIHwFESEhrjsCE38dEHDYD/9oojQPPq1zBON
+AB0Vi4UOxTg00+j1VaJgVWY06deKBqpDUlDQvuEYeV/VIvkn21IHVdICnb4k7X9j
+IeAR4FtGULGkpw/vIMUqI3df8slxQZaOpUveGH5noSJiz6HzEmLeWxP/R8dewpJi
+eccdtGTnWDO1wYkX9upwobQSfciMYklj0I3w2OVdoHHNP+ASg5TbS1/YjBFQyQXn
+s9V6DStXwc8j/fNbzSRUsY6dLBLZQZ/qZi0wq/RwdCSL3Zhr4h9ulNRRylEkoPzb
+WkZn8aa4F4X6K+WK5Cc253VxasOW6nZa6U3QbKGoG4tUgKfaBM9iE/nDwX/zQYet
+rE0AlxjCCTvlDiwaimyK8MT3lZPjhtrmxd/pZL3giInjOp7xZJ+DOaAsSpuQwDQq
++inzIaGjMyWvVHXznc0+o2LeClA70Hxfi4EyYfkq6bBaU+6cQumnU3WWhtxuE2du
+9Q0/dDiKrOr0meImh29vp5y7QpIlACn05TQb8aMh1hgD/KElZWqiaPSV7zhi36uz
+U7mlvcmHtO6ZibvwMjhRBK96FBs2Uwa/vgeMpp9Gd1NYVSh2NjDRXaCc74+y6mA3
+l7iTYaAt6H5pgu9RtKCyM+E5HEXgxYMOzPmu7izRC8AC9fZN6kc=
+=M/O6
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-8.11.0-RC1-reve912fdd5b632267a9088507a2a6bcbc75108f381/solr/maven/org/apache/solr/solr-ltr/8.11.0/solr-ltr-8.11.0-sources.jar.md5
==============================================================================
--- dev/lucene/lucene-solr-8.11.0-RC1-reve912fdd5b632267a9088507a2a6bcbc75108f381/solr/maven/org/apache/solr/solr-ltr/8.11.0/solr-ltr-8.11.0-sources.jar.md5 (added)
+++ dev/lucene/lucene-solr-8.11.0-RC1-reve912fdd5b632267a9088507a2a6bcbc75108f381/solr/maven/org/apache/solr/solr-ltr/8.11.0/solr-ltr-8.11.0-sources.jar.md5 Tue Nov  9 18:44:31 2021
@@ -0,0 +1 @@
+583839a7ab996521b99688abd9eb18ad
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.11.0-RC1-reve912fdd5b632267a9088507a2a6bcbc75108f381/solr/maven/org/apache/solr/solr-ltr/8.11.0/solr-ltr-8.11.0-sources.jar.sha1
==============================================================================
--- dev/lucene/lucene-solr-8.11.0-RC1-reve912fdd5b632267a9088507a2a6bcbc75108f381/solr/maven/org/apache/solr/solr-ltr/8.11.0/solr-ltr-8.11.0-sources.jar.sha1 (added)
+++ dev/lucene/lucene-solr-8.11.0-RC1-reve912fdd5b632267a9088507a2a6bcbc75108f381/solr/maven/org/apache/solr/solr-ltr/8.11.0/solr-ltr-8.11.0-sources.jar.sha1 Tue Nov  9 18:44:31 2021
@@ -0,0 +1 @@
+4f6ed82eeb68333a7d7c348190bc182ab5feeb32
\ No newline at end of file

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

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

Added: dev/lucene/lucene-solr-8.11.0-RC1-reve912fdd5b632267a9088507a2a6bcbc75108f381/solr/maven/org/apache/solr/solr-ltr/8.11.0/solr-ltr-8.11.0.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-8.11.0-RC1-reve912fdd5b632267a9088507a2a6bcbc75108f381/solr/maven/org/apache/solr/solr-ltr/8.11.0/solr-ltr-8.11.0.jar.asc (added)
+++ dev/lucene/lucene-solr-8.11.0-RC1-reve912fdd5b632267a9088507a2a6bcbc75108f381/solr/maven/org/apache/solr/solr-ltr/8.11.0/solr-ltr-8.11.0.jar.asc Tue Nov  9 18:44:31 2021
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEE5uIf/NzqFMlZEOplBRoPr3a8ZQcFAmGKc4sACgkQBRoPr3a8
+ZQdsBxAAjFZoyfuNLJHG5kvi0qEM1fv1VFdC4k5hZBipe6tXnk8KJ4h+Qsnxc3R8
+0reO8Fias0rqIDxX2lhFZW7fJY05JZJX1XSoj29Ts3UuRBY3vT7BgnUMYQYWA6wI
+jFjBjoQpLkrVaPQZqaLeBJcYPuhBK0BXFaiuhz5josKoIvJLtkUO7Pyy0QOr0NWS
+m0ZARdmphsxwXs5Q7IV4sXeju+TuWc4A+FmuBVjQMyT0c6KjrIbMOdws47xPwEzR
+yQBNeYTF3VqZDw0CxFQwtHZQ5GwhgL3uRxN5UrapMU5megiqwyDkm01UP+qycm5t
+aClcze0FjyG74TBrQxylTW+h/Phxs1HqOuslhb8tx9iyNDc1ncbkzjpeU0PlX8xw
+UGg5afKKyDgOUpldInAtn7jnMJl4lfLoayfy/0mrNKtIfPlQffO6cvjImOuapWr+
+1KVw4ohRUYU7NW1uogZxUAjB5GDIkIM7FbWrRKKlwaVpKFnAsM5uW3QvmehzuIB8
+33SI+f+Y/qgx+89+m5fDIwhmmZJSK1Meu581qUAlFjB/A0pwALGSzfdql/tivLmC
+dd5LKa91mpm+BKQawgP7Rxrm4ARG7OTNoFomPsCE3lWIF8ZrTDuv+C5Jemfy5joi
+2ty4qHYeB8CtDFlqHBxe2H8QZQdRp5qrz2j7M6mgh731JtFz8ro=
+=WihU
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-8.11.0-RC1-reve912fdd5b632267a9088507a2a6bcbc75108f381/solr/maven/org/apache/solr/solr-ltr/8.11.0/solr-ltr-8.11.0.jar.md5
==============================================================================
--- dev/lucene/lucene-solr-8.11.0-RC1-reve912fdd5b632267a9088507a2a6bcbc75108f381/solr/maven/org/apache/solr/solr-ltr/8.11.0/solr-ltr-8.11.0.jar.md5 (added)
+++ dev/lucene/lucene-solr-8.11.0-RC1-reve912fdd5b632267a9088507a2a6bcbc75108f381/solr/maven/org/apache/solr/solr-ltr/8.11.0/solr-ltr-8.11.0.jar.md5 Tue Nov  9 18:44:31 2021
@@ -0,0 +1 @@
+e110d5efe09b086c4a10479e8b30b7a6
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.11.0-RC1-reve912fdd5b632267a9088507a2a6bcbc75108f381/solr/maven/org/apache/solr/solr-ltr/8.11.0/solr-ltr-8.11.0.jar.sha1
==============================================================================
--- dev/lucene/lucene-solr-8.11.0-RC1-reve912fdd5b632267a9088507a2a6bcbc75108f381/solr/maven/org/apache/solr/solr-ltr/8.11.0/solr-ltr-8.11.0.jar.sha1 (added)
+++ dev/lucene/lucene-solr-8.11.0-RC1-reve912fdd5b632267a9088507a2a6bcbc75108f381/solr/maven/org/apache/solr/solr-ltr/8.11.0/solr-ltr-8.11.0.jar.sha1 Tue Nov  9 18:44:31 2021
@@ -0,0 +1 @@
+d295dabbd7900819e4f90c9e245ad5a84010b5bb
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.11.0-RC1-reve912fdd5b632267a9088507a2a6bcbc75108f381/solr/maven/org/apache/solr/solr-ltr/8.11.0/solr-ltr-8.11.0.pom
==============================================================================
--- dev/lucene/lucene-solr-8.11.0-RC1-reve912fdd5b632267a9088507a2a6bcbc75108f381/solr/maven/org/apache/solr/solr-ltr/8.11.0/solr-ltr-8.11.0.pom (added)
+++ dev/lucene/lucene-solr-8.11.0-RC1-reve912fdd5b632267a9088507a2a6bcbc75108f381/solr/maven/org/apache/solr/solr-ltr/8.11.0/solr-ltr-8.11.0.pom Tue Nov  9 18:44:31 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.0</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.0-RC1-reve912fdd5b632267a9088507a2a6bcbc75108f381/solr/maven/org/apache/solr/solr-ltr/8.11.0/solr-ltr-8.11.0.pom.asc
==============================================================================
--- dev/lucene/lucene-solr-8.11.0-RC1-reve912fdd5b632267a9088507a2a6bcbc75108f381/solr/maven/org/apache/solr/solr-ltr/8.11.0/solr-ltr-8.11.0.pom.asc (added)
+++ dev/lucene/lucene-solr-8.11.0-RC1-reve912fdd5b632267a9088507a2a6bcbc75108f381/solr/maven/org/apache/solr/solr-ltr/8.11.0/solr-ltr-8.11.0.pom.asc Tue Nov  9 18:44:31 2021
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEE5uIf/NzqFMlZEOplBRoPr3a8ZQcFAmGKc4wACgkQBRoPr3a8
+ZQfZ8Q//QamGLzFFusA3wcDbU02LwuRkwlCyVlI/zjHAokeAQn2aEWSEbw3Intsn
+8bBR+GAeOyzZBZRVbrocdkEfNfQtRf5cblqgooeb71DuRnZ/cNy62C4n1I+948oF
+GMFkby3Pqnt+ApoPqSfq97MBWE5veS8q/ECjv+PiXG1/QnpcVQ0E/vcmD0KQ0z3r
+zoWHvOFZ0qG3a4JpepKA5uGxSFjYa/fHB7cWfXePXri1plIpZQns9en3/b0Ftbbv
+2Cuivv9oR61RrfSW8T54KgLOWx+ae24aaGHkVJmsHlP3CJiO2ur69ru2+W/bHGux
+w2uf2pSPxPz0qCB2RZudwXpxEvpOdH8+1uBxOG8/aU+kRPQyVA577Vq3B4DcTshl
+g98JXFJI5Ud+jIa7PBf0EP/VkUQXwvMtV1BmPYrP248RqtarjjytLcLFyzY+Fg1j
+jVHt/kJOlEMqcfq9Fex5zDRe/D8VHma0GF0A0ZjfzB/rjWdtTuSUYlbzzAXosvTY
+yDPjLbhHU5meOoxlG55X4H/tDGBKyB2wTm6b0kluPreQn9qlQO4TrSUUIC3viIoz
+KaUun1kO7c7BHU+VHHC+qdRKnQoggBp9+Idp6h6x3sE85GiKBWYi7pZrbcWedTX/
+exM0dMpTBjOvLTFEL1YLl5+NUak44+vCKSmvjIN71lYqKwzQcjg=
+=hQYk
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-8.11.0-RC1-reve912fdd5b632267a9088507a2a6bcbc75108f381/solr/maven/org/apache/solr/solr-ltr/8.11.0/solr-ltr-8.11.0.pom.md5
==============================================================================
--- dev/lucene/lucene-solr-8.11.0-RC1-reve912fdd5b632267a9088507a2a6bcbc75108f381/solr/maven/org/apache/solr/solr-ltr/8.11.0/solr-ltr-8.11.0.pom.md5 (added)
+++ dev/lucene/lucene-solr-8.11.0-RC1-reve912fdd5b632267a9088507a2a6bcbc75108f381/solr/maven/org/apache/solr/solr-ltr/8.11.0/solr-ltr-8.11.0.pom.md5 Tue Nov  9 18:44:31 2021
@@ -0,0 +1 @@
+0c691aa45bee880388de986430391601
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.11.0-RC1-reve912fdd5b632267a9088507a2a6bcbc75108f381/solr/maven/org/apache/solr/solr-ltr/8.11.0/solr-ltr-8.11.0.pom.sha1
==============================================================================
--- dev/lucene/lucene-solr-8.11.0-RC1-reve912fdd5b632267a9088507a2a6bcbc75108f381/solr/maven/org/apache/solr/solr-ltr/8.11.0/solr-ltr-8.11.0.pom.sha1 (added)
+++ dev/lucene/lucene-solr-8.11.0-RC1-reve912fdd5b632267a9088507a2a6bcbc75108f381/solr/maven/org/apache/solr/solr-ltr/8.11.0/solr-ltr-8.11.0.pom.sha1 Tue Nov  9 18:44:31 2021
@@ -0,0 +1 @@
+0e90363661a08b7c1d81bb2f59206d41599e591e
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.11.0-RC1-reve912fdd5b632267a9088507a2a6bcbc75108f381/solr/maven/org/apache/solr/solr-ltr/maven-metadata.xml
==============================================================================
--- dev/lucene/lucene-solr-8.11.0-RC1-reve912fdd5b632267a9088507a2a6bcbc75108f381/solr/maven/org/apache/solr/solr-ltr/maven-metadata.xml (added)
+++ dev/lucene/lucene-solr-8.11.0-RC1-reve912fdd5b632267a9088507a2a6bcbc75108f381/solr/maven/org/apache/solr/solr-ltr/maven-metadata.xml Tue Nov  9 18:44:31 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.0</version>
+  <versioning>
+    <versions>
+      <version>8.11.0</version>
+    </versions>
+    <lastUpdated>20211109131103</lastUpdated>
+  </versioning>
+</metadata>

Added: dev/lucene/lucene-solr-8.11.0-RC1-reve912fdd5b632267a9088507a2a6bcbc75108f381/solr/maven/org/apache/solr/solr-ltr/maven-metadata.xml.md5
==============================================================================
--- dev/lucene/lucene-solr-8.11.0-RC1-reve912fdd5b632267a9088507a2a6bcbc75108f381/solr/maven/org/apache/solr/solr-ltr/maven-metadata.xml.md5 (added)
+++ dev/lucene/lucene-solr-8.11.0-RC1-reve912fdd5b632267a9088507a2a6bcbc75108f381/solr/maven/org/apache/solr/solr-ltr/maven-metadata.xml.md5 Tue Nov  9 18:44:31 2021
@@ -0,0 +1 @@
+95fff1bcf1bbd01d13cdb6f92d242b77
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.11.0-RC1-reve912fdd5b632267a9088507a2a6bcbc75108f381/solr/maven/org/apache/solr/solr-ltr/maven-metadata.xml.sha1
==============================================================================
--- dev/lucene/lucene-solr-8.11.0-RC1-reve912fdd5b632267a9088507a2a6bcbc75108f381/solr/maven/org/apache/solr/solr-ltr/maven-metadata.xml.sha1 (added)
+++ dev/lucene/lucene-solr-8.11.0-RC1-reve912fdd5b632267a9088507a2a6bcbc75108f381/solr/maven/org/apache/solr/solr-ltr/maven-metadata.xml.sha1 Tue Nov  9 18:44:31 2021
@@ -0,0 +1 @@
+f4c92d345bfec22f3a64e8b58a827b2246b69d2b
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.11.0-RC1-reve912fdd5b632267a9088507a2a6bcbc75108f381/solr/maven/org/apache/solr/solr-parent/8.11.0/solr-parent-8.11.0.pom
==============================================================================
--- dev/lucene/lucene-solr-8.11.0-RC1-reve912fdd5b632267a9088507a2a6bcbc75108f381/solr/maven/org/apache/solr/solr-parent/8.11.0/solr-parent-8.11.0.pom (added)
+++ dev/lucene/lucene-solr-8.11.0-RC1-reve912fdd5b632267a9088507a2a6bcbc75108f381/solr/maven/org/apache/solr/solr-parent/8.11.0/solr-parent-8.11.0.pom Tue Nov  9 18:44:31 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.0</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.0-RC1-reve912fdd5b632267a9088507a2a6bcbc75108f381/solr/maven/org/apache/solr/solr-parent/8.11.0/solr-parent-8.11.0.pom.asc
==============================================================================
--- dev/lucene/lucene-solr-8.11.0-RC1-reve912fdd5b632267a9088507a2a6bcbc75108f381/solr/maven/org/apache/solr/solr-parent/8.11.0/solr-parent-8.11.0.pom.asc (added)
+++ dev/lucene/lucene-solr-8.11.0-RC1-reve912fdd5b632267a9088507a2a6bcbc75108f381/solr/maven/org/apache/solr/solr-parent/8.11.0/solr-parent-8.11.0.pom.asc Tue Nov  9 18:44:31 2021
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEE5uIf/NzqFMlZEOplBRoPr3a8ZQcFAmGKc40ACgkQBRoPr3a8
+ZQfXqw/+JaOc0g8FAfn81XIrA24I/PthTJZQEFs8ZtX5wHzeXteHhBCn7OW7mF/r
+7RuTPqcPDcKq1NJhCAUk2r2CeXXnWABrQmlhGIkwG6Ez7Ah2XyU4qgJ/cqJD832C
+DCSOmYkOYmEc0N4kJMo1/mYdkk4VvR03vks8RI7Gecih0ucfkZbNOHv4X9w5xXMZ
+CjoDuPx0TJATtzcRyWDUCeT31QXHDCME1qqapNX6UtmgEztlGpvN16Gyoh2l2O2Z
++WJZEd39v3CFukDgTmGiaa9Ei8905DqIpHNd3BsFzaTXXcWo97o/Xj+rvHTXNfcM
+Cnik0pX1wdYB62UIzPc+HRvAA0jbhKxnCeJhsNkaGsvl5QG+MfLtuKxA7WUmSIeH
+tqozvNN04BmUbAXed9n3kTiJKCwv+gWavTZHfiahx7RYyDignkqjS7EnmqcpQcPw
+qNpTny5MFZIeAsIuNie0B5NCRJmDf2AiICsmoI7ONrNvivW4JyPmfFusaNpsnP97
+4HyPus1ZAWrL6MLiJg/4hDlK5VU2PsTEZp+bXoTbOCckItVHMJmHmp9GY6tChTxv
+u0iJDMQiVQSTLV0YWuFUPXT1W2Oi5mAQS3y20UItBucwzzn8/5V06mLKo6hVIeae
+fcH62YkUXDDeL67xoffCGdTW9WVoGZjgwm3MDW9ErT+g24WE3dg=
+=gXkD
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-8.11.0-RC1-reve912fdd5b632267a9088507a2a6bcbc75108f381/solr/maven/org/apache/solr/solr-parent/8.11.0/solr-parent-8.11.0.pom.md5
==============================================================================
--- dev/lucene/lucene-solr-8.11.0-RC1-reve912fdd5b632267a9088507a2a6bcbc75108f381/solr/maven/org/apache/solr/solr-parent/8.11.0/solr-parent-8.11.0.pom.md5 (added)
+++ dev/lucene/lucene-solr-8.11.0-RC1-reve912fdd5b632267a9088507a2a6bcbc75108f381/solr/maven/org/apache/solr/solr-parent/8.11.0/solr-parent-8.11.0.pom.md5 Tue Nov  9 18:44:31 2021
@@ -0,0 +1 @@
+4ccc130af89e12c5ecdea42bf6583fdd
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.11.0-RC1-reve912fdd5b632267a9088507a2a6bcbc75108f381/solr/maven/org/apache/solr/solr-parent/8.11.0/solr-parent-8.11.0.pom.sha1
==============================================================================
--- dev/lucene/lucene-solr-8.11.0-RC1-reve912fdd5b632267a9088507a2a6bcbc75108f381/solr/maven/org/apache/solr/solr-parent/8.11.0/solr-parent-8.11.0.pom.sha1 (added)
+++ dev/lucene/lucene-solr-8.11.0-RC1-reve912fdd5b632267a9088507a2a6bcbc75108f381/solr/maven/org/apache/solr/solr-parent/8.11.0/solr-parent-8.11.0.pom.sha1 Tue Nov  9 18:44:31 2021
@@ -0,0 +1 @@
+ed417520f3953cf463f2ce6f3a82eaa1f489aab3
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.11.0-RC1-reve912fdd5b632267a9088507a2a6bcbc75108f381/solr/maven/org/apache/solr/solr-parent/maven-metadata.xml
==============================================================================
--- dev/lucene/lucene-solr-8.11.0-RC1-reve912fdd5b632267a9088507a2a6bcbc75108f381/solr/maven/org/apache/solr/solr-parent/maven-metadata.xml (added)
+++ dev/lucene/lucene-solr-8.11.0-RC1-reve912fdd5b632267a9088507a2a6bcbc75108f381/solr/maven/org/apache/solr/solr-parent/maven-metadata.xml Tue Nov  9 18:44:31 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.0</version>
+  <versioning>
+    <versions>
+      <version>8.11.0</version>
+    </versions>
+    <lastUpdated>20211109131036</lastUpdated>
+  </versioning>
+</metadata>

Added: dev/lucene/lucene-solr-8.11.0-RC1-reve912fdd5b632267a9088507a2a6bcbc75108f381/solr/maven/org/apache/solr/solr-parent/maven-metadata.xml.md5
==============================================================================
--- dev/lucene/lucene-solr-8.11.0-RC1-reve912fdd5b632267a9088507a2a6bcbc75108f381/solr/maven/org/apache/solr/solr-parent/maven-metadata.xml.md5 (added)
+++ dev/lucene/lucene-solr-8.11.0-RC1-reve912fdd5b632267a9088507a2a6bcbc75108f381/solr/maven/org/apache/solr/solr-parent/maven-metadata.xml.md5 Tue Nov  9 18:44:31 2021
@@ -0,0 +1 @@
+1d40771c8e62c6b29f023f8cb2dbf6d3
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.11.0-RC1-reve912fdd5b632267a9088507a2a6bcbc75108f381/solr/maven/org/apache/solr/solr-parent/maven-metadata.xml.sha1
==============================================================================
--- dev/lucene/lucene-solr-8.11.0-RC1-reve912fdd5b632267a9088507a2a6bcbc75108f381/solr/maven/org/apache/solr/solr-parent/maven-metadata.xml.sha1 (added)
+++ dev/lucene/lucene-solr-8.11.0-RC1-reve912fdd5b632267a9088507a2a6bcbc75108f381/solr/maven/org/apache/solr/solr-parent/maven-metadata.xml.sha1 Tue Nov  9 18:44:31 2021
@@ -0,0 +1 @@
+77018ed965e606c8ebe1af89f89eca5a50c182cd
\ No newline at end of file

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

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

Added: dev/lucene/lucene-solr-8.11.0-RC1-reve912fdd5b632267a9088507a2a6bcbc75108f381/solr/maven/org/apache/solr/solr-prometheus-exporter/8.11.0/solr-prometheus-exporter-8.11.0-javadoc.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-8.11.0-RC1-reve912fdd5b632267a9088507a2a6bcbc75108f381/solr/maven/org/apache/solr/solr-prometheus-exporter/8.11.0/solr-prometheus-exporter-8.11.0-javadoc.jar.asc (added)
+++ dev/lucene/lucene-solr-8.11.0-RC1-reve912fdd5b632267a9088507a2a6bcbc75108f381/solr/maven/org/apache/solr/solr-prometheus-exporter/8.11.0/solr-prometheus-exporter-8.11.0-javadoc.jar.asc Tue Nov  9 18:44:31 2021
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEE5uIf/NzqFMlZEOplBRoPr3a8ZQcFAmGKc44ACgkQBRoPr3a8
+ZQcMdw//ey6qtNNY8kFH26Wz+HBdwStie2f9MJyiJn3u1zdT4GkzRZSU0WSY3DiW
+gwrqk8e/sEroY9eYYYya0RF0VYBt3CBhmGAMbdcinbAPfqfEUizxE6oPrTNHCjua
+rTffWPySagxGOiYqi42fGzcEWCx//wD/YQOQROrmU1oMZsOFWO565+0d6oJde5j0
+s8rW8NEe4/EOkW23GnneF2k2gvl/f9alSJVEgczGkPaf8qKFCdXq5rW3jVXXClB/
+zbJ5MAQUynKcObn7C4fn+xvlq6gvQunGlyZZ+ynaMtPziCytzhK+4rghEtIieyDR
+MemQYsEACrvrd7lY8/0HHVP7bji537g1IRWirSK7i3pqSEwJkFDGG4z6nD0zsXLL
+H4bZqVkCnyqPsBIYPww/d1yeUsgnuVxZ6H7qZpkDL36F6hff2Mjd/2KDfcnJM4M0
+86yHGvtcaFNnIcaTKfSkMO7JpRZeOl0i/r6ACSGvAaO4wvIB8NVjBYIJ17tn6rer
+ZSYCutlp+H+c4+xSEmaFhMjQ0fOG9pstrD0r8NHpz4d47bCbGXhPS1eP5qHAYrKc
+bQfUiCcfCodjAZjLtRMUKQlQy3NkinLvk9afPEUFh+pyffaVQE9i0qQvfh+cENVX
+zzzowOVT+dUhCKhLopyJF2IBQs8e8mOu1SYB9N5uHNuTpU2QvZw=
+=sH3l
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-8.11.0-RC1-reve912fdd5b632267a9088507a2a6bcbc75108f381/solr/maven/org/apache/solr/solr-prometheus-exporter/8.11.0/solr-prometheus-exporter-8.11.0-javadoc.jar.md5
==============================================================================
--- dev/lucene/lucene-solr-8.11.0-RC1-reve912fdd5b632267a9088507a2a6bcbc75108f381/solr/maven/org/apache/solr/solr-prometheus-exporter/8.11.0/solr-prometheus-exporter-8.11.0-javadoc.jar.md5 (added)
+++ dev/lucene/lucene-solr-8.11.0-RC1-reve912fdd5b632267a9088507a2a6bcbc75108f381/solr/maven/org/apache/solr/solr-prometheus-exporter/8.11.0/solr-prometheus-exporter-8.11.0-javadoc.jar.md5 Tue Nov  9 18:44:31 2021
@@ -0,0 +1 @@
+4864f1f5facf1591583b53d2d6adf8be
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.11.0-RC1-reve912fdd5b632267a9088507a2a6bcbc75108f381/solr/maven/org/apache/solr/solr-prometheus-exporter/8.11.0/solr-prometheus-exporter-8.11.0-javadoc.jar.sha1
==============================================================================
--- dev/lucene/lucene-solr-8.11.0-RC1-reve912fdd5b632267a9088507a2a6bcbc75108f381/solr/maven/org/apache/solr/solr-prometheus-exporter/8.11.0/solr-prometheus-exporter-8.11.0-javadoc.jar.sha1 (added)
+++ dev/lucene/lucene-solr-8.11.0-RC1-reve912fdd5b632267a9088507a2a6bcbc75108f381/solr/maven/org/apache/solr/solr-prometheus-exporter/8.11.0/solr-prometheus-exporter-8.11.0-javadoc.jar.sha1 Tue Nov  9 18:44:31 2021
@@ -0,0 +1 @@
+5b216e790a3459bce9672fb70a4b0f54cebe464d
\ No newline at end of file

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

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

Added: dev/lucene/lucene-solr-8.11.0-RC1-reve912fdd5b632267a9088507a2a6bcbc75108f381/solr/maven/org/apache/solr/solr-prometheus-exporter/8.11.0/solr-prometheus-exporter-8.11.0-sources.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-8.11.0-RC1-reve912fdd5b632267a9088507a2a6bcbc75108f381/solr/maven/org/apache/solr/solr-prometheus-exporter/8.11.0/solr-prometheus-exporter-8.11.0-sources.jar.asc (added)
+++ dev/lucene/lucene-solr-8.11.0-RC1-reve912fdd5b632267a9088507a2a6bcbc75108f381/solr/maven/org/apache/solr/solr-prometheus-exporter/8.11.0/solr-prometheus-exporter-8.11.0-sources.jar.asc Tue Nov  9 18:44:31 2021
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEE5uIf/NzqFMlZEOplBRoPr3a8ZQcFAmGKc44ACgkQBRoPr3a8
+ZQcbDhAAqZHMFEhb7/UF0jdhzR1YLjqbhTdhSj/CuOan6I4aoR5D0hbsD6g0YHif
+MP5RxhljI5pxVbqpTJ/pTG9s9z/GQVZOKQd7fmqMYRClDZAQBXzHGRwiqrvVlWIW
+bJIddjqGt9sBMz3wInqruVJqTG4IG4MZ4UZfat/9yVc+/vYXEtwkwZXaLZPWbSai
+MPKxaQNsRfS7IP3+QcsqbBrnxDTEfOxg+iy4NI6BLHoaAZcrPRbdVvIxEItXLAdr
+Q3YhDJ6ZCyq3k4yOytdNp/WXJ9SPEsLOWk0KM++knxhXCbNcJrj8KbOoo7IzKyXz
+t6gss8Eno7ksHiVt2KMD3jnPJkQ4shXipIO6Ldq1T7Wrjnrh23CzTM9K5R+5L6Cn
+xjwUkNrm0othmUJ6gv+9h37VBgznTZGQ1Yg4S60ZW05oJ5UAPhI1qPW7cMLyds0G
+rOU371jrA6LO/TrOz34lBGKI7rf395h+crMb68z3K5p+3vAfa9SCt0ULvfPIG0FQ
+eqjlKXO+LWTKmVJRDfGf8augTBcY5oNBZYCz1hozajtFt1dWgIqP+42G9yY0K1yF
+Qe5ix+Ozx1eN3WATL+IxIv8hVy9JejAD7CQc+un5Sxuyur85caJSSDcZ5umagpnf
+bGmiaWMsrtA9O6HhVJlyLkxHcixn+dxcCdTAzLgOXZj+XeDU4c0=
+=Ge9d
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-8.11.0-RC1-reve912fdd5b632267a9088507a2a6bcbc75108f381/solr/maven/org/apache/solr/solr-prometheus-exporter/8.11.0/solr-prometheus-exporter-8.11.0-sources.jar.md5
==============================================================================
--- dev/lucene/lucene-solr-8.11.0-RC1-reve912fdd5b632267a9088507a2a6bcbc75108f381/solr/maven/org/apache/solr/solr-prometheus-exporter/8.11.0/solr-prometheus-exporter-8.11.0-sources.jar.md5 (added)
+++ dev/lucene/lucene-solr-8.11.0-RC1-reve912fdd5b632267a9088507a2a6bcbc75108f381/solr/maven/org/apache/solr/solr-prometheus-exporter/8.11.0/solr-prometheus-exporter-8.11.0-sources.jar.md5 Tue Nov  9 18:44:31 2021
@@ -0,0 +1 @@
+f094a534553ca087d43952c5ad79426e
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.11.0-RC1-reve912fdd5b632267a9088507a2a6bcbc75108f381/solr/maven/org/apache/solr/solr-prometheus-exporter/8.11.0/solr-prometheus-exporter-8.11.0-sources.jar.sha1
==============================================================================
--- dev/lucene/lucene-solr-8.11.0-RC1-reve912fdd5b632267a9088507a2a6bcbc75108f381/solr/maven/org/apache/solr/solr-prometheus-exporter/8.11.0/solr-prometheus-exporter-8.11.0-sources.jar.sha1 (added)
+++ dev/lucene/lucene-solr-8.11.0-RC1-reve912fdd5b632267a9088507a2a6bcbc75108f381/solr/maven/org/apache/solr/solr-prometheus-exporter/8.11.0/solr-prometheus-exporter-8.11.0-sources.jar.sha1 Tue Nov  9 18:44:31 2021
@@ -0,0 +1 @@
+c27a9039d867225d863c11adaf45404591b115ca
\ No newline at end of file

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

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

Added: dev/lucene/lucene-solr-8.11.0-RC1-reve912fdd5b632267a9088507a2a6bcbc75108f381/solr/maven/org/apache/solr/solr-prometheus-exporter/8.11.0/solr-prometheus-exporter-8.11.0.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-8.11.0-RC1-reve912fdd5b632267a9088507a2a6bcbc75108f381/solr/maven/org/apache/solr/solr-prometheus-exporter/8.11.0/solr-prometheus-exporter-8.11.0.jar.asc (added)
+++ dev/lucene/lucene-solr-8.11.0-RC1-reve912fdd5b632267a9088507a2a6bcbc75108f381/solr/maven/org/apache/solr/solr-prometheus-exporter/8.11.0/solr-prometheus-exporter-8.11.0.jar.asc Tue Nov  9 18:44:31 2021
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEE5uIf/NzqFMlZEOplBRoPr3a8ZQcFAmGKc48ACgkQBRoPr3a8
+ZQeJGxAAr8bpZTz0/3lpC2o35dP45Ph/abxNvae5u5UoYvQpjBBJcxj01nrRfuLv
+i1PIjAeDtcx8IQrsef5MLJnMkpEV5yQNd5RN8JziyjZ/b8Ymh8GbJBG3+NnfcEdZ
+8b3D8SXvleHOe3GlO3kJLKXoRdUcG+ciLSUCwg5+ks92K2X3QNUmpsWPI7BScPdh
+MUAXwsyRLbcW9FVacQhjbCQrqxamDr037B9U4WZgasqsJVQMlYJBnvOcKJNzhrWZ
+6UUSauaWDj4x87Y1RzpErDQrPCNqbPwpG76JM/Qtr8N8DYWu2V8T8uUCcyQ0IbR6
+9yg5Bwza3EenpLHxvweQ5AwEq1W6+3eRbJsiaNGMLEDWEPxbTCtplwFyiXf9bvfY
+67Z3D37yI4lwQSZo8uhCWGzI2fjxdcALu1Wx+ay6vOUjsOjkoIi+cAeauw+u7HfM
+ioPm9iVdwEEBO4kGYQmXswYg93mhDBw2aMu5XK6hIz9BbfCGp3jXeuqanvjROXzn
+kvCsmDd8NC7VJSeJMVD3egqEPu1y/Ru0aVIWIprCMtJcrTEqgAn405xbuEG1pnR+
+RduBjOA/y8zTpqik3lZnaaZpeIsZ+t4hHLeQDZJrVS37T26gH9zt8P53zT0RzLD4
+BLQLAm84Ll/wPrlDC6i+LvxYg2z38IkcXhK2L2qYWy0TnbQhkxc=
+=mV9f
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-8.11.0-RC1-reve912fdd5b632267a9088507a2a6bcbc75108f381/solr/maven/org/apache/solr/solr-prometheus-exporter/8.11.0/solr-prometheus-exporter-8.11.0.jar.md5
==============================================================================
--- dev/lucene/lucene-solr-8.11.0-RC1-reve912fdd5b632267a9088507a2a6bcbc75108f381/solr/maven/org/apache/solr/solr-prometheus-exporter/8.11.0/solr-prometheus-exporter-8.11.0.jar.md5 (added)
+++ dev/lucene/lucene-solr-8.11.0-RC1-reve912fdd5b632267a9088507a2a6bcbc75108f381/solr/maven/org/apache/solr/solr-prometheus-exporter/8.11.0/solr-prometheus-exporter-8.11.0.jar.md5 Tue Nov  9 18:44:31 2021
@@ -0,0 +1 @@
+7555780244f60d2cedc8e2a826866b80
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.11.0-RC1-reve912fdd5b632267a9088507a2a6bcbc75108f381/solr/maven/org/apache/solr/solr-prometheus-exporter/8.11.0/solr-prometheus-exporter-8.11.0.jar.sha1
==============================================================================
--- dev/lucene/lucene-solr-8.11.0-RC1-reve912fdd5b632267a9088507a2a6bcbc75108f381/solr/maven/org/apache/solr/solr-prometheus-exporter/8.11.0/solr-prometheus-exporter-8.11.0.jar.sha1 (added)
+++ dev/lucene/lucene-solr-8.11.0-RC1-reve912fdd5b632267a9088507a2a6bcbc75108f381/solr/maven/org/apache/solr/solr-prometheus-exporter/8.11.0/solr-prometheus-exporter-8.11.0.jar.sha1 Tue Nov  9 18:44:31 2021
@@ -0,0 +1 @@
+12f489a790a188fbb7482975092bdbd19bcadf4a
\ No newline at end of file