You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by md...@apache.org on 2022/06/13 18:19:10 UTC

svn commit: r55103 [16/18] - in /dev/lucene/lucene-solr-8.11.2-RC2-rev17dee71932c683e345508113523e764c3e4c80fa: ./ 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.2-RC2-rev17dee71932c683e345508113523e764c3e4c80fa/solr/maven/org/apache/solr/solr-langid/8.11.2/solr-langid-8.11.2.pom
==============================================================================
--- dev/lucene/lucene-solr-8.11.2-RC2-rev17dee71932c683e345508113523e764c3e4c80fa/solr/maven/org/apache/solr/solr-langid/8.11.2/solr-langid-8.11.2.pom (added)
+++ dev/lucene/lucene-solr-8.11.2-RC2-rev17dee71932c683e345508113523e764c3e4c80fa/solr/maven/org/apache/solr/solr-langid/8.11.2/solr-langid-8.11.2.pom Mon Jun 13 18:19:05 2022
@@ -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.2</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.2-RC2-rev17dee71932c683e345508113523e764c3e4c80fa/solr/maven/org/apache/solr/solr-langid/8.11.2/solr-langid-8.11.2.pom.asc
==============================================================================
--- dev/lucene/lucene-solr-8.11.2-RC2-rev17dee71932c683e345508113523e764c3e4c80fa/solr/maven/org/apache/solr/solr-langid/8.11.2/solr-langid-8.11.2.pom.asc (added)
+++ dev/lucene/lucene-solr-8.11.2-RC2-rev17dee71932c683e345508113523e764c3e4c80fa/solr/maven/org/apache/solr/solr-langid/8.11.2/solr-langid-8.11.2.pom.asc Mon Jun 13 18:19:05 2022
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCAAdFiEEhu25wzuFFyKOiKj5PkjAxu82K54FAmKnZkIACgkQPkjAxu82
+K54ibg//cNnlzXndz78DO5PWcTAGSACD3tJ+6TOyiB+LV3oppJRvQ2VAAzRUz1Wo
+rnH1mt7gXjf4CUglVpoh7qHEmpKXaqgFSpdDuXsaFR3QIrsIsNzPm5YwZ6f7A0mv
+sM+sMIqYeYMHwcC6WZ9qjMtBzTS6f+uvrCUjYuS03/kbd2hVx5lBVtTIqnt+6kL7
+TZP9pqbsy835zKCas40tbJ/Qx9BEPKqlxh+hAG4Uc4m3pWBKayoXDdQWBIAQzbfX
+ZoUSeRc2X+SrLZ44uxydlkvd0pTZtDNU4WljIuQe3WYzsfF/fQZNl+0H2z3DvP6u
+FB2KP6O/VN7g2naKC7FnBHsdKf8H2G65XLDIpEPVn7/X+T0qB1F899ZZcC6mo2xx
+D8K9m9EobYv59x3shTcRTBPui9ta+fpW2/7lckB0UV+oR1c8I+qlRUmDAS3yffm7
+Ot3p2U4OxuAsOMZNkv62PpA8fZVYkFORZD+1ZwdwneHVvRfEFeK+CMC7YO+h7u4S
+TKGnndLu8J5650DQcwVyZroRNcrNoYXhJQNui0vFLATfXawGJ+AWuLzKELKAr5tD
+UznSDWDH72mo5w5EBvrpF6HdrQNQH7VYmBxaWRPHokbog5ifwckLLGcKl4Fsfd6+
+BG0QCV2CGZOEmjP0xUjXNGTTfTTvhPNNgSHn9oQ6cJ9y3zISpIg=
+=s26g
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-8.11.2-RC2-rev17dee71932c683e345508113523e764c3e4c80fa/solr/maven/org/apache/solr/solr-langid/8.11.2/solr-langid-8.11.2.pom.md5
==============================================================================
--- dev/lucene/lucene-solr-8.11.2-RC2-rev17dee71932c683e345508113523e764c3e4c80fa/solr/maven/org/apache/solr/solr-langid/8.11.2/solr-langid-8.11.2.pom.md5 (added)
+++ dev/lucene/lucene-solr-8.11.2-RC2-rev17dee71932c683e345508113523e764c3e4c80fa/solr/maven/org/apache/solr/solr-langid/8.11.2/solr-langid-8.11.2.pom.md5 Mon Jun 13 18:19:05 2022
@@ -0,0 +1 @@
+e2ec1262d319683a33e2bed68dfe03cf
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.11.2-RC2-rev17dee71932c683e345508113523e764c3e4c80fa/solr/maven/org/apache/solr/solr-langid/8.11.2/solr-langid-8.11.2.pom.sha1
==============================================================================
--- dev/lucene/lucene-solr-8.11.2-RC2-rev17dee71932c683e345508113523e764c3e4c80fa/solr/maven/org/apache/solr/solr-langid/8.11.2/solr-langid-8.11.2.pom.sha1 (added)
+++ dev/lucene/lucene-solr-8.11.2-RC2-rev17dee71932c683e345508113523e764c3e4c80fa/solr/maven/org/apache/solr/solr-langid/8.11.2/solr-langid-8.11.2.pom.sha1 Mon Jun 13 18:19:05 2022
@@ -0,0 +1 @@
+3934f70547a2f3ed3e70faf4bfe8751cdf1be8e6
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.11.2-RC2-rev17dee71932c683e345508113523e764c3e4c80fa/solr/maven/org/apache/solr/solr-langid/maven-metadata.xml
==============================================================================
--- dev/lucene/lucene-solr-8.11.2-RC2-rev17dee71932c683e345508113523e764c3e4c80fa/solr/maven/org/apache/solr/solr-langid/maven-metadata.xml (added)
+++ dev/lucene/lucene-solr-8.11.2-RC2-rev17dee71932c683e345508113523e764c3e4c80fa/solr/maven/org/apache/solr/solr-langid/maven-metadata.xml Mon Jun 13 18:19:05 2022
@@ -0,0 +1,12 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<metadata>
+  <groupId>org.apache.solr</groupId>
+  <artifactId>solr-langid</artifactId>
+  <version>8.11.2</version>
+  <versioning>
+    <versions>
+      <version>8.11.2</version>
+    </versions>
+    <lastUpdated>20220613163031</lastUpdated>
+  </versioning>
+</metadata>

