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/08 23:14:44 UTC

svn commit: r54997 [16/18] - in /dev/lucene/lucene-solr-8.11.2-RC1-reva9ed1e5fccbd1a84c78194a1329a7e1a3032ffc6: ./ 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-RC1-reva9ed1e5fccbd1a84c78194a1329a7e1a3032ffc6/solr/maven/org/apache/solr/solr-langid/8.11.2/solr-langid-8.11.2.pom
==============================================================================
--- dev/lucene/lucene-solr-8.11.2-RC1-reva9ed1e5fccbd1a84c78194a1329a7e1a3032ffc6/solr/maven/org/apache/solr/solr-langid/8.11.2/solr-langid-8.11.2.pom (added)
+++ dev/lucene/lucene-solr-8.11.2-RC1-reva9ed1e5fccbd1a84c78194a1329a7e1a3032ffc6/solr/maven/org/apache/solr/solr-langid/8.11.2/solr-langid-8.11.2.pom Wed Jun  8 23:14:40 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-RC1-reva9ed1e5fccbd1a84c78194a1329a7e1a3032ffc6/solr/maven/org/apache/solr/solr-langid/8.11.2/solr-langid-8.11.2.pom.asc
==============================================================================
--- dev/lucene/lucene-solr-8.11.2-RC1-reva9ed1e5fccbd1a84c78194a1329a7e1a3032ffc6/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-RC1-reva9ed1e5fccbd1a84c78194a1329a7e1a3032ffc6/solr/maven/org/apache/solr/solr-langid/8.11.2/solr-langid-8.11.2.pom.asc Wed Jun  8 23:14:40 2022
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCAAdFiEEhu25wzuFFyKOiKj5PkjAxu82K54FAmKhE8oACgkQPkjAxu82
+K55tgQ//eXOAnmaMPsGRRJMequZonDEjc3dNf3u/OviKoEDQHXwptR8yizZoGPfx
+Vwnt/cZ5Q12mUznT7aO0Un2UhWuwCb9tKGUZjlCiLEofaA0Qfr8GfrutN/Nt1UFH
+TbXsGVxlIbI7MnKg/gvdLJ/EnfnWSnruzQ8WGe2HNU2Qg1Lb92Sj0InBfCOMch0k
+EMma3VAEPoOzkC37Xo/Z1EBIEYKI52DP009by7RfEeuARzgRB787fucSSwd7n9XQ
+7JFOUU5vBeLM3nM8TEFMar5tytfLUhodZ8+V2NxHPfoHMyI0jbtt9igx9fNKGIEn
+NY+yNxHgewitJ9V1oelJgmhsCxSewEuUbnPjVNlb6w7OaavG3PKboh/7LaLCsFty
+cGfKd36qZbCNwzHI4fm04jquVpI1YW5okL5spJkD0K9WltWsjxMnhwBXLNQatYrs
+N/K4SkbqUoPrC69phuN8YkppvwM61UiDTv1RlffwNxtB2RhoZunbddYV6Ah7aDyK
+S7dREe/n0nwStThpsx7qMoSOaBTMwSVZRetw6PO/1lXs0YLztaJsejphCabv63vz
+xVWNXwGHZN7oOv87ZB/BeiwPIQsqQf45hRMcopipBG4DwD23chou4yuAAkWN/cE7
+wTC5lHYyMsG47LgMN/sbJ/pWXZTWgBFHkMUEiGTpDgE3VQ9jBZs=
+=yhGR
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-8.11.2-RC1-reva9ed1e5fccbd1a84c78194a1329a7e1a3032ffc6/solr/maven/org/apache/solr/solr-langid/8.11.2/solr-langid-8.11.2.pom.md5
==============================================================================
--- dev/lucene/lucene-solr-8.11.2-RC1-reva9ed1e5fccbd1a84c78194a1329a7e1a3032ffc6/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-RC1-reva9ed1e5fccbd1a84c78194a1329a7e1a3032ffc6/solr/maven/org/apache/solr/solr-langid/8.11.2/solr-langid-8.11.2.pom.md5 Wed Jun  8 23:14:40 2022
@@ -0,0 +1 @@
+e2ec1262d319683a33e2bed68dfe03cf
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.11.2-RC1-reva9ed1e5fccbd1a84c78194a1329a7e1a3032ffc6/solr/maven/org/apache/solr/solr-langid/8.11.2/solr-langid-8.11.2.pom.sha1
==============================================================================
--- dev/lucene/lucene-solr-8.11.2-RC1-reva9ed1e5fccbd1a84c78194a1329a7e1a3032ffc6/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-RC1-reva9ed1e5fccbd1a84c78194a1329a7e1a3032ffc6/solr/maven/org/apache/solr/solr-langid/8.11.2/solr-langid-8.11.2.pom.sha1 Wed Jun  8 23:14:40 2022
@@ -0,0 +1 @@
+3934f70547a2f3ed3e70faf4bfe8751cdf1be8e6
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.11.2-RC1-reva9ed1e5fccbd1a84c78194a1329a7e1a3032ffc6/solr/maven/org/apache/solr/solr-langid/maven-metadata.xml
==============================================================================
--- dev/lucene/lucene-solr-8.11.2-RC1-reva9ed1e5fccbd1a84c78194a1329a7e1a3032ffc6/solr/maven/org/apache/solr/solr-langid/maven-metadata.xml (added)
+++ dev/lucene/lucene-solr-8.11.2-RC1-reva9ed1e5fccbd1a84c78194a1329a7e1a3032ffc6/solr/maven/org/apache/solr/solr-langid/maven-metadata.xml Wed Jun  8 23:14:40 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>20220608212513</lastUpdated>
+  </versioning>
+</metadata>

