You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by ma...@apache.org on 2021/10/12 22:32:07 UTC

svn commit: r50383 [15/18] - in /dev/lucene/lucene-solr-8.10.1-RC1-rev2f24e6a49d48a032df1f12e146612f59141727a9: ./ lucene/ lucene/changes/ lucene/maven/ lucene/maven/org/ lucene/maven/org/apache/ lucene/maven/org/apache/lucene/ lucene/maven/org/apache/...

Added: dev/lucene/lucene-solr-8.10.1-RC1-rev2f24e6a49d48a032df1f12e146612f59141727a9/solr/maven/org/apache/solr/solr-gcs-repository/8.10.1/solr-gcs-repository-8.10.1.pom
==============================================================================
--- dev/lucene/lucene-solr-8.10.1-RC1-rev2f24e6a49d48a032df1f12e146612f59141727a9/solr/maven/org/apache/solr/solr-gcs-repository/8.10.1/solr-gcs-repository-8.10.1.pom (added)
+++ dev/lucene/lucene-solr-8.10.1-RC1-rev2f24e6a49d48a032df1f12e146612f59141727a9/solr/maven/org/apache/solr/solr-gcs-repository/8.10.1/solr-gcs-repository-8.10.1.pom Tue Oct 12 22:32:06 2021
@@ -0,0 +1,671 @@
+<!--
+  Licensed to the Apache Software Foundation (ASF) under one
+  or more contributor license agreements.  See the NOTICE file
+  distributed with this work for additional information
+  regarding copyright ownership.  The ASF licenses this file
+  to you under the Apache License, Version 2.0 (the
+  "License"); you may not use this file except in compliance
+  with the License.  You may obtain a copy of the License at
+  
+  http://www.apache.org/licenses/LICENSE-2.0
+  
+  Unless required by applicable law or agreed to in writing,
+  software distributed under the License is distributed on an
+  "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+  KIND, either express or implied.  See the License for the
+  specific language governing permissions and limitations
+  under the License.
+-->
+<project xmlns="http://maven.apache.org/POM/4.0.0"
+         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
+  <modelVersion>4.0.0</modelVersion>
+  <parent>
+    <groupId>org.apache.solr</groupId>
+    <artifactId>solr-parent</artifactId>
+    <version>8.10.1</version>
+    <relativePath>../../pom.xml</relativePath>
+  </parent>
+  <groupId>org.apache.solr</groupId>
+  <artifactId>solr-gcs-repository</artifactId>
+  <packaging>jar</packaging>
+  <name>Apache Solr GCS BackupRepository</name>
+  <description>
+    BackupRepository implementation for Google Cloud Storage (GCS)
+  </description>
+  <properties>
+    <module-directory>solr/contrib/gcs-repository</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.api</groupId>
+      <artifactId>api-common</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.google.api</groupId>
+      <artifactId>gax</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.google.api</groupId>
+      <artifactId>gax-httpjson</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.google.api-client</groupId>
+      <artifactId>google-api-client</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.google.api.grpc</groupId>
+      <artifactId>proto-google-common-protos</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.google.api.grpc</groupId>
+      <artifactId>proto-google-iam-v1</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.google.apis</groupId>
+      <artifactId>google-api-services-storage</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.google.auth</groupId>
+      <artifactId>google-auth-library-credentials</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.google.auth</groupId>
+      <artifactId>google-auth-library-oauth2-http</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.google.cloud</groupId>
+      <artifactId>google-cloud-core</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.google.cloud</groupId>
+      <artifactId>google-cloud-core-http</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.google.cloud</groupId>
+      <artifactId>google-cloud-nio</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.google.cloud</groupId>
+      <artifactId>google-cloud-storage</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.google.code.gson</groupId>
+      <artifactId>gson</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.google.errorprone</groupId>
+      <artifactId>error_prone_annotations</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.google.guava</groupId>
+      <artifactId>guava</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.google.http-client</groupId>
+      <artifactId>google-http-client</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.google.http-client</groupId>
+      <artifactId>google-http-client-appengine</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.google.http-client</groupId>
+      <artifactId>google-http-client-jackson2</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.google.j2objc</groupId>
+      <artifactId>j2objc-annotations</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.google.oauth-client</groupId>
+      <artifactId>google-oauth-client</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.google.protobuf</groupId>
+      <artifactId>protobuf-java</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.google.protobuf</groupId>
+      <artifactId>protobuf-java-util</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.grpc</groupId>
+      <artifactId>grpc-context</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.opencensus</groupId>
+      <artifactId>opencensus-api</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>io.opencensus</groupId>
+      <artifactId>opencensus-contrib-http-util</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>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.threeten</groupId>
+      <artifactId>threetenbp</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.xerial.snappy</groupId>
+      <artifactId>snappy-java</artifactId>
+    </dependency>
+  </dependencies>
+</project>