Added: dev/lucene/lucene-solr-8.11.2-RC2-rev17dee71932c683e345508113523e764c3e4c80fa/solr/maven/org/apache/solr/solr-langid/maven-metadata.xml.md5
==============================================================================
--- dev/lucene/lucene-solr-8.11.2-RC2-rev17dee71932c683e345508113523e764c3e4c80fa/solr/maven/org/apache/solr/solr-langid/maven-metadata.xml.md5 (added)
+++ dev/lucene/lucene-solr-8.11.2-RC2-rev17dee71932c683e345508113523e764c3e4c80fa/solr/maven/org/apache/solr/solr-langid/maven-metadata.xml.md5 Mon Jun 13 18:19:05 2022
@@ -0,0 +1 @@
+302c4e8b9a07bb76cf351a1c145ae153
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.11.2-RC2-rev17dee71932c683e345508113523e764c3e4c80fa/solr/maven/org/apache/solr/solr-langid/maven-metadata.xml.sha1
==============================================================================
--- dev/lucene/lucene-solr-8.11.2-RC2-rev17dee71932c683e345508113523e764c3e4c80fa/solr/maven/org/apache/solr/solr-langid/maven-metadata.xml.sha1 (added)
+++ dev/lucene/lucene-solr-8.11.2-RC2-rev17dee71932c683e345508113523e764c3e4c80fa/solr/maven/org/apache/solr/solr-langid/maven-metadata.xml.sha1 Mon Jun 13 18:19:05 2022
@@ -0,0 +1 @@
+8f3a731a90f9c8c22cea341ad6b7f9db4579bbd4
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.11.2-RC2-rev17dee71932c683e345508113523e764c3e4c80fa/solr/maven/org/apache/solr/solr-ltr/8.11.2/solr-ltr-8.11.2-javadoc.jar
==============================================================================
Binary file - no diff available.

Propchange: dev/lucene/lucene-solr-8.11.2-RC2-rev17dee71932c683e345508113523e764c3e4c80fa/solr/maven/org/apache/solr/solr-ltr/8.11.2/solr-ltr-8.11.2-javadoc.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: dev/lucene/lucene-solr-8.11.2-RC2-rev17dee71932c683e345508113523e764c3e4c80fa/solr/maven/org/apache/solr/solr-ltr/8.11.2/solr-ltr-8.11.2-javadoc.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-8.11.2-RC2-rev17dee71932c683e345508113523e764c3e4c80fa/solr/maven/org/apache/solr/solr-ltr/8.11.2/solr-ltr-8.11.2-javadoc.jar.asc (added)
+++ dev/lucene/lucene-solr-8.11.2-RC2-rev17dee71932c683e345508113523e764c3e4c80fa/solr/maven/org/apache/solr/solr-ltr/8.11.2/solr-ltr-8.11.2-javadoc.jar.asc Mon Jun 13 18:19:05 2022
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCAAdFiEEhu25wzuFFyKOiKj5PkjAxu82K54FAmKnZkIACgkQPkjAxu82
+K54Bkw//flU5doorHFyYQK3ITeGNcklu1PjCi7dRFOFmlkgBzMkEEQCIn1ZRu598
+yP7vj3zO0Ox0O1lkrc/ts/j0R2m8yi9wqc43vfLHLXTwg0cUs/VwyylK48j2c7Ny
+5zZqBeNNIuCjfEqD0vfgYlL0hsttiYRh6jAAuUI/OIeJkOpQa/l+pGgLZHzJaxGn
+EChsFyI1Oixaw0GwLNUX/nbxQ99dMRfDBYQ7KUCUzxYkBKeQm1wUUCuryzQB0h/I
+Zgyqwgp2k3P4jQ0FF8TRx5YTidV6+qSKfDtsmbf/TuVs/5O2wlXcU/7pxpL0cLj5
+DKKtsAKY7l5uZ/t6c6tvmgSrCwGUuYlsUL37/Gdqc00ZiatTVF4csay1KwNXUUct
+/FaZ6qrsT05R9TKK7dTQEmy9PJEctMffkmvpeKOWXLOH1V+VxrdoQnp0wpDgR8Lu
+/KKmYT1cNp7PcVIj+fydmIxBtKyg9OwBd6V3w0/hlPeIi6pUnYRw4+bijiiL80Bx
+h3RrrEYwXGykyqtZgn4H0xKivGqs7RkNBpaQQA+eZpL5JoEehouKi2tkXB8Ka23A
+NvRiYKTZl2oULwanHgpZVWx3fXtfkPESatc9ikLNbxDn86v5/5+/ED3CnYWhgN7C
+WDHM3j9ZW6QOdr0CS7rNmkcRPNkuXmL+7ItefxgXMUp08jvXgXo=
+=wfNZ
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-8.11.2-RC2-rev17dee71932c683e345508113523e764c3e4c80fa/solr/maven/org/apache/solr/solr-ltr/8.11.2/solr-ltr-8.11.2-javadoc.jar.md5
==============================================================================
--- dev/lucene/lucene-solr-8.11.2-RC2-rev17dee71932c683e345508113523e764c3e4c80fa/solr/maven/org/apache/solr/solr-ltr/8.11.2/solr-ltr-8.11.2-javadoc.jar.md5 (added)
+++ dev/lucene/lucene-solr-8.11.2-RC2-rev17dee71932c683e345508113523e764c3e4c80fa/solr/maven/org/apache/solr/solr-ltr/8.11.2/solr-ltr-8.11.2-javadoc.jar.md5 Mon Jun 13 18:19:05 2022
@@ -0,0 +1 @@
+7d706ca790955dfcad20d9962ded88af
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.11.2-RC2-rev17dee71932c683e345508113523e764c3e4c80fa/solr/maven/org/apache/solr/solr-ltr/8.11.2/solr-ltr-8.11.2-javadoc.jar.sha1
==============================================================================
--- dev/lucene/lucene-solr-8.11.2-RC2-rev17dee71932c683e345508113523e764c3e4c80fa/solr/maven/org/apache/solr/solr-ltr/8.11.2/solr-ltr-8.11.2-javadoc.jar.sha1 (added)
+++ dev/lucene/lucene-solr-8.11.2-RC2-rev17dee71932c683e345508113523e764c3e4c80fa/solr/maven/org/apache/solr/solr-ltr/8.11.2/solr-ltr-8.11.2-javadoc.jar.sha1 Mon Jun 13 18:19:05 2022
@@ -0,0 +1 @@
+fbc89aba258e05fd61900c4ae4c29c8ae6296f15
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.11.2-RC2-rev17dee71932c683e345508113523e764c3e4c80fa/solr/maven/org/apache/solr/solr-ltr/8.11.2/solr-ltr-8.11.2-sources.jar
==============================================================================
Binary file - no diff available.