Added: dev/lucene/lucene-solr-8.11.2-RC1-reva9ed1e5fccbd1a84c78194a1329a7e1a3032ffc6/solr/maven/org/apache/solr/solr-langid/maven-metadata.xml.md5
==============================================================================
--- dev/lucene/lucene-solr-8.11.2-RC1-reva9ed1e5fccbd1a84c78194a1329a7e1a3032ffc6/solr/maven/org/apache/solr/solr-langid/maven-metadata.xml.md5 (added)
+++ dev/lucene/lucene-solr-8.11.2-RC1-reva9ed1e5fccbd1a84c78194a1329a7e1a3032ffc6/solr/maven/org/apache/solr/solr-langid/maven-metadata.xml.md5 Wed Jun  8 23:14:40 2022
@@ -0,0 +1 @@
+60dc8bd6ed46751f9a812daed5adeba5
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.11.2-RC1-reva9ed1e5fccbd1a84c78194a1329a7e1a3032ffc6/solr/maven/org/apache/solr/solr-langid/maven-metadata.xml.sha1
==============================================================================
--- dev/lucene/lucene-solr-8.11.2-RC1-reva9ed1e5fccbd1a84c78194a1329a7e1a3032ffc6/solr/maven/org/apache/solr/solr-langid/maven-metadata.xml.sha1 (added)
+++ dev/lucene/lucene-solr-8.11.2-RC1-reva9ed1e5fccbd1a84c78194a1329a7e1a3032ffc6/solr/maven/org/apache/solr/solr-langid/maven-metadata.xml.sha1 Wed Jun  8 23:14:40 2022
@@ -0,0 +1 @@
+cee7d832af4bdd1baba4b7d96486ef70367a5958
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.11.2-RC1-reva9ed1e5fccbd1a84c78194a1329a7e1a3032ffc6/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-RC1-reva9ed1e5fccbd1a84c78194a1329a7e1a3032ffc6/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-RC1-reva9ed1e5fccbd1a84c78194a1329a7e1a3032ffc6/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-RC1-reva9ed1e5fccbd1a84c78194a1329a7e1a3032ffc6/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-RC1-reva9ed1e5fccbd1a84c78194a1329a7e1a3032ffc6/solr/maven/org/apache/solr/solr-ltr/8.11.2/solr-ltr-8.11.2-javadoc.jar.asc Wed Jun  8 23:14:40 2022
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCAAdFiEEhu25wzuFFyKOiKj5PkjAxu82K54FAmKhE8sACgkQPkjAxu82
+K55tYhAAkM+GYaZ5QlLmV7cVXnE3wcQ7fK0whSVfCakD2do00Er7cVsBCI2XlPu7
+zus7DItWzrDb01OX2H1Xl9Yu9n3VdRN1Vb8nVZarJEchZAaFO0nKbFw19YDPc+RR
+jzi/7yXabfza5hPdOJfNiT4Bfeer3XqYBsP4uiSZRnTut0AHcDGi1Ia9rZAgoTzE
+Sn5nco3nGy8LyF0rz09kWLXbWGcWw81h5vD5DLYrqTaZICdBN+gPB0bpk2Q7HWeA
+K5oVS3rSGWH3WbjhTTSktCzLj3FPC0SvmORByb/QrSI4jbpPH0Wgr+8b7YHUIdXP
+pnytEDAtlOyJtz6PZhMdwtXz3xRYYP2Mnw5xZNQHS6MbBBaOSwMT1nCnKI9qAn0W
+1tPnVTzaHUMn9Dm/CPZz6EzxHud+ee2K4z2V2U/RVNNIOXgmtkWq9s1YkACk5gGd
+/OSZcOmcWJqzwGVA5tOHF0JsTxQC0cXragLT04XVcXi3mJxryZBYU6zdYO4uQGC4
+anVFk78FDUcMjPQAW57dQDPAdHBpVxW0fIQFF/KcKc1CRwUNrw081y7o7gnspYqB
+cjqwVhpIxg0EUvfymF5b3mRMuBNsd8BAkzGe5NUrh++nRblTFJefSh6dS8M9TOio
+cjGSR9lh3Bp5Hs1ZhyjK3OwnsEq4V8G22+ssHIApgdMHy0ccIAs=
+=zUy0
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-8.11.2-RC1-reva9ed1e5fccbd1a84c78194a1329a7e1a3032ffc6/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-RC1-reva9ed1e5fccbd1a84c78194a1329a7e1a3032ffc6/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-RC1-reva9ed1e5fccbd1a84c78194a1329a7e1a3032ffc6/solr/maven/org/apache/solr/solr-ltr/8.11.2/solr-ltr-8.11.2-javadoc.jar.md5 Wed Jun  8 23:14:40 2022
@@ -0,0 +1 @@
+562d568095da9556f0371c7c4ca726c8
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.11.2-RC1-reva9ed1e5fccbd1a84c78194a1329a7e1a3032ffc6/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-RC1-reva9ed1e5fccbd1a84c78194a1329a7e1a3032ffc6/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-RC1-reva9ed1e5fccbd1a84c78194a1329a7e1a3032ffc6/solr/maven/org/apache/solr/solr-ltr/8.11.2/solr-ltr-8.11.2-javadoc.jar.sha1 Wed Jun  8 23:14:40 2022
@@ -0,0 +1 @@
+dd7e4cd237e3b5e173685062d30fceec043b1cc9
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.11.2-RC1-reva9ed1e5fccbd1a84c78194a1329a7e1a3032ffc6/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-RC1-reva9ed1e5fccbd1a84c78194a1329a7e1a3032ffc6/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-RC1-reva9ed1e5fccbd1a84c78194a1329a7e1a3032ffc6/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-RC1-reva9ed1e5fccbd1a84c78194a1329a7e1a3032ffc6/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-RC1-reva9ed1e5fccbd1a84c78194a1329a7e1a3032ffc6/solr/maven/org/apache/solr/solr-ltr/8.11.2/solr-ltr-8.11.2-sources.jar.asc Wed Jun  8 23:14:40 2022
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCAAdFiEEhu25wzuFFyKOiKj5PkjAxu82K54FAmKhE8sACgkQPkjAxu82
+K56w5A/+NDk5ES1WMAAFIjRCp9wQla4MuLf1+7eQ+pb/1aOhImesIsiwe1H0XbbP
+BYFU8Udc7VCGM64oq5a0qrtjZMCIMafkwoLSjooWiwrfkOeVHUb45PzMoaQeeht2
+8Cscy2RL5107VJmFATEI6DeM5cmQWQd4xfxMq1TjzlbdZe4VN3kdOXItxXdpbDLp
++9s1VYwLzzsm1mrQtKWgSD+7YTL6Qj5n4USmmgsaxkZguu1qndGETu3uLMizXr4R
+7Y3pCJ41wVvIVKf4OQkFr/yLscRH84E0g9w4aIGqeK6j6uy9KIoKWS/EKYLJzHZM
+Uk6GiaAosYOfLcnavWbSOt+xWIMqxB/CVdoy6EucScefCMGVAi6kTAchHf969D0m
+ifJbX9F/S+Gxv5cBjDPhpEh6AtTwYNt6D3basylg9XBa3qZ0mdbl9EdeAGduQfK0
+mq8TJIt5g4aIxQgF3+7e7ZMSKmoYgLabMDTfoY0zvx3wWhO3ViBXPw67dm7NNWWG
+NbVoLSIys+wnttcqS+YfW/OUvta2ZwLY+rUyRLA2yxIQ2yPEUVOw31xpo8LA6CcL
+oxf9Rd5AfNEAh+2McTG30nUz3BUHvzNenae2wPseFqLUmjfr7O1lAKutBevSmqTP
+/8rE5Ik6Gu41nnycbkSdwMfnKyOOZsKPyc1cBXVirTRgWZrGS90=
+=d8+B
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-8.11.2-RC1-reva9ed1e5fccbd1a84c78194a1329a7e1a3032ffc6/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-RC1-reva9ed1e5fccbd1a84c78194a1329a7e1a3032ffc6/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-RC1-reva9ed1e5fccbd1a84c78194a1329a7e1a3032ffc6/solr/maven/org/apache/solr/solr-ltr/8.11.2/solr-ltr-8.11.2-sources.jar.md5 Wed Jun  8 23:14:40 2022
@@ -0,0 +1 @@
+f30c2341954391cac46c4b002abb82d3
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.11.2-RC1-reva9ed1e5fccbd1a84c78194a1329a7e1a3032ffc6/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-RC1-reva9ed1e5fccbd1a84c78194a1329a7e1a3032ffc6/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-RC1-reva9ed1e5fccbd1a84c78194a1329a7e1a3032ffc6/solr/maven/org/apache/solr/solr-ltr/8.11.2/solr-ltr-8.11.2-sources.jar.sha1 Wed Jun  8 23:14:40 2022
@@ -0,0 +1 @@
+0520fabbe7cad7d3ede7112c9980d96647d9e9f7
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.11.2-RC1-reva9ed1e5fccbd1a84c78194a1329a7e1a3032ffc6/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-RC1-reva9ed1e5fccbd1a84c78194a1329a7e1a3032ffc6/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-RC1-reva9ed1e5fccbd1a84c78194a1329a7e1a3032ffc6/solr/maven/org/apache/solr/solr-ltr/8.11.2/solr-ltr-8.11.2.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-8.11.2-RC1-reva9ed1e5fccbd1a84c78194a1329a7e1a3032ffc6/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-RC1-reva9ed1e5fccbd1a84c78194a1329a7e1a3032ffc6/solr/maven/org/apache/solr/solr-ltr/8.11.2/solr-ltr-8.11.2.jar.asc Wed Jun  8 23:14:40 2022
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCAAdFiEEhu25wzuFFyKOiKj5PkjAxu82K54FAmKhE8sACgkQPkjAxu82
+K54gOhAAo7YJa2Nnp9P0UBhZwLUXNmJle6Xt3BWJY+gzBJJIby6yr4nKCMzynZeY
+7/mOYZ5VA7QwrhHYkbgPWN1p0tG7bynVYX10zl01XwWKa5OLsK1Tjf19Ar+zBz9N
+CcFUmgr8t6MzrkmTNeIOyvAwhqM/Qb/M1tKo/vjfopUdJBzQ6GvzDktY8tsA3ZdD
+v4PflmTeT8HUpS+N7Ck6XNbNibnVNaqVeVcXQoXOzgaUz9By2UsXfSAiXoWoPYtb
+h/oBkuY+v9B0CQrEG5SYcJw+e9CLBI/9OhjtmE2GGqGJJmxbf+DhhWtxsjHnLecS
+udmWQm6O2QGuWtokcVEGfHEFXS8TM+BV85srR8FI0etyf8Rz4zbhouwrT9mx2hDG
+tHyiKJOqe0Cob8tK/xfDmNPVZkVcXC/ILGHuXZynE0z2ZgOJJfx+HckmtrmjLvkl
+XbaYUkgUpRwNykF+nNNILr6hCVsQ4yXmMTN98E8NcSGnQCe8qq6rDYlsdAZNgdca
+uwP8dfVSh5uZs5SDw/6kM/GIF3sg4O5R3U8qLPHtK9zPU4326XypMtdJXD5q9E16
+R7fukaU5YiqQNZSy4f0GO+gZY95WLpkP5zOaaYHWXKaVbxmtGff4/ACxMu7uZh23
+u3VOQuV/SMICTdVTkZT2vkOAXzsLgY1irx19bYRcMr1lEah8YFY=
+=PIml
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-8.11.2-RC1-reva9ed1e5fccbd1a84c78194a1329a7e1a3032ffc6/solr/maven/org/apache/solr/solr-ltr/8.11.2/solr-ltr-8.11.2.jar.md5
==============================================================================
--- dev/lucene/lucene-solr-8.11.2-RC1-reva9ed1e5fccbd1a84c78194a1329a7e1a3032ffc6/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-RC1-reva9ed1e5fccbd1a84c78194a1329a7e1a3032ffc6/solr/maven/org/apache/solr/solr-ltr/8.11.2/solr-ltr-8.11.2.jar.md5 Wed Jun  8 23:14:40 2022
@@ -0,0 +1 @@
+aa82ee0e85284ce09160420837c9f5ff
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.11.2-RC1-reva9ed1e5fccbd1a84c78194a1329a7e1a3032ffc6/solr/maven/org/apache/solr/solr-ltr/8.11.2/solr-ltr-8.11.2.jar.sha1
==============================================================================
--- dev/lucene/lucene-solr-8.11.2-RC1-reva9ed1e5fccbd1a84c78194a1329a7e1a3032ffc6/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-RC1-reva9ed1e5fccbd1a84c78194a1329a7e1a3032ffc6/solr/maven/org/apache/solr/solr-ltr/8.11.2/solr-ltr-8.11.2.jar.sha1 Wed Jun  8 23:14:40 2022
@@ -0,0 +1 @@
+27b9cb313fc61bf0229b2957d040342f6608eb3a
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.11.2-RC1-reva9ed1e5fccbd1a84c78194a1329a7e1a3032ffc6/solr/maven/org/apache/solr/solr-ltr/8.11.2/solr-ltr-8.11.2.pom
==============================================================================
--- dev/lucene/lucene-solr-8.11.2-RC1-reva9ed1e5fccbd1a84c78194a1329a7e1a3032ffc6/solr/maven/org/apache/solr/solr-ltr/8.11.2/solr-ltr-8.11.2.pom (added)
+++ dev/lucene/lucene-solr-8.11.2-RC1-reva9ed1e5fccbd1a84c78194a1329a7e1a3032ffc6/solr/maven/org/apache/solr/solr-ltr/8.11.2/solr-ltr-8.11.2.pom Wed Jun  8 23:14:40 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-RC1-reva9ed1e5fccbd1a84c78194a1329a7e1a3032ffc6/solr/maven/org/apache/solr/solr-ltr/8.11.2/solr-ltr-8.11.2.pom.asc
==============================================================================
--- dev/lucene/lucene-solr-8.11.2-RC1-reva9ed1e5fccbd1a84c78194a1329a7e1a3032ffc6/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-RC1-reva9ed1e5fccbd1a84c78194a1329a7e1a3032ffc6/solr/maven/org/apache/solr/solr-ltr/8.11.2/solr-ltr-8.11.2.pom.asc Wed Jun  8 23:14:40 2022
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCAAdFiEEhu25wzuFFyKOiKj5PkjAxu82K54FAmKhE8sACgkQPkjAxu82
+K55MohAAoQTiWWUjuV+eSWWr7R13qCeAk/5XfobdN0vTe9bqqaCQwYh9s/PbEs+o
+G3899WPkQq/PyXI14Vt5ny/azjm5q1rPd1m9OWTNsuyXJD6lZCRpK50s0CB3JEDy
+hsKTeLbaL4Bf0G7qcvRI1xwZsepqzEmKNqdSOoSXEUe6jB9RNwWbffOJRqEtCyKR
+kckJQ90iCisTIRn5QwgKDeWv9u2TwPQe57IpBLK45+QbztKMIpOA0oMqXWKLzVRq
+fI/ypCRxSpZBhSJY0teYsfWiO5YhpVUfkvHvZb8IzkMmKA+GZP/gLHPnCQBUYLKM
++4L2asBwxlTcOz3MahvsFxXixMkBBIWR4QMLGLVEQmSjScMlZZvjFcMIRFKghXby
+3fo7xJG1h3QMvlblB/mODPyCkJaCQA/Qc9Im3EbdFY2ECAF1wn/0UZW1BdilOHnZ
+4yPHFxPAnjfzJ2u+Z0r2hvwe4LdVGdBkA9QBTzANx1C/RziHs33hDxq6s0YC8zyB
+TCJENN/fa4qhtw/m0oS3F3AILzy5zh5DVF9ywWJnIT+jnUvEwtZHN20/UWNLrE1n
+XjvVK4DaSzbCvmKpNAHPOQw13EHo0KaQgT8Igjp55xkBJgjWb32630PesZrxVi44
+yQAYe8KJQN1tZQBjdRgHdi+xsUOL/nZ7U1s7WAix1EUB92k9GeU=
+=0da1
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-8.11.2-RC1-reva9ed1e5fccbd1a84c78194a1329a7e1a3032ffc6/solr/maven/org/apache/solr/solr-ltr/8.11.2/solr-ltr-8.11.2.pom.md5
==============================================================================
--- dev/lucene/lucene-solr-8.11.2-RC1-reva9ed1e5fccbd1a84c78194a1329a7e1a3032ffc6/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-RC1-reva9ed1e5fccbd1a84c78194a1329a7e1a3032ffc6/solr/maven/org/apache/solr/solr-ltr/8.11.2/solr-ltr-8.11.2.pom.md5 Wed Jun  8 23:14:40 2022
@@ -0,0 +1 @@
+c7e48522adec4bb13c3efdd652e29d3b
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.11.2-RC1-reva9ed1e5fccbd1a84c78194a1329a7e1a3032ffc6/solr/maven/org/apache/solr/solr-ltr/8.11.2/solr-ltr-8.11.2.pom.sha1
==============================================================================
--- dev/lucene/lucene-solr-8.11.2-RC1-reva9ed1e5fccbd1a84c78194a1329a7e1a3032ffc6/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-RC1-reva9ed1e5fccbd1a84c78194a1329a7e1a3032ffc6/solr/maven/org/apache/solr/solr-ltr/8.11.2/solr-ltr-8.11.2.pom.sha1 Wed Jun  8 23:14:40 2022
@@ -0,0 +1 @@
+d7c25a98d049e2a2eb7b93ad5731ea6c10ef42c1
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.11.2-RC1-reva9ed1e5fccbd1a84c78194a1329a7e1a3032ffc6/solr/maven/org/apache/solr/solr-ltr/maven-metadata.xml
==============================================================================
--- dev/lucene/lucene-solr-8.11.2-RC1-reva9ed1e5fccbd1a84c78194a1329a7e1a3032ffc6/solr/maven/org/apache/solr/solr-ltr/maven-metadata.xml (added)
+++ dev/lucene/lucene-solr-8.11.2-RC1-reva9ed1e5fccbd1a84c78194a1329a7e1a3032ffc6/solr/maven/org/apache/solr/solr-ltr/maven-metadata.xml Wed Jun  8 23:14:40 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>20220608212515</lastUpdated>
+  </versioning>
+</metadata>