Added: dev/lucene/lucene-solr-8.10.1-RC1-rev2f24e6a49d48a032df1f12e146612f59141727a9/solr/maven/org/apache/solr/solr-gcs-repository/8.10.1/solr-gcs-repository-8.10.1.pom.asc
==============================================================================
--- dev/lucene/lucene-solr-8.10.1-RC1-rev2f24e6a49d48a032df1f12e146612f59141727a9/solr/maven/org/apache/solr/solr-gcs-repository/8.10.1/solr-gcs-repository-8.10.1.pom.asc (added)
+++ dev/lucene/lucene-solr-8.10.1-RC1-rev2f24e6a49d48a032df1f12e146612f59141727a9/solr/maven/org/apache/solr/solr-gcs-repository/8.10.1/solr-gcs-repository-8.10.1.pom.asc Tue Oct 12 22:32:06 2021
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEElyLyX2UAV+JsgDtgptBk2DOzqWkFAmFl4I0ACgkQptBk2DOz
+qWldZg/9FXkTXCO7PkzhHZFIODEdL7LHJQaUPbm1Hq1QIywnBtr1LljNjyffR+z4
+5NUNpq7hWTS7HsuQw2AgrDVmf2gZmsL1qwFfTLsMqr/A5qnLQNAJn/EAmk2g5oFN
+d6dbaywXIdolIDucBkbMDvJNRWouUXOTdJL9Y07nkkR0bqcANEasT6N4zxAeLGQG
+TrE1g01FxlKePzrUf7I/0njFqx2Qr65r9HMhEicWjKlUhaSupEP8dxWyxPcTj2vI
+1LmNhI4b2QlTmkq4nb17BE57dJWCJPbtQFXsdE00iwv97weuk/+WZzDcqGPMNVOU
+FSnpQy/7s/mWnw+5jIoj8N5U/0kgM3ONbl4aIHWYMCy5mioV3z6uNQr/KJ3Wx5Hq
+aGc3E2ASp0hCL/YqaDhEBxm+06ncuGcMB1bvSv1B53T4GDawTkBRnlZ8zkE5u0du
+DEScbne7K5YArIHLumJ/OopHfsTUKkE16nsYQ5EsASWmg1Xun/7pz8pIm+3ey3vo
+odf2bUSZ8M0HjCyNSSdC8HB7lyIGcoDqpCL5mKc8DB2bZBoYG2HKqvDhK54Vmmfp
+r24y8oS08W8nE3vY5mFirTuE79doesEzYVZXZv5oQPGY25laFvhPaRSnqtOrgH5f
+t7L2+bMLjN30Q81Yt7FD8ZtJI5NUrgHmJFrQGerQO+BZFRV+DAo=
+=CI7f
+-----END PGP SIGNATURE-----

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

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

Added: dev/lucene/lucene-solr-8.10.1-RC1-rev2f24e6a49d48a032df1f12e146612f59141727a9/solr/maven/org/apache/solr/solr-gcs-repository/maven-metadata.xml
==============================================================================
--- dev/lucene/lucene-solr-8.10.1-RC1-rev2f24e6a49d48a032df1f12e146612f59141727a9/solr/maven/org/apache/solr/solr-gcs-repository/maven-metadata.xml (added)
+++ dev/lucene/lucene-solr-8.10.1-RC1-rev2f24e6a49d48a032df1f12e146612f59141727a9/solr/maven/org/apache/solr/solr-gcs-repository/maven-metadata.xml Tue Oct 12 22:32:06 2021
@@ -0,0 +1,12 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<metadata>
+  <groupId>org.apache.solr</groupId>
+  <artifactId>solr-gcs-repository</artifactId>
+  <version>8.10.1</version>
+  <versioning>
+    <versions>
+      <version>8.10.1</version>
+    </versions>
+    <lastUpdated>20211012192215</lastUpdated>
+  </versioning>
+</metadata>

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

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