Propchange: dev/lucene/lucene-solr-8.11.2-RC2-rev17dee71932c683e345508113523e764c3e4c80fa/solr/maven/org/apache/solr/solr-ltr/8.11.2/solr-ltr-8.11.2-sources.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: dev/lucene/lucene-solr-8.11.2-RC2-rev17dee71932c683e345508113523e764c3e4c80fa/solr/maven/org/apache/solr/solr-ltr/8.11.2/solr-ltr-8.11.2-sources.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-8.11.2-RC2-rev17dee71932c683e345508113523e764c3e4c80fa/solr/maven/org/apache/solr/solr-ltr/8.11.2/solr-ltr-8.11.2-sources.jar.asc (added)
+++ dev/lucene/lucene-solr-8.11.2-RC2-rev17dee71932c683e345508113523e764c3e4c80fa/solr/maven/org/apache/solr/solr-ltr/8.11.2/solr-ltr-8.11.2-sources.jar.asc Mon Jun 13 18:19:05 2022
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCAAdFiEEhu25wzuFFyKOiKj5PkjAxu82K54FAmKnZkIACgkQPkjAxu82
+K572Og//RAx7LjLTgs0kOr1EgjcNug1XIyN82Y7HZNbRwqxPUU0la9woe38DK4tE
+fyDuUc+2bcqcEALUjGoUiyhdLMjC/bkz23Go+W8iQjvSEet5vxbqREDfABp+iyOS
+NiVZTEKobtSb11zXg0aGqigRhU43cwE+rfxK0hdHMVa5GXQmj8Qn7jHQ4NFrKVSu
+Rrl2i1Xm3m7QFf3EWDkdo/mPVT7P6uWbUqgGyJvvFRxJkeA6mF0JrFfJ7ufG2tMJ
+x/+PlB3ZiYM/zulFNC4DK9+y6raN3NoqlRav4GjF5OOkI+5OuZoA4+YBcjigmVZT
+XVPxKRCaWtvu5aChCCybojioCEHAw3mXNu9ldP4v9J/aOnfzPPo83+usgHkJqpdM
+Is49AtnybOnWv0SLef7gKqvXFqtlKjKDbyXYyGD6yCPmV2DqCUE+arm1HdbqaLhf
+X11+097lXIQNpDsumJDKYN3DA8pWOpnD4pEMyEbtk7T39wqj8cld2DV4v2fkLzNh
+ckMSd0EOTnPINsd5SVp7ufUlzU4H4Cmh15WI+MhDC08JhoN+OeeA+VTUc6mfcsmx
+7Cfzxje0VENNLanzHA2asPcoKpx0bSADgSRk1VA05CaNyRk1MfAHZhRM5pXgSasA
+ivEfeYrD3nkBxrRFmddjJDFkQbdv2jRaeufKui4OoSrpd1vdS4c=
+=4g6o
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-8.11.2-RC2-rev17dee71932c683e345508113523e764c3e4c80fa/solr/maven/org/apache/solr/solr-ltr/8.11.2/solr-ltr-8.11.2-sources.jar.md5
==============================================================================
--- dev/lucene/lucene-solr-8.11.2-RC2-rev17dee71932c683e345508113523e764c3e4c80fa/solr/maven/org/apache/solr/solr-ltr/8.11.2/solr-ltr-8.11.2-sources.jar.md5 (added)
+++ dev/lucene/lucene-solr-8.11.2-RC2-rev17dee71932c683e345508113523e764c3e4c80fa/solr/maven/org/apache/solr/solr-ltr/8.11.2/solr-ltr-8.11.2-sources.jar.md5 Mon Jun 13 18:19:05 2022
@@ -0,0 +1 @@
+96292e4145f076e660fcc8b15d402abf
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.11.2-RC2-rev17dee71932c683e345508113523e764c3e4c80fa/solr/maven/org/apache/solr/solr-ltr/8.11.2/solr-ltr-8.11.2-sources.jar.sha1
==============================================================================
--- dev/lucene/lucene-solr-8.11.2-RC2-rev17dee71932c683e345508113523e764c3e4c80fa/solr/maven/org/apache/solr/solr-ltr/8.11.2/solr-ltr-8.11.2-sources.jar.sha1 (added)
+++ dev/lucene/lucene-solr-8.11.2-RC2-rev17dee71932c683e345508113523e764c3e4c80fa/solr/maven/org/apache/solr/solr-ltr/8.11.2/solr-ltr-8.11.2-sources.jar.sha1 Mon Jun 13 18:19:05 2022
@@ -0,0 +1 @@
+341dafcc87c7a18e6106d4f3bfe97a45e835ef0a
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.11.2-RC2-rev17dee71932c683e345508113523e764c3e4c80fa/solr/maven/org/apache/solr/solr-ltr/8.11.2/solr-ltr-8.11.2.jar
==============================================================================
Binary file - no diff available.