Added: dev/lucene/lucene-solr-8.11.2-RC1-reva9ed1e5fccbd1a84c78194a1329a7e1a3032ffc6/solr/maven/org/apache/solr/solr-ltr/maven-metadata.xml.md5
==============================================================================
--- dev/lucene/lucene-solr-8.11.2-RC1-reva9ed1e5fccbd1a84c78194a1329a7e1a3032ffc6/solr/maven/org/apache/solr/solr-ltr/maven-metadata.xml.md5 (added)
+++ dev/lucene/lucene-solr-8.11.2-RC1-reva9ed1e5fccbd1a84c78194a1329a7e1a3032ffc6/solr/maven/org/apache/solr/solr-ltr/maven-metadata.xml.md5 Wed Jun  8 23:14:40 2022
@@ -0,0 +1 @@
+db7b643f10fc9610e8b9e2b7cc1b2e38
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.11.2-RC1-reva9ed1e5fccbd1a84c78194a1329a7e1a3032ffc6/solr/maven/org/apache/solr/solr-ltr/maven-metadata.xml.sha1
==============================================================================
--- dev/lucene/lucene-solr-8.11.2-RC1-reva9ed1e5fccbd1a84c78194a1329a7e1a3032ffc6/solr/maven/org/apache/solr/solr-ltr/maven-metadata.xml.sha1 (added)
+++ dev/lucene/lucene-solr-8.11.2-RC1-reva9ed1e5fccbd1a84c78194a1329a7e1a3032ffc6/solr/maven/org/apache/solr/solr-ltr/maven-metadata.xml.sha1 Wed Jun  8 23:14:40 2022
@@ -0,0 +1 @@
+d851b0050af7e3d68170db23199cee4832fcd552
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.11.2-RC1-reva9ed1e5fccbd1a84c78194a1329a7e1a3032ffc6/solr/maven/org/apache/solr/solr-parent/8.11.2/solr-parent-8.11.2.pom
==============================================================================
--- dev/lucene/lucene-solr-8.11.2-RC1-reva9ed1e5fccbd1a84c78194a1329a7e1a3032ffc6/solr/maven/org/apache/solr/solr-parent/8.11.2/solr-parent-8.11.2.pom (added)
+++ dev/lucene/lucene-solr-8.11.2-RC1-reva9ed1e5fccbd1a84c78194a1329a7e1a3032ffc6/solr/maven/org/apache/solr/solr-parent/8.11.2/solr-parent-8.11.2.pom Wed Jun  8 23:14:40 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-RC1-reva9ed1e5fccbd1a84c78194a1329a7e1a3032ffc6/solr/maven/org/apache/solr/solr-parent/8.11.2/solr-parent-8.11.2.pom.asc
==============================================================================
--- dev/lucene/lucene-solr-8.11.2-RC1-reva9ed1e5fccbd1a84c78194a1329a7e1a3032ffc6/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-RC1-reva9ed1e5fccbd1a84c78194a1329a7e1a3032ffc6/solr/maven/org/apache/solr/solr-parent/8.11.2/solr-parent-8.11.2.pom.asc Wed Jun  8 23:14:40 2022
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCAAdFiEEhu25wzuFFyKOiKj5PkjAxu82K54FAmKhE8sACgkQPkjAxu82
+K56Row/8CXr8H9IirFb5BXPbsSIfmiPEItcPgXwzn73u1HTi2AU+WJaQ1NS7bLqC
+2xC4f3DEB5//sip1XR7IiQAbcIUv6SbVEe0XtkBS0sbPmcps6ijD0uQxf1oOHYyW
+kjcSzZ+3xkPPrKKewRuJv60mVTNQ2WN3sZb2buYP4XxaKZXNROcP2blcGEjnk5Bz
+jMu/xc0LG6oaCR9qXlEA7y24K1HDt7urFx//HJ1UczPgtrYjPKEjJM0xfno2WSHh
+kvOWKzS4uJLr/KY8TBJJcIPYtnq/U2X5Lg3vhMWCBDP/YTG8j8+EeRD2AHMifctH
+7n3fQUWLlTd0zDfXMWB35skiy82buPLOCkF7/ZL1gvZv2RAEwnqnZIrIhtvkDjV6
+nZsXWMOe3sM5Hz8kmaG9jTFVZWnniz94ggNM41hGiz++UHoY3kjxI8V8TMw5WovU
+GCG9mesnjLkddeGlDSgJ9tcEEopWtVi41ctLg2xckqqJVGUe+X7jOtJV5Ru1Gm1X
+tRIXDQ++LKa4vwViFm2d84N0OgnM41+I3naCXqprrBcENxnqnGz8bUmTpxcDws5b
+ff22dClgMKt1ThSFXoSySrsFjn6Vb3z57TYisR+LmKTjVZT1Mbh4e7qRJj99lwKj
+H9dgIZoSmlOg8ddgxWmrpPewQ2aC+050aaMuKb09PwMYdEWgIWI=
+=TXft
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-8.11.2-RC1-reva9ed1e5fccbd1a84c78194a1329a7e1a3032ffc6/solr/maven/org/apache/solr/solr-parent/8.11.2/solr-parent-8.11.2.pom.md5
==============================================================================
--- dev/lucene/lucene-solr-8.11.2-RC1-reva9ed1e5fccbd1a84c78194a1329a7e1a3032ffc6/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-RC1-reva9ed1e5fccbd1a84c78194a1329a7e1a3032ffc6/solr/maven/org/apache/solr/solr-parent/8.11.2/solr-parent-8.11.2.pom.md5 Wed Jun  8 23:14:40 2022
@@ -0,0 +1 @@
+053eb150a19b1bc3c9abf4987c92faa3
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.11.2-RC1-reva9ed1e5fccbd1a84c78194a1329a7e1a3032ffc6/solr/maven/org/apache/solr/solr-parent/8.11.2/solr-parent-8.11.2.pom.sha1
==============================================================================
--- dev/lucene/lucene-solr-8.11.2-RC1-reva9ed1e5fccbd1a84c78194a1329a7e1a3032ffc6/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-RC1-reva9ed1e5fccbd1a84c78194a1329a7e1a3032ffc6/solr/maven/org/apache/solr/solr-parent/8.11.2/solr-parent-8.11.2.pom.sha1 Wed Jun  8 23:14:40 2022
@@ -0,0 +1 @@
+0167e4f9f2aa2354392f5fd2863e6a12f60a070c
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.11.2-RC1-reva9ed1e5fccbd1a84c78194a1329a7e1a3032ffc6/solr/maven/org/apache/solr/solr-parent/maven-metadata.xml
==============================================================================
--- dev/lucene/lucene-solr-8.11.2-RC1-reva9ed1e5fccbd1a84c78194a1329a7e1a3032ffc6/solr/maven/org/apache/solr/solr-parent/maven-metadata.xml (added)
+++ dev/lucene/lucene-solr-8.11.2-RC1-reva9ed1e5fccbd1a84c78194a1329a7e1a3032ffc6/solr/maven/org/apache/solr/solr-parent/maven-metadata.xml Wed Jun  8 23:14:40 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>20220608212443</lastUpdated>
+  </versioning>
+</metadata>