Added: dev/lucene/lucene-solr-8.10.1-RC1-rev2f24e6a49d48a032df1f12e146612f59141727a9/solr/maven/org/apache/solr/solr-jaegertracer-configurator/8.10.1/solr-jaegertracer-configurator-8.10.1-javadoc.jar
==============================================================================
Binary file - no diff available.

Propchange: dev/lucene/lucene-solr-8.10.1-RC1-rev2f24e6a49d48a032df1f12e146612f59141727a9/solr/maven/org/apache/solr/solr-jaegertracer-configurator/8.10.1/solr-jaegertracer-configurator-8.10.1-javadoc.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: dev/lucene/lucene-solr-8.10.1-RC1-rev2f24e6a49d48a032df1f12e146612f59141727a9/solr/maven/org/apache/solr/solr-jaegertracer-configurator/8.10.1/solr-jaegertracer-configurator-8.10.1-javadoc.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-8.10.1-RC1-rev2f24e6a49d48a032df1f12e146612f59141727a9/solr/maven/org/apache/solr/solr-jaegertracer-configurator/8.10.1/solr-jaegertracer-configurator-8.10.1-javadoc.jar.asc (added)
+++ dev/lucene/lucene-solr-8.10.1-RC1-rev2f24e6a49d48a032df1f12e146612f59141727a9/solr/maven/org/apache/solr/solr-jaegertracer-configurator/8.10.1/solr-jaegertracer-configurator-8.10.1-javadoc.jar.asc Tue Oct 12 22:32:06 2021
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEElyLyX2UAV+JsgDtgptBk2DOzqWkFAmFl4I0ACgkQptBk2DOz
+qWkbtg//c8JbMSsUmRXMsAauYBw6PW7pXij9WUdwnxhyUi1gcJTmsXZjVS7bu+tu
+6KF+uqP3iwXT/Gl4ocdh1a1EqEhk0lHDYRcG+Z2gzSU3aIKgyx+mN8RUX3VSChZG
+bdFp5T03gIaPIRrnD0SGl4atscJSBdw3F1MjiuezWC2QDLdKdo/sviornK8oEVEw
+CIOv986hDZ0cac5mbJgQ2y4d13kHOZH/fsrVRkHiyoUNmZY1IqCwcrGrVrzpQfHM
+INC87Qs+OO++Ysf1uw2RAdNywJjR8965HgmRjDiTAeXn0hlAv2Q+VirG9r5xjrtX
+xseriZOXSJtkkOafiaaMIjVKW+K6XUpgvRWRHp7X8sVKzqm9yfWyBF1j7Xbsppvn
+5e3y7ED1F+OvmwZAgCYl7R1qpfVhz6BqbxJ/6Q5eH2HsenPcwYiiYSoS866Ag/3d
+39+F1ej2z0TRHgjtRt4WjL5KpQn+hOaN3ypN1YEWLv80mTu+njy8sTa2xYO7GH72
+Ej5x084kRaQr3dpi5CkTlJzNTAUVyeZxbS0uqiUZwsM7AAFqVdbp8IaXjBMZ0LU8
+7fL5+ziXioZOkbXeN+FtbjeQkdy5kJXoBAyv4WqTtO4iUZEERX+0VyG3KVPKMVkw
+tKDoRt1mBLAgkqk6qLNqySVdMenMHrLOMN76U+sFViN+1g0s+ws=
+=hAGv
+-----END PGP SIGNATURE-----

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

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

Added: dev/lucene/lucene-solr-8.10.1-RC1-rev2f24e6a49d48a032df1f12e146612f59141727a9/solr/maven/org/apache/solr/solr-jaegertracer-configurator/8.10.1/solr-jaegertracer-configurator-8.10.1-sources.jar
==============================================================================
Binary file - no diff available.