Propchange: dev/lucene/lucene-solr-8.11.2-RC2-rev17dee71932c683e345508113523e764c3e4c80fa/solr/maven/org/apache/solr/solr-ltr/8.11.2/solr-ltr-8.11.2.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: dev/lucene/lucene-solr-8.11.2-RC2-rev17dee71932c683e345508113523e764c3e4c80fa/solr/maven/org/apache/solr/solr-ltr/8.11.2/solr-ltr-8.11.2.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-8.11.2-RC2-rev17dee71932c683e345508113523e764c3e4c80fa/solr/maven/org/apache/solr/solr-ltr/8.11.2/solr-ltr-8.11.2.jar.asc (added)
+++ dev/lucene/lucene-solr-8.11.2-RC2-rev17dee71932c683e345508113523e764c3e4c80fa/solr/maven/org/apache/solr/solr-ltr/8.11.2/solr-ltr-8.11.2.jar.asc Mon Jun 13 18:19:05 2022
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCAAdFiEEhu25wzuFFyKOiKj5PkjAxu82K54FAmKnZkMACgkQPkjAxu82
+K56IqhAArGmk74c39R0vycqowQ73UzcAyf7WHCgw9dazc+RzFMh7F6S20ywUpmHZ
+LBcQ8KEorDfI5rC4tdbCP6INBnw3krnotd5+eOiGi+lxW8VSKTblSanruZfuXSEa
++e5udLolzZ3WKC8N7paw7PKIlfRAR2pAdCvYQ/6jq76T+FWLAs43kI7uIx4xkzjk
+FCsxOQPGykgBEwq2/xw435Rl+NU5eRq1Yzi/9xCCM9ACBOpRIuiE2LRaOsAIUVoU
+0I8gbjI7FAZtXo+YWCmq3XwlwDvph7ReJQYZhFU8nJKYCQpM7FRrlDtLxHerNEgY
+w6qF5Fp3nQ5KyH6N8BBLKJs/KPbTxms2ktunG0pXQU3/2NEDNlMany3doCptNbOp
+BwLuaFPErVWR9aBv+rMIgWp5emwv5IDWvxkwOz+3zCHXJjFKGl5t5l1iZ0N1/MOC
+CPhAeKbPhxkpsKS+LpWKPZ8rPTL73KlBnr8pNmqnEdYOwbzr7Fx+7V0K0afxIUd0
+uL/Wuvu6XwtsrMzafbA0hLw8y1zYzQmMyaFAuulIjwt0obId0Fzx3CM3abH67QWa
+qTIAEyXe07PFWFQqN6CP9WpGoJkUffh0W9HyrkLHoc/qBNXUOVyCodwaQ2dvZOkA
+NQZw5fHmwI1ugtuDwBXD2CXY//KJO8CXHXL3hBYhcfxMkvx13g4=
+=2i4K
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-8.11.2-RC2-rev17dee71932c683e345508113523e764c3e4c80fa/solr/maven/org/apache/solr/solr-ltr/8.11.2/solr-ltr-8.11.2.jar.md5
==============================================================================
--- dev/lucene/lucene-solr-8.11.2-RC2-rev17dee71932c683e345508113523e764c3e4c80fa/solr/maven/org/apache/solr/solr-ltr/8.11.2/solr-ltr-8.11.2.jar.md5 (added)
+++ dev/lucene/lucene-solr-8.11.2-RC2-rev17dee71932c683e345508113523e764c3e4c80fa/solr/maven/org/apache/solr/solr-ltr/8.11.2/solr-ltr-8.11.2.jar.md5 Mon Jun 13 18:19:05 2022
@@ -0,0 +1 @@
+728e9b01c0b493a2f26626cacd032315
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.11.2-RC2-rev17dee71932c683e345508113523e764c3e4c80fa/solr/maven/org/apache/solr/solr-ltr/8.11.2/solr-ltr-8.11.2.jar.sha1
==============================================================================
--- dev/lucene/lucene-solr-8.11.2-RC2-rev17dee71932c683e345508113523e764c3e4c80fa/solr/maven/org/apache/solr/solr-ltr/8.11.2/solr-ltr-8.11.2.jar.sha1 (added)
+++ dev/lucene/lucene-solr-8.11.2-RC2-rev17dee71932c683e345508113523e764c3e4c80fa/solr/maven/org/apache/solr/solr-ltr/8.11.2/solr-ltr-8.11.2.jar.sha1 Mon Jun 13 18:19:05 2022
@@ -0,0 +1 @@
+962e8349276f0beb193101511b46ff92fbdd60d4
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.11.2-RC2-rev17dee71932c683e345508113523e764c3e4c80fa/solr/maven/org/apache/solr/solr-ltr/8.11.2/solr-ltr-8.11.2.pom
==============================================================================
--- dev/lucene/lucene-solr-8.11.2-RC2-rev17dee71932c683e345508113523e764c3e4c80fa/solr/maven/org/apache/solr/solr-ltr/8.11.2/solr-ltr-8.11.2.pom (added)
+++ dev/lucene/lucene-solr-8.11.2-RC2-rev17dee71932c683e345508113523e764c3e4c80fa/solr/maven/org/apache/solr/solr-ltr/8.11.2/solr-ltr-8.11.2.pom Mon Jun 13 18:19:05 2022
@@ -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.2</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.2-RC2-rev17dee71932c683e345508113523e764c3e4c80fa/solr/maven/org/apache/solr/solr-ltr/8.11.2/solr-ltr-8.11.2.pom.asc
==============================================================================
--- dev/lucene/lucene-solr-8.11.2-RC2-rev17dee71932c683e345508113523e764c3e4c80fa/solr/maven/org/apache/solr/solr-ltr/8.11.2/solr-ltr-8.11.2.pom.asc (added)
+++ dev/lucene/lucene-solr-8.11.2-RC2-rev17dee71932c683e345508113523e764c3e4c80fa/solr/maven/org/apache/solr/solr-ltr/8.11.2/solr-ltr-8.11.2.pom.asc Mon Jun 13 18:19:05 2022
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCAAdFiEEhu25wzuFFyKOiKj5PkjAxu82K54FAmKnZkMACgkQPkjAxu82
+K567rQ//YKnbJKbS3E2Xt8tHKR2RFGID1vsP2mUKuz1gc80ipz7oWTkp3HXHov3D
+EZlx2CP6OpAQgYk2bxMHqVpi11h1OiJ+es79i+PyWdWfOiqWqmbB+HDwq4ayFocr
+uY5nTet4Lq4L8MnioEnefcjHflBfIZt5efo995IVoIsceHVzfLcK6gjrq+h7qgrJ
+CnWU6tAFlTUEWiJ5yX+27/OyUPVw/4vK2wsBn7JEPvpNU5HwPA4Ml7XJtpIsLkal
+0O+CQlWTs9epDplhwXx50DYiERsOrapHITlbFz86RfGkLetb7YS26hncOQCrLQlR
+2aiUvDFuVuJ3XvGQ3xpZvQCf6hsbOZOQHd0aLqP3pozonlP5eewI6DNi9YL77973
+AcOEhBzj+jFbPX7kcWyOVGjQ2toxWhiBczsp4lqFlC7g0DdWILVGCqhv60zjkzGF
+oEqRcfsxKZHNWeQGUZWXRfwX/KA6B8Zd8W8uXxp9Rm15flRrMVu2rKr7ACiLfhTm
+UbO9Q/+AKdQ0Yozv9ifTZyT+Pjt17fOWnPUQtMllBRgKxyEQsGOhb2wj+44AUpAq
+4qj8jlsndXNITw9JipRbSPm6nUj2SyVc7PiAA1k2ThTbhW4/RdQ8FR+D0lv6TleZ
+p3GO4mAcC5uxen8WIQz5fxtliCYJfh8WvjDfXu8XZZVWlqeaKYk=
+=ukHd
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-8.11.2-RC2-rev17dee71932c683e345508113523e764c3e4c80fa/solr/maven/org/apache/solr/solr-ltr/8.11.2/solr-ltr-8.11.2.pom.md5
==============================================================================
--- dev/lucene/lucene-solr-8.11.2-RC2-rev17dee71932c683e345508113523e764c3e4c80fa/solr/maven/org/apache/solr/solr-ltr/8.11.2/solr-ltr-8.11.2.pom.md5 (added)
+++ dev/lucene/lucene-solr-8.11.2-RC2-rev17dee71932c683e345508113523e764c3e4c80fa/solr/maven/org/apache/solr/solr-ltr/8.11.2/solr-ltr-8.11.2.pom.md5 Mon Jun 13 18:19:05 2022
@@ -0,0 +1 @@
+c7e48522adec4bb13c3efdd652e29d3b
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.11.2-RC2-rev17dee71932c683e345508113523e764c3e4c80fa/solr/maven/org/apache/solr/solr-ltr/8.11.2/solr-ltr-8.11.2.pom.sha1
==============================================================================
--- dev/lucene/lucene-solr-8.11.2-RC2-rev17dee71932c683e345508113523e764c3e4c80fa/solr/maven/org/apache/solr/solr-ltr/8.11.2/solr-ltr-8.11.2.pom.sha1 (added)
+++ dev/lucene/lucene-solr-8.11.2-RC2-rev17dee71932c683e345508113523e764c3e4c80fa/solr/maven/org/apache/solr/solr-ltr/8.11.2/solr-ltr-8.11.2.pom.sha1 Mon Jun 13 18:19:05 2022
@@ -0,0 +1 @@
+d7c25a98d049e2a2eb7b93ad5731ea6c10ef42c1
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.11.2-RC2-rev17dee71932c683e345508113523e764c3e4c80fa/solr/maven/org/apache/solr/solr-ltr/maven-metadata.xml
==============================================================================
--- dev/lucene/lucene-solr-8.11.2-RC2-rev17dee71932c683e345508113523e764c3e4c80fa/solr/maven/org/apache/solr/solr-ltr/maven-metadata.xml (added)
+++ dev/lucene/lucene-solr-8.11.2-RC2-rev17dee71932c683e345508113523e764c3e4c80fa/solr/maven/org/apache/solr/solr-ltr/maven-metadata.xml Mon Jun 13 18:19:05 2022
@@ -0,0 +1,12 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<metadata>
+  <groupId>org.apache.solr</groupId>
+  <artifactId>solr-ltr</artifactId>
+  <version>8.11.2</version>
+  <versioning>
+    <versions>
+      <version>8.11.2</version>
+    </versions>
+    <lastUpdated>20220613163034</lastUpdated>
+  </versioning>
+</metadata>