Added: dev/lucene/lucene-solr-8.11.2-RC1-reva9ed1e5fccbd1a84c78194a1329a7e1a3032ffc6/solr/maven/org/apache/solr/solr-parent/maven-metadata.xml.md5
==============================================================================
--- dev/lucene/lucene-solr-8.11.2-RC1-reva9ed1e5fccbd1a84c78194a1329a7e1a3032ffc6/solr/maven/org/apache/solr/solr-parent/maven-metadata.xml.md5 (added)
+++ dev/lucene/lucene-solr-8.11.2-RC1-reva9ed1e5fccbd1a84c78194a1329a7e1a3032ffc6/solr/maven/org/apache/solr/solr-parent/maven-metadata.xml.md5 Wed Jun  8 23:14:40 2022
@@ -0,0 +1 @@
+7bf94f940e3ecdbba6632f868b132324
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.11.2-RC1-reva9ed1e5fccbd1a84c78194a1329a7e1a3032ffc6/solr/maven/org/apache/solr/solr-parent/maven-metadata.xml.sha1
==============================================================================
--- dev/lucene/lucene-solr-8.11.2-RC1-reva9ed1e5fccbd1a84c78194a1329a7e1a3032ffc6/solr/maven/org/apache/solr/solr-parent/maven-metadata.xml.sha1 (added)
+++ dev/lucene/lucene-solr-8.11.2-RC1-reva9ed1e5fccbd1a84c78194a1329a7e1a3032ffc6/solr/maven/org/apache/solr/solr-parent/maven-metadata.xml.sha1 Wed Jun  8 23:14:40 2022
@@ -0,0 +1 @@
+647387d9a98567f1d12415c74f237a4125e0be54
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.11.2-RC1-reva9ed1e5fccbd1a84c78194a1329a7e1a3032ffc6/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-RC1-reva9ed1e5fccbd1a84c78194a1329a7e1a3032ffc6/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-RC1-reva9ed1e5fccbd1a84c78194a1329a7e1a3032ffc6/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-RC1-reva9ed1e5fccbd1a84c78194a1329a7e1a3032ffc6/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-RC1-reva9ed1e5fccbd1a84c78194a1329a7e1a3032ffc6/solr/maven/org/apache/solr/solr-prometheus-exporter/8.11.2/solr-prometheus-exporter-8.11.2-javadoc.jar.asc Wed Jun  8 23:14:40 2022
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCAAdFiEEhu25wzuFFyKOiKj5PkjAxu82K54FAmKhE8sACgkQPkjAxu82
+K54hhQ//S0EMfSlWqy6IR2dnziecsBXTXRZrlcOJ4rKL/vgECZt80OQM3XFJfJBM
+YDt9HNlI6VJYW3bOS68qInVRSO8r9sVdciN/lif7i7qTvjv4CwTNd7NtmSvSmzs6
+BA8SYBp1NUurPsRyLNk7TXOVmwv4nf9Q7LMcTJe3eOitxEkHj7j9gY4dtcSKPQuR
+v4Tky0CCO5Prf5VQCAYrOQLHAZEd8eohaMgpAt8/iR3jPpOeV8diM+fEO7EwfqRt
+y09puTsO24cya0biuQJBTKiFQGTj7lycnDgez/ZDO55HkiyjhdZ95OvmJ2fvmjmt
+pCtWV3ccwk+CKOmNC9KE1h/GPXcnMOBFSwl10TLEJT32KlBL0AKxeHpQy790gZQL
+hrDKw+Fzo3TE4s9K5DXsim6+KhMA0bf9A7lojyCm0yw+45aE+qmQK6fiBFiR6Hlb
+lN0QwoM2mhyowHcsz/9bBshgIzCq+lG5AkuIL5lD6Pe++er9zzc6fM5392zVvZWo
+7uOJJrn7XvO8I2P6caUM7UfGBkEkqdnAO6GSKhV+5Ctr0iQGTby+qfb7LByaUXBl
+Gpf0oWH5QFmAfLIQyethyZ9cpD+XM0tLs6Z0dEUfSFuT7/hCO11Af4t31v9vz2aT
+TydrjRRKwhyEyBhfmbm/bw/7hyJFTKn0pCiCkzj2WVDOrv3B23U=
+=DbB5
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-8.11.2-RC1-reva9ed1e5fccbd1a84c78194a1329a7e1a3032ffc6/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-RC1-reva9ed1e5fccbd1a84c78194a1329a7e1a3032ffc6/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-RC1-reva9ed1e5fccbd1a84c78194a1329a7e1a3032ffc6/solr/maven/org/apache/solr/solr-prometheus-exporter/8.11.2/solr-prometheus-exporter-8.11.2-javadoc.jar.md5 Wed Jun  8 23:14:40 2022
@@ -0,0 +1 @@
+ad6fc81ed54ef572447595d4d728aed3
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.11.2-RC1-reva9ed1e5fccbd1a84c78194a1329a7e1a3032ffc6/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-RC1-reva9ed1e5fccbd1a84c78194a1329a7e1a3032ffc6/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-RC1-reva9ed1e5fccbd1a84c78194a1329a7e1a3032ffc6/solr/maven/org/apache/solr/solr-prometheus-exporter/8.11.2/solr-prometheus-exporter-8.11.2-javadoc.jar.sha1 Wed Jun  8 23:14:40 2022
@@ -0,0 +1 @@
+958d71ff0e80567f565a4819f62a121dfe62b184
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.11.2-RC1-reva9ed1e5fccbd1a84c78194a1329a7e1a3032ffc6/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-RC1-reva9ed1e5fccbd1a84c78194a1329a7e1a3032ffc6/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-RC1-reva9ed1e5fccbd1a84c78194a1329a7e1a3032ffc6/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-RC1-reva9ed1e5fccbd1a84c78194a1329a7e1a3032ffc6/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-RC1-reva9ed1e5fccbd1a84c78194a1329a7e1a3032ffc6/solr/maven/org/apache/solr/solr-prometheus-exporter/8.11.2/solr-prometheus-exporter-8.11.2-sources.jar.asc Wed Jun  8 23:14:40 2022
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCAAdFiEEhu25wzuFFyKOiKj5PkjAxu82K54FAmKhE8wACgkQPkjAxu82
+K56NnA/+PtkJyIXwUlaKGn3ASkXLdnn3Q0Vg2K1AxJCPt0t6j32+bevQv/Yriagn
+PgYAcF/t2TZQnhaR48DT1DVJwFPbWuegEUF5nnbNP9mFGYY49kB3DQdDrdmOqeRs
+JCzFeJimhSgcFUTRgoB7jBKZn/BaFUMorcZl28y3Gw+5hd+yfafcM6XYBIy/vt2x
+D7ZS1RkXQIxHlVZ26zIplsu0yp0WveAL8YG9mbg5IifpzXyPHVK4PzQYAfPqioUM
+gkbN0MAwa7KakYVp7z02X4oeL9EMZxz6LaCYqH20yM1gXgrsGwBsMa760qfEg6TO
+OGEhLmSMbItvDyvAgco4fFWoQatLMTLeLq6EPMpe4qFGfsDOuTWTmrqlXOMZKXur
+ZVGD0SdaoK8jUj3vJCHwPIpYUAVKX2E6Zst3xwPd4SF7ErRH8dsnTz/eFaWyXk0B
+TRnwWNBJC/r5IXHt5yH5dW13lhIadfNrItp6SOrm8virU3Tfez91jWjy8jPc+jkt
+SApXdVzxirRum9CCB3h+68rL9nszUeALE50VVDgvsJgnP1P5mRk4B5kIFsy8XXmH
+DixH84yCZUvny4fQBG/v0FqJW3TV9wybzE2fED+Zzg7yloHnpojbJhonFAdxPj5w
+f7r9XTalGgJSVukp2sOgt0nKg3BYEZkUezrnxQ05fVQXIhAg8G8=
+=8tfW
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-8.11.2-RC1-reva9ed1e5fccbd1a84c78194a1329a7e1a3032ffc6/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-RC1-reva9ed1e5fccbd1a84c78194a1329a7e1a3032ffc6/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-RC1-reva9ed1e5fccbd1a84c78194a1329a7e1a3032ffc6/solr/maven/org/apache/solr/solr-prometheus-exporter/8.11.2/solr-prometheus-exporter-8.11.2-sources.jar.md5 Wed Jun  8 23:14:40 2022
@@ -0,0 +1 @@
+343e9d117deb668f0ed0034f79702de4
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.11.2-RC1-reva9ed1e5fccbd1a84c78194a1329a7e1a3032ffc6/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-RC1-reva9ed1e5fccbd1a84c78194a1329a7e1a3032ffc6/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-RC1-reva9ed1e5fccbd1a84c78194a1329a7e1a3032ffc6/solr/maven/org/apache/solr/solr-prometheus-exporter/8.11.2/solr-prometheus-exporter-8.11.2-sources.jar.sha1 Wed Jun  8 23:14:40 2022
@@ -0,0 +1 @@
+c872ca04a0ca9ba99a9f8afc7fcd53487c8b8732
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.11.2-RC1-reva9ed1e5fccbd1a84c78194a1329a7e1a3032ffc6/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-RC1-reva9ed1e5fccbd1a84c78194a1329a7e1a3032ffc6/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-RC1-reva9ed1e5fccbd1a84c78194a1329a7e1a3032ffc6/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-RC1-reva9ed1e5fccbd1a84c78194a1329a7e1a3032ffc6/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-RC1-reva9ed1e5fccbd1a84c78194a1329a7e1a3032ffc6/solr/maven/org/apache/solr/solr-prometheus-exporter/8.11.2/solr-prometheus-exporter-8.11.2.jar.asc Wed Jun  8 23:14:40 2022
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCAAdFiEEhu25wzuFFyKOiKj5PkjAxu82K54FAmKhE8wACgkQPkjAxu82
+K56LZw/+NAxLNNlvktSivxcQGu5Cw19qH/j1/ftul4HvVbs5IAu5FIh1dZ8j/D47
+46Dw15S0MPuNPr1K7Ko1YgMmkZjLc2OQxjVt06PNfHZyXfb19CPjFrY2EXq5ZS8J
+i4rsGZI795dD1/1hl8wU9rXjCCuJHzq17QtcztSVdOwoHo6FH0utW0K0Q1yWxcyD
+IoqLRoVKssmVcKl/taTzQqmBBpJG+BGV0Lq3u1mT4xhaJuMAnHbmltmYQ6ooPryD
+WmzuCGDq9g/2yMrYHFo6zUkHEIcKPz6IytxjlJfJmvtfdPcE+KLOZ3oCyXck+ynl
+zMQvmyO5RGtGXqpRxrmJ5A460oo6Mvfju8pb1o8hWAhUwihihfSpxL5I4V85BYIq
+oisFoj6QpXXaF9uzzDOlAIGCkt213yHxHXp1YiUY+ZRtqlsmpgmfPxBFoTCGeuGJ
+JRth43ANX/3UvaHT/hZSAtbTLIFn/kWrIPEdwAMHIdpR3vE59KUOc+oy7omQrZ8W
+fvvabN6FxBUrB2VlwJb+Ng5AzQwRkkKbNkVFGjyUGJLEwZ0hdhuJgi2TOLWME6ZH
+FSWe0FJaDpkk1JI1tCh7JCDsZY3Ddk0Nk3r+N39soylOqYDlkts6JhkKNfAdREdz
+7oi7ofLmFn5kJB+r1lzTfsLeWiLr1uzRGBPFpLVL4LZJRPme8Wo=
+=HW19
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-8.11.2-RC1-reva9ed1e5fccbd1a84c78194a1329a7e1a3032ffc6/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-RC1-reva9ed1e5fccbd1a84c78194a1329a7e1a3032ffc6/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-RC1-reva9ed1e5fccbd1a84c78194a1329a7e1a3032ffc6/solr/maven/org/apache/solr/solr-prometheus-exporter/8.11.2/solr-prometheus-exporter-8.11.2.jar.md5 Wed Jun  8 23:14:40 2022
@@ -0,0 +1 @@
+2a3150dfb547ce769b12178cde6fcf19
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.11.2-RC1-reva9ed1e5fccbd1a84c78194a1329a7e1a3032ffc6/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-RC1-reva9ed1e5fccbd1a84c78194a1329a7e1a3032ffc6/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-RC1-reva9ed1e5fccbd1a84c78194a1329a7e1a3032ffc6/solr/maven/org/apache/solr/solr-prometheus-exporter/8.11.2/solr-prometheus-exporter-8.11.2.jar.sha1 Wed Jun  8 23:14:40 2022
@@ -0,0 +1 @@
+bae5a2b327940e58362444221cb76d528b114f35
\ No newline at end of file