Propchange: dev/lucene/lucene-solr-8.10.1-RC1-rev2f24e6a49d48a032df1f12e146612f59141727a9/solr/maven/org/apache/solr/solr-jaegertracer-configurator/8.10.1/solr-jaegertracer-configurator-8.10.1-sources.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: dev/lucene/lucene-solr-8.10.1-RC1-rev2f24e6a49d48a032df1f12e146612f59141727a9/solr/maven/org/apache/solr/solr-jaegertracer-configurator/8.10.1/solr-jaegertracer-configurator-8.10.1-sources.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-8.10.1-RC1-rev2f24e6a49d48a032df1f12e146612f59141727a9/solr/maven/org/apache/solr/solr-jaegertracer-configurator/8.10.1/solr-jaegertracer-configurator-8.10.1-sources.jar.asc (added)
+++ dev/lucene/lucene-solr-8.10.1-RC1-rev2f24e6a49d48a032df1f12e146612f59141727a9/solr/maven/org/apache/solr/solr-jaegertracer-configurator/8.10.1/solr-jaegertracer-configurator-8.10.1-sources.jar.asc Tue Oct 12 22:32:06 2021
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEElyLyX2UAV+JsgDtgptBk2DOzqWkFAmFl4I4ACgkQptBk2DOz
+qWkGmQ//af/HLhHQiHULozVJkVd2KbNVx7QGOeemoQuE8o0C+v/elrTiXzHkDj29
+12L+iwrlTXE5MxiAHabMCuPtmSOqk1RIiz42U8yroUZJtOn/q1Dsj6DeedRp3OS8
+8repdsyEz5DQnjO7WjVRzw1kCe98wD18eoTj6SHql3y4cjJmllr+ug/TDCwjJ3UY
+Xyrg4oOQfry+cPJ/oWTK0bEYpieUKBMCPAH7MRAdvDK0vOPVb2+pQO3LvnEUmrXA
+crsEAOMoGthV7ZjZKrEOzUtwt+9AUSFBqKKLJvFfxz8ycVrXg78yXXgWdyKizsy9
+xq+0ZzkC0PV6s8jyIBfX2rjqBV58XF3s+6OQM7s/aFHMPsNCtzibL0rzgIE7EA1+
+hYQB8/G6dH55P/jc7/m2edPGSr+CZRnzcEB6fY9TvS9B4NNeOjMijESDlyZAc7bq
+qgDlfEOvQnUY2ZnQkUAvO8m0qimveuA4FDnJENqsf3NvDpjX4Zhes0ksEeWurpGx
+yRu7J2+IsQ87P2/C6PLrScOZGE7tNmL1G+p64vz1vmC8Jj0dYwhhgB+RCE2k1c86
+y1rd17jJCqSTDutBzpMdXOylVyHiT6h9TdwwIkVp9vx2BBkRhUZ3YtOjI0p3iCcs
+1oTo6mJjkC3dD90keIZHu9jtNnNx+8CEhKypH50kcxi9fyRJWUU=
+=nOgh
+-----END PGP SIGNATURE-----

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

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

Added: dev/lucene/lucene-solr-8.10.1-RC1-rev2f24e6a49d48a032df1f12e146612f59141727a9/solr/maven/org/apache/solr/solr-jaegertracer-configurator/8.10.1/solr-jaegertracer-configurator-8.10.1.jar
==============================================================================
Binary file - no diff available.

Propchange: dev/lucene/lucene-solr-8.10.1-RC1-rev2f24e6a49d48a032df1f12e146612f59141727a9/solr/maven/org/apache/solr/solr-jaegertracer-configurator/8.10.1/solr-jaegertracer-configurator-8.10.1.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: dev/lucene/lucene-solr-8.10.1-RC1-rev2f24e6a49d48a032df1f12e146612f59141727a9/solr/maven/org/apache/solr/solr-jaegertracer-configurator/8.10.1/solr-jaegertracer-configurator-8.10.1.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-8.10.1-RC1-rev2f24e6a49d48a032df1f12e146612f59141727a9/solr/maven/org/apache/solr/solr-jaegertracer-configurator/8.10.1/solr-jaegertracer-configurator-8.10.1.jar.asc (added)
+++ dev/lucene/lucene-solr-8.10.1-RC1-rev2f24e6a49d48a032df1f12e146612f59141727a9/solr/maven/org/apache/solr/solr-jaegertracer-configurator/8.10.1/solr-jaegertracer-configurator-8.10.1.jar.asc Tue Oct 12 22:32:06 2021
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEElyLyX2UAV+JsgDtgptBk2DOzqWkFAmFl4I8ACgkQptBk2DOz
+qWmi7g//UGJFXpg3dTjcj6hzeK+WjOKA80BJuhZgXC6x5Ca4IEgOq7KL4F6OW33r
+hCsv7H1btA1y/1ytc1g8nQVr+9cKzEb8Hmxt7NtDRw6RFSxpU3fHLSbVXmJ15ilc
+TWbN7hosAfVSdtVKVY1z43BUZOMyJTC4SIA4xZF7RoN+UlyOl7zXNHEBYzqKTghQ
+Edbpv9SfBwh49mrwrfmWuOlJRF+Dm08OgZY+8rgXNvGArb8Oy8f1ImUZ2nCsYcjC
+lbOvB58zg/eObRC7zRg/XmpllEX6lN1d4tKbvzM5ydeoRrIx3u6V1OMFW6Cn8HPg
+5RA0WeJO5coGdmdK5iwkm245Rn+fCYek8BfyD+rxoLCxI+p7IVlD5aAr5jsHjvmM
+ye4ER5OK43jNufVtWEV3bbERjp+Kb8aNnMxeheXOwOf2JWmJsgglxCR1DwybLKrv
+TuBctaAtEfQwOD3P4VkYq6R4SCi70DN4Vy3W3zm+DWFC2olPzW0FYXhRHMcUazz1
+T1jp6xPoM8ViQwmYgC6TeafvGQGUmSlSm/TOA1QxgIqCMsiJbkUvB+ALh5Snbeow
+DuWfaZNyyz54pRzWPz9j5MLUCij+msZYLgs65D/S0Vs9gHqSckgskTnASssD2xmw
+cQzTgyY+ysTUVeCmr6vRWh50xQQuJ2OQLR26/42wC30Q+8Pq35Q=
+=n5En
+-----END PGP SIGNATURE-----

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

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