Added: dev/lucene/lucene-solr-8.11.2-RC2-rev17dee71932c683e345508113523e764c3e4c80fa/solr/maven/org/apache/solr/solr-ltr/maven-metadata.xml.md5
==============================================================================
--- dev/lucene/lucene-solr-8.11.2-RC2-rev17dee71932c683e345508113523e764c3e4c80fa/solr/maven/org/apache/solr/solr-ltr/maven-metadata.xml.md5 (added)
+++ dev/lucene/lucene-solr-8.11.2-RC2-rev17dee71932c683e345508113523e764c3e4c80fa/solr/maven/org/apache/solr/solr-ltr/maven-metadata.xml.md5 Mon Jun 13 18:19:05 2022
@@ -0,0 +1 @@
+4d564ae667f242133634c5ce36f6bfca
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.11.2-RC2-rev17dee71932c683e345508113523e764c3e4c80fa/solr/maven/org/apache/solr/solr-ltr/maven-metadata.xml.sha1
==============================================================================
--- dev/lucene/lucene-solr-8.11.2-RC2-rev17dee71932c683e345508113523e764c3e4c80fa/solr/maven/org/apache/solr/solr-ltr/maven-metadata.xml.sha1 (added)
+++ dev/lucene/lucene-solr-8.11.2-RC2-rev17dee71932c683e345508113523e764c3e4c80fa/solr/maven/org/apache/solr/solr-ltr/maven-metadata.xml.sha1 Mon Jun 13 18:19:05 2022
@@ -0,0 +1 @@
+67b7e84c4744f98c664d0155faf45fd587b817ba
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.11.2-RC2-rev17dee71932c683e345508113523e764c3e4c80fa/solr/maven/org/apache/solr/solr-parent/8.11.2/solr-parent-8.11.2.pom
==============================================================================
--- dev/lucene/lucene-solr-8.11.2-RC2-rev17dee71932c683e345508113523e764c3e4c80fa/solr/maven/org/apache/solr/solr-parent/8.11.2/solr-parent-8.11.2.pom (added)
+++ dev/lucene/lucene-solr-8.11.2-RC2-rev17dee71932c683e345508113523e764c3e4c80fa/solr/maven/org/apache/solr/solr-parent/8.11.2/solr-parent-8.11.2.pom Mon Jun 13 18:19:05 2022
@@ -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.2</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.2-RC2-rev17dee71932c683e345508113523e764c3e4c80fa/solr/maven/org/apache/solr/solr-parent/8.11.2/solr-parent-8.11.2.pom.asc
==============================================================================
--- dev/lucene/lucene-solr-8.11.2-RC2-rev17dee71932c683e345508113523e764c3e4c80fa/solr/maven/org/apache/solr/solr-parent/8.11.2/solr-parent-8.11.2.pom.asc (added)
+++ dev/lucene/lucene-solr-8.11.2-RC2-rev17dee71932c683e345508113523e764c3e4c80fa/solr/maven/org/apache/solr/solr-parent/8.11.2/solr-parent-8.11.2.pom.asc Mon Jun 13 18:19:05 2022
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCAAdFiEEhu25wzuFFyKOiKj5PkjAxu82K54FAmKnZkMACgkQPkjAxu82
+K5674w//en3ElASZUgCHv6OGIZkkRuQyPBa1+OfKthwkdIBh4eMybdSb9cMRQiaU
+FLHa8QUD2CUE/bNQqQdRJC/2rX+LQPwS+QUAAObLN8CcXp7cdM2UdBrF9sKiG4S0
+THHu5BdpBA96FZw4/Khe4FiNHMzHMMFEoVuzASeB//aLpuleleT87WPS7n69pioH
+MAn4jpHKDLAvFvMki8d/0SWeddKdbYp3i4emjDF0ONv2T6BrqkKDRc5y1ZwOFSmZ
+r88Q8FVPY6pTMK8havKsffCyDqxENo5LQRuavsNLojCzfmieMvobc3bIkQmQshOB
+DJ2PqTB3cpkwnVXQ8/FtyonCdndwntYg7CriDegEUoQbPJnxRgXgDiz7GZcEbby5
+/nZb8m4QbS3zk10EzS5zGJw1+gR/8CCykt2unvAx/zQu6I9LWLicswDbURPlyt7Q
+1wE9f1yMqlIl115WepjSr9nQYA+H+1OaXCU9C5z0PhCKRan4AyumD2LLzjpIFwZj
+77YDnUxYLgh7u/MyaS0yyRheVXCrJizWpTknsep24q7j146iFAiXWTLkFE/tscZg
+KsPHuH3uaPxK/2nP1djcMXvXHUIE7QDAJ4LV7hSV+thJy7SQv2wyaAPF/2o90A5g
+WEmllusjCFP/NjbKkTUzgMIbcnWCHfX6oIGMnuYTRLFywI7KKXY=
+=rv4X
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-8.11.2-RC2-rev17dee71932c683e345508113523e764c3e4c80fa/solr/maven/org/apache/solr/solr-parent/8.11.2/solr-parent-8.11.2.pom.md5
==============================================================================
--- dev/lucene/lucene-solr-8.11.2-RC2-rev17dee71932c683e345508113523e764c3e4c80fa/solr/maven/org/apache/solr/solr-parent/8.11.2/solr-parent-8.11.2.pom.md5 (added)
+++ dev/lucene/lucene-solr-8.11.2-RC2-rev17dee71932c683e345508113523e764c3e4c80fa/solr/maven/org/apache/solr/solr-parent/8.11.2/solr-parent-8.11.2.pom.md5 Mon Jun 13 18:19:05 2022
@@ -0,0 +1 @@
+053eb150a19b1bc3c9abf4987c92faa3
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.11.2-RC2-rev17dee71932c683e345508113523e764c3e4c80fa/solr/maven/org/apache/solr/solr-parent/8.11.2/solr-parent-8.11.2.pom.sha1
==============================================================================
--- dev/lucene/lucene-solr-8.11.2-RC2-rev17dee71932c683e345508113523e764c3e4c80fa/solr/maven/org/apache/solr/solr-parent/8.11.2/solr-parent-8.11.2.pom.sha1 (added)
+++ dev/lucene/lucene-solr-8.11.2-RC2-rev17dee71932c683e345508113523e764c3e4c80fa/solr/maven/org/apache/solr/solr-parent/8.11.2/solr-parent-8.11.2.pom.sha1 Mon Jun 13 18:19:05 2022
@@ -0,0 +1 @@
+0167e4f9f2aa2354392f5fd2863e6a12f60a070c
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.11.2-RC2-rev17dee71932c683e345508113523e764c3e4c80fa/solr/maven/org/apache/solr/solr-parent/maven-metadata.xml
==============================================================================
--- dev/lucene/lucene-solr-8.11.2-RC2-rev17dee71932c683e345508113523e764c3e4c80fa/solr/maven/org/apache/solr/solr-parent/maven-metadata.xml (added)
+++ dev/lucene/lucene-solr-8.11.2-RC2-rev17dee71932c683e345508113523e764c3e4c80fa/solr/maven/org/apache/solr/solr-parent/maven-metadata.xml Mon Jun 13 18:19:05 2022
@@ -0,0 +1,12 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<metadata>
+  <groupId>org.apache.solr</groupId>
+  <artifactId>solr-parent</artifactId>
+  <version>8.11.2</version>
+  <versioning>
+    <versions>
+      <version>8.11.2</version>
+    </versions>
+    <lastUpdated>20220613163002</lastUpdated>
+  </versioning>
+</metadata>