Added: dev/lucene/lucene-solr-8.10.1-RC1-rev2f24e6a49d48a032df1f12e146612f59141727a9/solr/maven/org/apache/solr/solr-jaegertracer-configurator/8.10.1/solr-jaegertracer-configurator-8.10.1.pom
==============================================================================
--- dev/lucene/lucene-solr-8.10.1-RC1-rev2f24e6a49d48a032df1f12e146612f59141727a9/solr/maven/org/apache/solr/solr-jaegertracer-configurator/8.10.1/solr-jaegertracer-configurator-8.10.1.pom (added)
+++ dev/lucene/lucene-solr-8.10.1-RC1-rev2f24e6a49d48a032df1f12e146612f59141727a9/solr/maven/org/apache/solr/solr-jaegertracer-configurator/8.10.1/solr-jaegertracer-configurator-8.10.1.pom Tue Oct 12 22:32:06 2021
@@ -0,0 +1,583 @@
+<!--
+  Licensed to the Apache Software Foundation (ASF) under one
+  or more contributor license agreements.  See the NOTICE file
+  distributed with this work for additional information
+  regarding copyright ownership.  The ASF licenses this file
+  to you under the Apache License, Version 2.0 (the
+  "License"); you may not use this file except in compliance
+  with the License.  You may obtain a copy of the License at
+
+  http://www.apache.org/licenses/LICENSE-2.0
+
+  Unless required by applicable law or agreed to in writing,
+  software distributed under the License is distributed on an
+  "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+  KIND, either express or implied.  See the License for the
+  specific language governing permissions and limitations
+  under the License.
+-->
+<project xmlns="http://maven.apache.org/POM/4.0.0"
+         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
+  <modelVersion>4.0.0</modelVersion>
+  <parent>
+    <groupId>org.apache.solr</groupId>
+    <artifactId>solr-parent</artifactId>
+    <version>8.10.1</version>
+    <relativePath>../../pom.xml</relativePath>
+  </parent>
+  <groupId>org.apache.solr</groupId>
+  <artifactId>solr-jaegertracer-configurator</artifactId>
+  <packaging>jar</packaging>
+  <name>Apache Solr Jaeger Tracer Configurator Package</name>
+  <description>
+    Apache Solr Jaeger Tracer Configurator Package
+  </description>
+  <properties>
+    <module-directory>solr/contrib/jaegertracer-configurator</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.jaegertracing</groupId>
+      <artifactId>jaeger-core</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>io.jaegertracing</groupId>
+      <artifactId>jaeger-thrift</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.thrift</groupId>
+      <artifactId>libthrift</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>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.xerial.snappy</groupId>
+      <artifactId>snappy-java</artifactId>
+    </dependency>
+  </dependencies>
+</project>

Added: dev/lucene/lucene-solr-8.10.1-RC1-rev2f24e6a49d48a032df1f12e146612f59141727a9/solr/maven/org/apache/solr/solr-jaegertracer-configurator/8.10.1/solr-jaegertracer-configurator-8.10.1.pom.asc
==============================================================================
--- dev/lucene/lucene-solr-8.10.1-RC1-rev2f24e6a49d48a032df1f12e146612f59141727a9/solr/maven/org/apache/solr/solr-jaegertracer-configurator/8.10.1/solr-jaegertracer-configurator-8.10.1.pom.asc (added)
+++ dev/lucene/lucene-solr-8.10.1-RC1-rev2f24e6a49d48a032df1f12e146612f59141727a9/solr/maven/org/apache/solr/solr-jaegertracer-configurator/8.10.1/solr-jaegertracer-configurator-8.10.1.pom.asc Tue Oct 12 22:32:06 2021
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEElyLyX2UAV+JsgDtgptBk2DOzqWkFAmFl4I8ACgkQptBk2DOz
+qWlI5BAApP7ldvfpvpfGNBNJZPG+lqcKJmksEDHNT8EhoaAmjxrLNaH8BNBMEPsx
+7tzRSCaSX/gu+hT82BBnXv+9OtNhX6VA90yZm1UuuvZmcgSYltoSI8Qv+PEqp5j/
++I4pL3ajaWrqCAwRqcZ5Kj4cfuAA1B/0CHVcmgqqijsl6nBkzWNWL0uWnauwTSkU
+ASYemhe4zuEMhZDRyMh0CNfSfc8/FlRxBRF58EcRszjWYxf/lFx0TyIXuNscVx/H
+FXN9hJe3GgiNas+NX934u2e9qHfqzt7H9v3BohPr9km9pakCp3Xje+NVXmkD8cXY
+jr/QE40Lsh4WQLOlb0Y92f4BSqZVJ0+exEJo1hmwiiiX3+OSQD7Wj3uHCQGYqv00
+2sW0AOZXVG9M4Ivj0EcvXGpbfpJd9QpYII7UIayd+1roEJ6RLYCC5uL1m9Rirn/s
+hVCoLs7c7SSAexxnEnEqfcyzy48CGno/pth4rgcYKqVPlI+9wNB6EPIKm3+2s9yS
+l31KGGlDioSvwmwKBhkt1KktLZ/ZhtBX2GSWlrelKYXdHSEoVoFJcX40MeJzSxfN
+23XtPmOeCeGp6wmHcv3+DUEkFrmmT2RgPlg5EFzt8WnXjs0wuUubP3XuxL6YrviT
+o3zTvhPUQHt5PJK1rgWBqESTnZtWpey4QyEOy13TDfqRHBSGqZs=
+=BSjA
+-----END PGP SIGNATURE-----

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

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

Added: dev/lucene/lucene-solr-8.10.1-RC1-rev2f24e6a49d48a032df1f12e146612f59141727a9/solr/maven/org/apache/solr/solr-jaegertracer-configurator/maven-metadata.xml
==============================================================================
--- dev/lucene/lucene-solr-8.10.1-RC1-rev2f24e6a49d48a032df1f12e146612f59141727a9/solr/maven/org/apache/solr/solr-jaegertracer-configurator/maven-metadata.xml (added)
+++ dev/lucene/lucene-solr-8.10.1-RC1-rev2f24e6a49d48a032df1f12e146612f59141727a9/solr/maven/org/apache/solr/solr-jaegertracer-configurator/maven-metadata.xml Tue Oct 12 22:32:06 2021
@@ -0,0 +1,12 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<metadata>
+  <groupId>org.apache.solr</groupId>
+  <artifactId>solr-jaegertracer-configurator</artifactId>
+  <version>8.10.1</version>
+  <versioning>
+    <versions>
+      <version>8.10.1</version>
+    </versions>
+    <lastUpdated>20211012192219</lastUpdated>
+  </versioning>
+</metadata>

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

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

Added: dev/lucene/lucene-solr-8.10.1-RC1-rev2f24e6a49d48a032df1f12e146612f59141727a9/solr/maven/org/apache/solr/solr-langid/8.10.1/solr-langid-8.10.1-javadoc.jar
==============================================================================
Binary file - no diff available.