Added: dev/lucene/lucene-solr-8.11.2-RC2-rev17dee71932c683e345508113523e764c3e4c80fa/solr/maven/org/apache/solr/solr-parent/maven-metadata.xml.md5
==============================================================================
--- dev/lucene/lucene-solr-8.11.2-RC2-rev17dee71932c683e345508113523e764c3e4c80fa/solr/maven/org/apache/solr/solr-parent/maven-metadata.xml.md5 (added)
+++ dev/lucene/lucene-solr-8.11.2-RC2-rev17dee71932c683e345508113523e764c3e4c80fa/solr/maven/org/apache/solr/solr-parent/maven-metadata.xml.md5 Mon Jun 13 18:19:05 2022
@@ -0,0 +1 @@
+50b77259fc2e7c11426fb703f6f7f89c
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.11.2-RC2-rev17dee71932c683e345508113523e764c3e4c80fa/solr/maven/org/apache/solr/solr-parent/maven-metadata.xml.sha1
==============================================================================
--- dev/lucene/lucene-solr-8.11.2-RC2-rev17dee71932c683e345508113523e764c3e4c80fa/solr/maven/org/apache/solr/solr-parent/maven-metadata.xml.sha1 (added)
+++ dev/lucene/lucene-solr-8.11.2-RC2-rev17dee71932c683e345508113523e764c3e4c80fa/solr/maven/org/apache/solr/solr-parent/maven-metadata.xml.sha1 Mon Jun 13 18:19:05 2022
@@ -0,0 +1 @@
+fd603cd4631120bc75a5bd6a27def89b1f05cef2
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.11.2-RC2-rev17dee71932c683e345508113523e764c3e4c80fa/solr/maven/org/apache/solr/solr-prometheus-exporter/8.11.2/solr-prometheus-exporter-8.11.2-javadoc.jar
==============================================================================
Binary file - no diff available.