Propchange: dev/lucene/lucene-solr-8.10.1-RC1-rev2f24e6a49d48a032df1f12e146612f59141727a9/solr/maven/org/apache/solr/solr-langid/8.10.1/solr-langid-8.10.1-javadoc.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: dev/lucene/lucene-solr-8.10.1-RC1-rev2f24e6a49d48a032df1f12e146612f59141727a9/solr/maven/org/apache/solr/solr-langid/8.10.1/solr-langid-8.10.1-javadoc.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-8.10.1-RC1-rev2f24e6a49d48a032df1f12e146612f59141727a9/solr/maven/org/apache/solr/solr-langid/8.10.1/solr-langid-8.10.1-javadoc.jar.asc (added)
+++ dev/lucene/lucene-solr-8.10.1-RC1-rev2f24e6a49d48a032df1f12e146612f59141727a9/solr/maven/org/apache/solr/solr-langid/8.10.1/solr-langid-8.10.1-javadoc.jar.asc Tue Oct 12 22:32:06 2021
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEElyLyX2UAV+JsgDtgptBk2DOzqWkFAmFl4JAACgkQptBk2DOz
+qWlDqQ//ZQFLjYY+5xxgQfTxTIQxhKT5NgKxCzhYa6P2sapa4ndsudHIt1JPn7i3
+7O0pPosqxs0mFnZFUbTYm8xA4Ikx4EbM/XXoqqvOJFHaNSY5CmgqxVMd19Dla8sO
+qNiT+cYXEmXE4c/l2fyw/ELpyw2gkRlmCUdrKVMz8DxAHyiocWQiB5ej9QBI/ZuU
+FggTiBxKiUtNta2hYH0P9VfCXOk9tFUbY2oRbWAzYQTXsZEI8E3gU++HYpBz83MH
+Xdi000yohN5srjRc6/2rSPy/2eaTYQ1mukgQZ+8QVHBRbziUBevqntjyrgvcyVov
+61DinD0n3Nb+s9e7yAZAYyIQgIqV8qqNGSg6AW5eQz/JLEjTAJVLxibOvL6YGZ6P
+CbMmD55p1wCZvGj6/cgJxLHwymipAgPQaJOF6ne2svoM/NGelOldwPK+KkZ79NGg
+Y5LJHkAq9QqS7Qz0NU4Kynqn00qpKhZqaOuAuhJD5rcdU2f22o9BsP+IozvMYWD9
+OzZUXOMC5O6rK+hGY/maCoCjiWxlnle+45vcy+U2OTHKu7CrXALmh1lX5Blm7YgD
+0Xqibzx8YQESenvQINvt8VW62+Dj2I3Ls1mLFr3DQySBpIwUirGE+kjRd4jFJ8LM
+Q+JQRiw+XN10L3gfVAoFRgMK/kvhtSaOabLrOt0rPxseBIFr8oI=
+=ReDE
+-----END PGP SIGNATURE-----

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

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

Added: dev/lucene/lucene-solr-8.10.1-RC1-rev2f24e6a49d48a032df1f12e146612f59141727a9/solr/maven/org/apache/solr/solr-langid/8.10.1/solr-langid-8.10.1-sources.jar
==============================================================================
Binary file - no diff available.

Propchange: dev/lucene/lucene-solr-8.10.1-RC1-rev2f24e6a49d48a032df1f12e146612f59141727a9/solr/maven/org/apache/solr/solr-langid/8.10.1/solr-langid-8.10.1-sources.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: dev/lucene/lucene-solr-8.10.1-RC1-rev2f24e6a49d48a032df1f12e146612f59141727a9/solr/maven/org/apache/solr/solr-langid/8.10.1/solr-langid-8.10.1-sources.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-8.10.1-RC1-rev2f24e6a49d48a032df1f12e146612f59141727a9/solr/maven/org/apache/solr/solr-langid/8.10.1/solr-langid-8.10.1-sources.jar.asc (added)
+++ dev/lucene/lucene-solr-8.10.1-RC1-rev2f24e6a49d48a032df1f12e146612f59141727a9/solr/maven/org/apache/solr/solr-langid/8.10.1/solr-langid-8.10.1-sources.jar.asc Tue Oct 12 22:32:06 2021
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEElyLyX2UAV+JsgDtgptBk2DOzqWkFAmFl4JAACgkQptBk2DOz
+qWkJ6w//YyjCrL0AzCmxPCIs1PE3hcNpNKpQjvgV0y63JjZg0XSn4PFnymEN3F6o
+4f+Wj8/YntO02xOnTiZQRRlqyAdGlkqGPD6IGUcZDKBsLF1aNGGut7af0PCSEiWZ
+vflw1KHIg6ygZJPmXnv36TiJg7GmilsRd+nk/bzuK8hDOdCIE88ZuEvUsSMAGqUm
+9FF7O10F6BJRdz5NMZT7oIhHO0VIlXmMnJtsjCVz28Z/d9V5jfZiGADgs9Aj3qFt
+Ohqe1/tHNFxlntWyXusQe+HfgMt/bogEoeQAEJN4nqinBk6K/qVZbJWxY5Y182ie
+zCzEBxa7LhtB42HS7NLD1o4rAyQW3NV0gn5vxbZ3RJPRY5PmCPKjHxg8lxOG1oQ1
+cFnvKUB8ZUHtxxZehwGVCO5zPf2OhLj15xSAkjkRHdVlM0Qg0f/6hRrA8zjlzN3y
+qTZVgN5qr8NuAlyrt+CqwZ5M/ZpmMbFhIOL5HX+7ANl1N6zBlg/DYJdJggUadp+s
+El4cx5Y9wNR0D8C6PlR5NHOewQXpr+X98R4wNB5sK7FUba/O0TNP7quS3UfLi/xs
+jhABO5yyN0AyZ6hjMQkxkwu/I8fENZM9fIjXrs4qnXw6J2+tpgXRm0AQCw8rkBci
+Sod1Q6YOYVKdCWLeMMAp/zxxm8PY+cJj8ytblFHlNIW/KJejWRg=
+=/ZzV
+-----END PGP SIGNATURE-----

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

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