Propchange: dev/lucene/lucene-solr-8.11.2-RC2-rev17dee71932c683e345508113523e764c3e4c80fa/solr/maven/org/apache/solr/solr-prometheus-exporter/8.11.2/solr-prometheus-exporter-8.11.2-javadoc.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: dev/lucene/lucene-solr-8.11.2-RC2-rev17dee71932c683e345508113523e764c3e4c80fa/solr/maven/org/apache/solr/solr-prometheus-exporter/8.11.2/solr-prometheus-exporter-8.11.2-javadoc.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-8.11.2-RC2-rev17dee71932c683e345508113523e764c3e4c80fa/solr/maven/org/apache/solr/solr-prometheus-exporter/8.11.2/solr-prometheus-exporter-8.11.2-javadoc.jar.asc (added)
+++ dev/lucene/lucene-solr-8.11.2-RC2-rev17dee71932c683e345508113523e764c3e4c80fa/solr/maven/org/apache/solr/solr-prometheus-exporter/8.11.2/solr-prometheus-exporter-8.11.2-javadoc.jar.asc Mon Jun 13 18:19:05 2022
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCAAdFiEEhu25wzuFFyKOiKj5PkjAxu82K54FAmKnZkQACgkQPkjAxu82
+K55jwhAA0DAQqQWKw9xJAmlKQCIRc+Wh3OSbNSAuAb6kwC9uJn/JByV6RMPcbRGN
+jILEuePdBRHOVFz5UOoxwk2Cc6SCJ6cFmptSvFxD4K5w52dUEQ7/Mhqa5/iUl86V
+fOpPPyTat0YktZSnCFW7VG4kOMunk5XhtkWwj2G8DOkzYosNWDU1iiOkLj+o9vyA
+KsOaRktpmQdyVan0YH9FanflPaiI2VCiQHymWenjWnDpx2ITbx1G69kL869op0hP
+2yGT1ui18hUgp6//0TbClAukHPYdd2iXPQeL6Eqhct2nHOhpVXZQdR58bn+R2pBA
+gvOFQ6u+th8n6qwI73EeZlTszJNikwk8HxK2PJAMKgqG4FxzH0cqKUrHzfc3XouX
+/1ILOvktIdZ88sxWbSfPYt2THhBroBZSrZdssd0wf+oWnPt8hFbEEADo+0lKqZQb
+7wTb8IoEDex8tcjoW31xT2kimkvBcJR5+ymQwKz/pmFndidx/XLs+vkBJCrXQg43
+ioxOSHBeS7WgVTrBUzSnRVeEiMrltO/lUurwHL88W46m4XIxZfR0K5qaTDkAlHEL
+VYVMLkjs9QMalKlAlnYNAzcuC4j6+b/AA2SipSGO6t8X6NhN6Vabe5G7a7izbIkt
+Mztf0NrIBaGoJG/TsxnwLHVHUtbhcJAI6N7QWIZVXu9foSkuceY=
+=8BHf
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-8.11.2-RC2-rev17dee71932c683e345508113523e764c3e4c80fa/solr/maven/org/apache/solr/solr-prometheus-exporter/8.11.2/solr-prometheus-exporter-8.11.2-javadoc.jar.md5
==============================================================================
--- dev/lucene/lucene-solr-8.11.2-RC2-rev17dee71932c683e345508113523e764c3e4c80fa/solr/maven/org/apache/solr/solr-prometheus-exporter/8.11.2/solr-prometheus-exporter-8.11.2-javadoc.jar.md5 (added)
+++ dev/lucene/lucene-solr-8.11.2-RC2-rev17dee71932c683e345508113523e764c3e4c80fa/solr/maven/org/apache/solr/solr-prometheus-exporter/8.11.2/solr-prometheus-exporter-8.11.2-javadoc.jar.md5 Mon Jun 13 18:19:05 2022
@@ -0,0 +1 @@
+fed6c5840201ed55db1d02d61b84d022
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.11.2-RC2-rev17dee71932c683e345508113523e764c3e4c80fa/solr/maven/org/apache/solr/solr-prometheus-exporter/8.11.2/solr-prometheus-exporter-8.11.2-javadoc.jar.sha1
==============================================================================
--- dev/lucene/lucene-solr-8.11.2-RC2-rev17dee71932c683e345508113523e764c3e4c80fa/solr/maven/org/apache/solr/solr-prometheus-exporter/8.11.2/solr-prometheus-exporter-8.11.2-javadoc.jar.sha1 (added)
+++ dev/lucene/lucene-solr-8.11.2-RC2-rev17dee71932c683e345508113523e764c3e4c80fa/solr/maven/org/apache/solr/solr-prometheus-exporter/8.11.2/solr-prometheus-exporter-8.11.2-javadoc.jar.sha1 Mon Jun 13 18:19:05 2022
@@ -0,0 +1 @@
+74c1546fc46ff4443a72b79910f0f08d98d2d065
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.11.2-RC2-rev17dee71932c683e345508113523e764c3e4c80fa/solr/maven/org/apache/solr/solr-prometheus-exporter/8.11.2/solr-prometheus-exporter-8.11.2-sources.jar
==============================================================================
Binary file - no diff available.

Propchange: dev/lucene/lucene-solr-8.11.2-RC2-rev17dee71932c683e345508113523e764c3e4c80fa/solr/maven/org/apache/solr/solr-prometheus-exporter/8.11.2/solr-prometheus-exporter-8.11.2-sources.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: dev/lucene/lucene-solr-8.11.2-RC2-rev17dee71932c683e345508113523e764c3e4c80fa/solr/maven/org/apache/solr/solr-prometheus-exporter/8.11.2/solr-prometheus-exporter-8.11.2-sources.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-8.11.2-RC2-rev17dee71932c683e345508113523e764c3e4c80fa/solr/maven/org/apache/solr/solr-prometheus-exporter/8.11.2/solr-prometheus-exporter-8.11.2-sources.jar.asc (added)
+++ dev/lucene/lucene-solr-8.11.2-RC2-rev17dee71932c683e345508113523e764c3e4c80fa/solr/maven/org/apache/solr/solr-prometheus-exporter/8.11.2/solr-prometheus-exporter-8.11.2-sources.jar.asc Mon Jun 13 18:19:05 2022
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCAAdFiEEhu25wzuFFyKOiKj5PkjAxu82K54FAmKnZkQACgkQPkjAxu82
+K57JlQ//anmfkpJdilLfi06UiZqIfrdqQbxUiIHqQuaUTJwZxcrnLnZxiIdRsxg6
+TaE2icvEAW0MgHgvl408RP/22TPJ1hExPaQZz7zLsEi7NfZydqUks8G6OiwvmAKU
+JRhL+4qcfLWaTrs5Am1qZBZQv+747Wd+FU64Pd9131D08jNJY0NWxD7xKVESZ53j
+eCDgYPfgjeBtqFs9vEASE3liPoLWXnUAkCR0qCgUKetILh+vQRjI5Ps2IFagMPZB
+lZdwoFdFIvirgi2guIP5L9pvIXIfN0DGix2g/MiGn1RrrdJybpRgZmXZSA2ToiUj
+ZXBVCW4dHeqJdLGSknAMLhHpZsJSVsNp7VzEatFMKCpw33kBAEopi8G8xRhr97c/
+2Nb3RPXQR7hUi2f8UppsoqBz0/0iBbwMKGiiuj6aLSL9jfX8QRJ9N7epH0AF3OxD
+1Cj4IVWzD7RGlXmnTPQk4dxvDz5x99wrP5pa1kGlHhxv3hF4aZQVBZHN6/PjWKd8
+d0ZggDDtPp4VlE4oC7IIbcUU69sIgPd9pwYSEeiAN5s+m3GQ4HTSyaQZpZlbbO2t
+oBHqEmZRW8XoW5t7vlG0nqAKIwiUsjZWWzrYJkLWj3DKzyoIzriwInGHtCM2EXAL
+w7RjkANd2DLruAd+bYiaKh+EfRBRRiDjZH64duo45E7onR++5Ks=
+=hFDD
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-8.11.2-RC2-rev17dee71932c683e345508113523e764c3e4c80fa/solr/maven/org/apache/solr/solr-prometheus-exporter/8.11.2/solr-prometheus-exporter-8.11.2-sources.jar.md5
==============================================================================
--- dev/lucene/lucene-solr-8.11.2-RC2-rev17dee71932c683e345508113523e764c3e4c80fa/solr/maven/org/apache/solr/solr-prometheus-exporter/8.11.2/solr-prometheus-exporter-8.11.2-sources.jar.md5 (added)
+++ dev/lucene/lucene-solr-8.11.2-RC2-rev17dee71932c683e345508113523e764c3e4c80fa/solr/maven/org/apache/solr/solr-prometheus-exporter/8.11.2/solr-prometheus-exporter-8.11.2-sources.jar.md5 Mon Jun 13 18:19:05 2022
@@ -0,0 +1 @@
+baf2dc11989d05b065374411cb2173fe
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.11.2-RC2-rev17dee71932c683e345508113523e764c3e4c80fa/solr/maven/org/apache/solr/solr-prometheus-exporter/8.11.2/solr-prometheus-exporter-8.11.2-sources.jar.sha1
==============================================================================
--- dev/lucene/lucene-solr-8.11.2-RC2-rev17dee71932c683e345508113523e764c3e4c80fa/solr/maven/org/apache/solr/solr-prometheus-exporter/8.11.2/solr-prometheus-exporter-8.11.2-sources.jar.sha1 (added)
+++ dev/lucene/lucene-solr-8.11.2-RC2-rev17dee71932c683e345508113523e764c3e4c80fa/solr/maven/org/apache/solr/solr-prometheus-exporter/8.11.2/solr-prometheus-exporter-8.11.2-sources.jar.sha1 Mon Jun 13 18:19:05 2022
@@ -0,0 +1 @@
+656457a29608c4321ea23c4885976588d98bacdd
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.11.2-RC2-rev17dee71932c683e345508113523e764c3e4c80fa/solr/maven/org/apache/solr/solr-prometheus-exporter/8.11.2/solr-prometheus-exporter-8.11.2.jar
==============================================================================
Binary file - no diff available.

Propchange: dev/lucene/lucene-solr-8.11.2-RC2-rev17dee71932c683e345508113523e764c3e4c80fa/solr/maven/org/apache/solr/solr-prometheus-exporter/8.11.2/solr-prometheus-exporter-8.11.2.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: dev/lucene/lucene-solr-8.11.2-RC2-rev17dee71932c683e345508113523e764c3e4c80fa/solr/maven/org/apache/solr/solr-prometheus-exporter/8.11.2/solr-prometheus-exporter-8.11.2.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-8.11.2-RC2-rev17dee71932c683e345508113523e764c3e4c80fa/solr/maven/org/apache/solr/solr-prometheus-exporter/8.11.2/solr-prometheus-exporter-8.11.2.jar.asc (added)
+++ dev/lucene/lucene-solr-8.11.2-RC2-rev17dee71932c683e345508113523e764c3e4c80fa/solr/maven/org/apache/solr/solr-prometheus-exporter/8.11.2/solr-prometheus-exporter-8.11.2.jar.asc Mon Jun 13 18:19:05 2022
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCAAdFiEEhu25wzuFFyKOiKj5PkjAxu82K54FAmKnZkUACgkQPkjAxu82
+K57zhBAAr+raM3REEBBvv7pGVcWnJYHe08xQ/7qE4uPoPwRX9O7vi+Afk/kpZX9h
+joec8C9BMiEtucj7BeFV0ITBJXESKSFJcrM6ak2C/fsRrVw2ZXRAqc1kBN6pTKuI
+v6p/ApFonVVnZB6APC18dRde2vCR1Vj6t1zMZUedh3Q+41gToejWADBz4USgMLYr
+E2lboFbLpjIhFp5cHxcUV8iF6wKIKwEscUxoaPFldccxcJ6qESPM6CMOT7eKcof1
+BCEwp6CPDfiXDYgvSecs8spmNhJM+uGADjAo6hOPKLsGVs992bS/8Tu98M+mjjl1
+/7KxxM1AtrsDtXBfZqKNjkrOV4Idj3h+89seYVds0yBiKwsrCpv0j3upRTEypVv6
+MeqlxU0EBC/BT5/orhKCyFbIMC0mh1lkIHBu0nP3O24iR4PTn55NjNnZ6oUMx2v0
+5ZOc6J3WTC7abZEfPmghkMppv0WEiXN+JJMOgQEvZ7KK4Znl16+ib6FYzoorPBnx
+8hmwN3XdK0gK0P9FVQQl5hgznBCS5QMUn4NFPRsRHhknqpBWj6EepQTXPIyD9Gwa
+sUq9mNvI8QZaFd+yHoXVuK3BMCy+GB/EwRpKUCeWpAJ2TKtH4O12oUibRTWdrueX
+IqGggV7B09At+HqQMGc3jxsGLIielkcByamuidYA62t1RUMhwJw=
+=Fytw
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-8.11.2-RC2-rev17dee71932c683e345508113523e764c3e4c80fa/solr/maven/org/apache/solr/solr-prometheus-exporter/8.11.2/solr-prometheus-exporter-8.11.2.jar.md5
==============================================================================
--- dev/lucene/lucene-solr-8.11.2-RC2-rev17dee71932c683e345508113523e764c3e4c80fa/solr/maven/org/apache/solr/solr-prometheus-exporter/8.11.2/solr-prometheus-exporter-8.11.2.jar.md5 (added)
+++ dev/lucene/lucene-solr-8.11.2-RC2-rev17dee71932c683e345508113523e764c3e4c80fa/solr/maven/org/apache/solr/solr-prometheus-exporter/8.11.2/solr-prometheus-exporter-8.11.2.jar.md5 Mon Jun 13 18:19:05 2022
@@ -0,0 +1 @@
+8f404d34716a2d92924e06683d634f76
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.11.2-RC2-rev17dee71932c683e345508113523e764c3e4c80fa/solr/maven/org/apache/solr/solr-prometheus-exporter/8.11.2/solr-prometheus-exporter-8.11.2.jar.sha1
==============================================================================
--- dev/lucene/lucene-solr-8.11.2-RC2-rev17dee71932c683e345508113523e764c3e4c80fa/solr/maven/org/apache/solr/solr-prometheus-exporter/8.11.2/solr-prometheus-exporter-8.11.2.jar.sha1 (added)
+++ dev/lucene/lucene-solr-8.11.2-RC2-rev17dee71932c683e345508113523e764c3e4c80fa/solr/maven/org/apache/solr/solr-prometheus-exporter/8.11.2/solr-prometheus-exporter-8.11.2.jar.sha1 Mon Jun 13 18:19:05 2022
@@ -0,0 +1 @@
+e5086d6544b6d1361b0b647af8c90fddeccc0455
\ No newline at end of file