Added: dev/lucene/lucene-solr-8.10.1-RC1-rev2f24e6a49d48a032df1f12e146612f59141727a9/solr/maven/org/apache/solr/solr-langid/8.10.1/solr-langid-8.10.1.jar
==============================================================================
Binary file - no diff available.

Propchange: dev/lucene/lucene-solr-8.10.1-RC1-rev2f24e6a49d48a032df1f12e146612f59141727a9/solr/maven/org/apache/solr/solr-langid/8.10.1/solr-langid-8.10.1.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: dev/lucene/lucene-solr-8.10.1-RC1-rev2f24e6a49d48a032df1f12e146612f59141727a9/solr/maven/org/apache/solr/solr-langid/8.10.1/solr-langid-8.10.1.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-8.10.1-RC1-rev2f24e6a49d48a032df1f12e146612f59141727a9/solr/maven/org/apache/solr/solr-langid/8.10.1/solr-langid-8.10.1.jar.asc (added)
+++ dev/lucene/lucene-solr-8.10.1-RC1-rev2f24e6a49d48a032df1f12e146612f59141727a9/solr/maven/org/apache/solr/solr-langid/8.10.1/solr-langid-8.10.1.jar.asc Tue Oct 12 22:32:06 2021
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEElyLyX2UAV+JsgDtgptBk2DOzqWkFAmFl4JEACgkQptBk2DOz
+qWm6Lg/+Ppx6JtQdq+i8KRbNKGIpU50ygXnjk7AeGCL/xenZu5UMThfREyAz2VGL
+YxgCy6q/8Mt4wNOfPD8puWGcmB/6MBfjwxUpPDSOnHs6VHaYzu50dMrrB9qAPJaT
+Ru7VqKbX3zq2+bDZbonnkEwkpg0/gJMUb9kkyT7uhE8wp8UBtGiUodgW1NhDYtJa
+9wPf5SZCuP1/CsI1Z1RX/L0bzNj96Udny0K6/RRwgfKJOiCD13w/2uaUAT7fgqyt
+c5tIH2ESVcz+vFnyVc81HNgy6kcTJWj+hWLyInWIJ5FC+CTX8PU8GbZ9zX8xQtDi
+oStfWSBa6IU/seP42yzgB65lTGBR/2iDiVZTlmAOsJvJrxytMxuwxPXuY8WQVoMF
+UfPXarr95uGAkw2LYGe1jycAS7+u3PAPsOL7LLKJhe3YhtX71jkPWRwA9bh7cFgY
+izG83L5fZkIdv9eYjwnoGBtpUfktWjrUbwpGYsInUKFwN/eLZi7iV4poobEr6/I9
+OqiiPgzr4gUjVIwUh9ce5FBHlfHdv3eUsGHZTV7AAn35z6qKRHwXcCbwuAyDieMP
+ZLAH8HdxfE7RZZydJ0xg2Rua447HfCQv3KnUYwWs6VP6IcBP3+T7K3Rt3Rb/17dQ
+uNu3WX6swP3hnkVeI+ftyPstnVlxlN8u2nFsX3Lf2oF5Y72dQNo=
+=YUzb
+-----END PGP SIGNATURE-----

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

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