You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@solr.apache.org by ho...@apache.org on 2023/03/21 05:44:01 UTC

svn commit: r60735 [10/18] - in /dev/solr/solr-9.2.0-RC1-rev-92c5515e2918c22513f7aa527d6c6db943150fea: ./ solr/ solr/changes/ solr/docker/ solr/maven/ solr/maven/org/ solr/maven/org/apache/ solr/maven/org/apache/solr/ solr/maven/org/apache/solr/solr-an...

Added: dev/solr/solr-9.2.0-RC1-rev-92c5515e2918c22513f7aa527d6c6db943150fea/solr/maven/org/apache/solr/solr-hdfs/9.2.0/solr-hdfs-9.2.0.pom
==============================================================================
--- dev/solr/solr-9.2.0-RC1-rev-92c5515e2918c22513f7aa527d6c6db943150fea/solr/maven/org/apache/solr/solr-hdfs/9.2.0/solr-hdfs-9.2.0.pom (added)
+++ dev/solr/solr-9.2.0-RC1-rev-92c5515e2918c22513f7aa527d6c6db943150fea/solr/maven/org/apache/solr/solr-hdfs/9.2.0/solr-hdfs-9.2.0.pom Tue Mar 21 05:43:57 2023
@@ -0,0 +1,484 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project xmlns="http://maven.apache.org/POM/4.0.0" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
+  <modelVersion>4.0.0</modelVersion>
+  <groupId>org.apache.solr</groupId>
+  <artifactId>solr-hdfs</artifactId>
+  <version>9.2.0</version>
+  <name>Apache Solr (module: hdfs)</name>
+  <description>Apache Solr (module: hdfs)</description>
+  <url>https://solr.apache.org/</url>
+  <inceptionYear>2006</inceptionYear>
+  <licenses>
+    <license>
+      <name>Apache 2</name>
+      <url>https://apache.org/licenses/LICENSE-2.0.txt</url>
+    </license>
+  </licenses>
+  <mailingLists>
+    <mailingList>
+      <name>Solr User List</name>
+      <subscribe>users-subscribe@solr.apache.org</subscribe>
+      <unsubscribe>users-unsubscribe@solr.apache.org</unsubscribe>
+      <archive>https://lists.apache.org/list.html?users@solr.apache.org</archive>
+    </mailingList>
+    <mailingList>
+      <name>Solr Developer List</name>
+      <subscribe>dev-subscribe@solr.apache.org</subscribe>
+      <unsubscribe>dev-unsubscribe@solr.apache.org</unsubscribe>
+      <archive>https://lists.apache.org/list.html?dev@solr.apache.org</archive>
+    </mailingList>
+    <mailingList>
+      <name>Solr Commits List</name>
+      <subscribe>commits-subscribe@solr.apache.org</subscribe>
+      <unsubscribe>commits-unsubscribe@solr.apache.org</unsubscribe>
+      <archive>https://lists.apache.org/list.html?commits@solr.apache.org</archive>
+    </mailingList>
+  </mailingLists>
+  <scm>
+    <connection>scm:git:https://gitbox.apache.org/repos/asf/solr.git</connection>
+    <developerConnection>scm:git:https://gitbox.apache.org/repos/asf/solr.git</developerConnection>
+    <url>https://gitbox.apache.org/repos/asf?p=solr.git</url>
+  </scm>
+  <issueManagement>
+    <system>JIRA</system>
+    <url>https://issues.apache.org/jira/browse/SOLR</url>
+  </issueManagement>
+  <ciManagement>
+    <system>Jenkins</system>
+    <url>https://builds.apache.org/job/Solr/</url>
+  </ciManagement>
+  <dependencies>
+    <dependency>
+      <groupId>org.apache.hadoop</groupId>
+      <artifactId>hadoop-client-api</artifactId>
+      <version>3.3.4</version>
+      <scope>compile</scope>
+      <exclusions>
+        <exclusion>
+          <artifactId>log4j</artifactId>
+          <groupId>log4j</groupId>
+        </exclusion>
+        <exclusion>
+          <artifactId>*</artifactId>
+          <groupId>ch.qos.logback</groupId>
+        </exclusion>
+        <exclusion>
+          <artifactId>commons-logging</artifactId>
+          <groupId>commons-logging</groupId>
+        </exclusion>
+        <exclusion>
+          <artifactId>jsr305</artifactId>
+          <groupId>com.google.code.findbugs</groupId>
+        </exclusion>
+        <exclusion>
+          <artifactId>annotations</artifactId>
+          <groupId>com.google.code.findbugs</groupId>
+        </exclusion>
+        <exclusion>
+          <artifactId>javax.annotation-api</artifactId>
+          <groupId>javax.annotation</groupId>
+        </exclusion>
+        <exclusion>
+          <artifactId>slf4j-log4j12</artifactId>
+          <groupId>org.slf4j</groupId>
+        </exclusion>
+        <exclusion>
+          <artifactId>audience-annotations</artifactId>
+          <groupId>org.apache.yetus</groupId>
+        </exclusion>
+        <exclusion>
+          <artifactId>animal-sniffer-annotations</artifactId>
+          <groupId>org.codehaus.mojo</groupId>
+        </exclusion>
+        <exclusion>
+          <artifactId>jcip-annotations</artifactId>
+          <groupId>net.jcip</groupId>
+        </exclusion>
+      </exclusions>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.solr</groupId>
+      <artifactId>solr-core</artifactId>
+      <version>9.2.0</version>
+      <scope>runtime</scope>
+      <exclusions>
+        <exclusion>
+          <artifactId>log4j</artifactId>
+          <groupId>log4j</groupId>
+        </exclusion>
+        <exclusion>
+          <artifactId>*</artifactId>
+          <groupId>ch.qos.logback</groupId>
+        </exclusion>
+        <exclusion>
+          <artifactId>commons-logging</artifactId>
+          <groupId>commons-logging</groupId>
+        </exclusion>
+        <exclusion>
+          <artifactId>jsr305</artifactId>
+          <groupId>com.google.code.findbugs</groupId>
+        </exclusion>
+        <exclusion>
+          <artifactId>annotations</artifactId>
+          <groupId>com.google.code.findbugs</groupId>
+        </exclusion>
+        <exclusion>
+          <artifactId>javax.annotation-api</artifactId>
+          <groupId>javax.annotation</groupId>
+        </exclusion>
+        <exclusion>
+          <artifactId>slf4j-log4j12</artifactId>
+          <groupId>org.slf4j</groupId>
+        </exclusion>
+        <exclusion>
+          <artifactId>audience-annotations</artifactId>
+          <groupId>org.apache.yetus</groupId>
+        </exclusion>
+        <exclusion>
+          <artifactId>animal-sniffer-annotations</artifactId>
+          <groupId>org.codehaus.mojo</groupId>
+        </exclusion>
+        <exclusion>
+          <artifactId>jcip-annotations</artifactId>
+          <groupId>net.jcip</groupId>
+        </exclusion>
+      </exclusions>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.solr</groupId>
+      <artifactId>solr-solrj</artifactId>
+      <version>9.2.0</version>
+      <scope>runtime</scope>
+      <exclusions>
+        <exclusion>
+          <artifactId>log4j</artifactId>
+          <groupId>log4j</groupId>
+        </exclusion>
+        <exclusion>
+          <artifactId>*</artifactId>
+          <groupId>ch.qos.logback</groupId>
+        </exclusion>
+        <exclusion>
+          <artifactId>commons-logging</artifactId>
+          <groupId>commons-logging</groupId>
+        </exclusion>
+        <exclusion>
+          <artifactId>jsr305</artifactId>
+          <groupId>com.google.code.findbugs</groupId>
+        </exclusion>
+        <exclusion>
+          <artifactId>annotations</artifactId>
+          <groupId>com.google.code.findbugs</groupId>
+        </exclusion>
+        <exclusion>
+          <artifactId>javax.annotation-api</artifactId>
+          <groupId>javax.annotation</groupId>
+        </exclusion>
+        <exclusion>
+          <artifactId>slf4j-log4j12</artifactId>
+          <groupId>org.slf4j</groupId>
+        </exclusion>
+        <exclusion>
+          <artifactId>audience-annotations</artifactId>
+          <groupId>org.apache.yetus</groupId>
+        </exclusion>
+        <exclusion>
+          <artifactId>animal-sniffer-annotations</artifactId>
+          <groupId>org.codehaus.mojo</groupId>
+        </exclusion>
+        <exclusion>
+          <artifactId>jcip-annotations</artifactId>
+          <groupId>net.jcip</groupId>
+        </exclusion>
+      </exclusions>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.lucene</groupId>
+      <artifactId>lucene-core</artifactId>
+      <version>9.4.2</version>
+      <scope>runtime</scope>
+      <exclusions>
+        <exclusion>
+          <artifactId>log4j</artifactId>
+          <groupId>log4j</groupId>
+        </exclusion>
+        <exclusion>
+          <artifactId>*</artifactId>
+          <groupId>ch.qos.logback</groupId>
+        </exclusion>
+        <exclusion>
+          <artifactId>commons-logging</artifactId>
+          <groupId>commons-logging</groupId>
+        </exclusion>
+        <exclusion>
+          <artifactId>jsr305</artifactId>
+          <groupId>com.google.code.findbugs</groupId>
+        </exclusion>
+        <exclusion>
+          <artifactId>annotations</artifactId>
+          <groupId>com.google.code.findbugs</groupId>
+        </exclusion>
+        <exclusion>
+          <artifactId>javax.annotation-api</artifactId>
+          <groupId>javax.annotation</groupId>
+        </exclusion>
+        <exclusion>
+          <artifactId>slf4j-log4j12</artifactId>
+          <groupId>org.slf4j</groupId>
+        </exclusion>
+        <exclusion>
+          <artifactId>audience-annotations</artifactId>
+          <groupId>org.apache.yetus</groupId>
+        </exclusion>
+        <exclusion>
+          <artifactId>animal-sniffer-annotations</artifactId>
+          <groupId>org.codehaus.mojo</groupId>
+        </exclusion>
+        <exclusion>
+          <artifactId>jcip-annotations</artifactId>
+          <groupId>net.jcip</groupId>
+        </exclusion>
+      </exclusions>
+    </dependency>
+    <dependency>
+      <groupId>org.slf4j</groupId>
+      <artifactId>slf4j-api</artifactId>
+      <version>2.0.6</version>
+      <scope>runtime</scope>
+      <exclusions>
+        <exclusion>
+          <artifactId>log4j</artifactId>
+          <groupId>log4j</groupId>
+        </exclusion>
+        <exclusion>
+          <artifactId>*</artifactId>
+          <groupId>ch.qos.logback</groupId>
+        </exclusion>
+        <exclusion>
+          <artifactId>commons-logging</artifactId>
+          <groupId>commons-logging</groupId>
+        </exclusion>
+        <exclusion>
+          <artifactId>jsr305</artifactId>
+          <groupId>com.google.code.findbugs</groupId>
+        </exclusion>
+        <exclusion>
+          <artifactId>annotations</artifactId>
+          <groupId>com.google.code.findbugs</groupId>
+        </exclusion>
+        <exclusion>
+          <artifactId>javax.annotation-api</artifactId>
+          <groupId>javax.annotation</groupId>
+        </exclusion>
+        <exclusion>
+          <artifactId>slf4j-log4j12</artifactId>
+          <groupId>org.slf4j</groupId>
+        </exclusion>
+        <exclusion>
+          <artifactId>audience-annotations</artifactId>
+          <groupId>org.apache.yetus</groupId>
+        </exclusion>
+        <exclusion>
+          <artifactId>animal-sniffer-annotations</artifactId>
+          <groupId>org.codehaus.mojo</groupId>
+        </exclusion>
+        <exclusion>
+          <artifactId>jcip-annotations</artifactId>
+          <groupId>net.jcip</groupId>
+        </exclusion>
+      </exclusions>
+    </dependency>
+    <dependency>
+      <groupId>com.google.guava</groupId>
+      <artifactId>guava</artifactId>
+      <version>31.1-jre</version>
+      <scope>runtime</scope>
+      <exclusions>
+        <exclusion>
+          <artifactId>log4j</artifactId>
+          <groupId>log4j</groupId>
+        </exclusion>
+        <exclusion>
+          <artifactId>*</artifactId>
+          <groupId>ch.qos.logback</groupId>
+        </exclusion>
+        <exclusion>
+          <artifactId>commons-logging</artifactId>
+          <groupId>commons-logging</groupId>
+        </exclusion>
+        <exclusion>
+          <artifactId>jsr305</artifactId>
+          <groupId>com.google.code.findbugs</groupId>
+        </exclusion>
+        <exclusion>
+          <artifactId>annotations</artifactId>
+          <groupId>com.google.code.findbugs</groupId>
+        </exclusion>
+        <exclusion>
+          <artifactId>javax.annotation-api</artifactId>
+          <groupId>javax.annotation</groupId>
+        </exclusion>
+        <exclusion>
+          <artifactId>slf4j-log4j12</artifactId>
+          <groupId>org.slf4j</groupId>
+        </exclusion>
+        <exclusion>
+          <artifactId>audience-annotations</artifactId>
+          <groupId>org.apache.yetus</groupId>
+        </exclusion>
+        <exclusion>
+          <artifactId>animal-sniffer-annotations</artifactId>
+          <groupId>org.codehaus.mojo</groupId>
+        </exclusion>
+        <exclusion>
+          <artifactId>jcip-annotations</artifactId>
+          <groupId>net.jcip</groupId>
+        </exclusion>
+      </exclusions>
+    </dependency>
+    <dependency>
+      <groupId>com.github.ben-manes.caffeine</groupId>
+      <artifactId>caffeine</artifactId>
+      <version>3.1.5</version>
+      <scope>runtime</scope>
+      <exclusions>
+        <exclusion>
+          <artifactId>log4j</artifactId>
+          <groupId>log4j</groupId>
+        </exclusion>
+        <exclusion>
+          <artifactId>*</artifactId>
+          <groupId>ch.qos.logback</groupId>
+        </exclusion>
+        <exclusion>
+          <artifactId>commons-logging</artifactId>
+          <groupId>commons-logging</groupId>
+        </exclusion>
+        <exclusion>
+          <artifactId>jsr305</artifactId>
+          <groupId>com.google.code.findbugs</groupId>
+        </exclusion>
+        <exclusion>
+          <artifactId>annotations</artifactId>
+          <groupId>com.google.code.findbugs</groupId>
+        </exclusion>
+        <exclusion>
+          <artifactId>javax.annotation-api</artifactId>
+          <groupId>javax.annotation</groupId>
+        </exclusion>
+        <exclusion>
+          <artifactId>slf4j-log4j12</artifactId>
+          <groupId>org.slf4j</groupId>
+        </exclusion>
+        <exclusion>
+          <artifactId>audience-annotations</artifactId>
+          <groupId>org.apache.yetus</groupId>
+        </exclusion>
+        <exclusion>
+          <artifactId>animal-sniffer-annotations</artifactId>
+          <groupId>org.codehaus.mojo</groupId>
+        </exclusion>
+        <exclusion>
+          <artifactId>jcip-annotations</artifactId>
+          <groupId>net.jcip</groupId>
+        </exclusion>
+      </exclusions>
+    </dependency>
+    <dependency>
+      <groupId>commons-cli</groupId>
+      <artifactId>commons-cli</artifactId>
+      <version>1.5.0</version>
+      <scope>runtime</scope>
+      <exclusions>
+        <exclusion>
+          <artifactId>log4j</artifactId>
+          <groupId>log4j</groupId>
+        </exclusion>
+        <exclusion>
+          <artifactId>*</artifactId>
+          <groupId>ch.qos.logback</groupId>
+        </exclusion>
+        <exclusion>
+          <artifactId>commons-logging</artifactId>
+          <groupId>commons-logging</groupId>
+        </exclusion>
+        <exclusion>
+          <artifactId>jsr305</artifactId>
+          <groupId>com.google.code.findbugs</groupId>
+        </exclusion>
+        <exclusion>
+          <artifactId>annotations</artifactId>
+          <groupId>com.google.code.findbugs</groupId>
+        </exclusion>
+        <exclusion>
+          <artifactId>javax.annotation-api</artifactId>
+          <groupId>javax.annotation</groupId>
+        </exclusion>
+        <exclusion>
+          <artifactId>slf4j-log4j12</artifactId>
+          <groupId>org.slf4j</groupId>
+        </exclusion>
+        <exclusion>
+          <artifactId>audience-annotations</artifactId>
+          <groupId>org.apache.yetus</groupId>
+        </exclusion>
+        <exclusion>
+          <artifactId>animal-sniffer-annotations</artifactId>
+          <groupId>org.codehaus.mojo</groupId>
+        </exclusion>
+        <exclusion>
+          <artifactId>jcip-annotations</artifactId>
+          <groupId>net.jcip</groupId>
+        </exclusion>
+      </exclusions>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.hadoop</groupId>
+      <artifactId>hadoop-client-runtime</artifactId>
+      <version>3.3.4</version>
+      <scope>runtime</scope>
+      <exclusions>
+        <exclusion>
+          <artifactId>log4j</artifactId>
+          <groupId>log4j</groupId>
+        </exclusion>
+        <exclusion>
+          <artifactId>*</artifactId>
+          <groupId>ch.qos.logback</groupId>
+        </exclusion>
+        <exclusion>
+          <artifactId>commons-logging</artifactId>
+          <groupId>commons-logging</groupId>
+        </exclusion>
+        <exclusion>
+          <artifactId>jsr305</artifactId>
+          <groupId>com.google.code.findbugs</groupId>
+        </exclusion>
+        <exclusion>
+          <artifactId>annotations</artifactId>
+          <groupId>com.google.code.findbugs</groupId>
+        </exclusion>
+        <exclusion>
+          <artifactId>javax.annotation-api</artifactId>
+          <groupId>javax.annotation</groupId>
+        </exclusion>
+        <exclusion>
+          <artifactId>slf4j-log4j12</artifactId>
+          <groupId>org.slf4j</groupId>
+        </exclusion>
+        <exclusion>
+          <artifactId>audience-annotations</artifactId>
+          <groupId>org.apache.yetus</groupId>
+        </exclusion>
+        <exclusion>
+          <artifactId>animal-sniffer-annotations</artifactId>
+          <groupId>org.codehaus.mojo</groupId>
+        </exclusion>
+        <exclusion>
+          <artifactId>jcip-annotations</artifactId>
+          <groupId>net.jcip</groupId>
+        </exclusion>
+      </exclusions>
+    </dependency>
+  </dependencies>
+</project>

Added: dev/solr/solr-9.2.0-RC1-rev-92c5515e2918c22513f7aa527d6c6db943150fea/solr/maven/org/apache/solr/solr-hdfs/9.2.0/solr-hdfs-9.2.0.pom.asc
==============================================================================
--- dev/solr/solr-9.2.0-RC1-rev-92c5515e2918c22513f7aa527d6c6db943150fea/solr/maven/org/apache/solr/solr-hdfs/9.2.0/solr-hdfs-9.2.0.pom.asc (added)
+++ dev/solr/solr-9.2.0-RC1-rev-92c5515e2918c22513f7aa527d6c6db943150fea/solr/maven/org/apache/solr/solr-hdfs/9.2.0/solr-hdfs-9.2.0.pom.asc Tue Mar 21 05:43:57 2023
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: BCPG v1.68
+
+iQIzBAABCAAdFiEEUOPuHJHH4MtN+wB7NpQk/Jjz9uwFAmQZCP4ACgkQNpQk/Jjz
+9uzefBAA2iUNhTbiMUr6t/PRv302kS0p/FgWbW4vHxnVe5CFB++bpM5mV/le2pSY
+JxAfJJJRxbL/6ewfX1Q/PkTx6jDXIHJ0dLiYVJmvC5WBMxCEssZzQmwiK1o4PGhf
+Yw5lQt6AfJrHIiTrRYZx7UrsDPK5SeyYNf4dxwHcMIks/t7EZuqkr3X17SHKN7m8
+jejyX8KYz3HmhIDzzHQrhWjht8s3uQXXP0eHkSW/BvidlhAFfI3M4FkSQ4qupRNG
+f4gxgpVOe0FFY0aD8r4UIJ2lFzI/O89fBK6aGAq+ankxsgHVB+5d8kBHbw/8KJRg
+7E1v7I3gP8MOEk+mq3+M8rRra8ZjpAPznWqy6V92vfkgUEM4ejg61xKublumifd+
+DfOHLII4mWoj/tyvtLIbl2C4IqKY93wG/0V1XrW2xn1CVdfVXVkZdLx50X4RzQND
+bn9Bk8Txb9CaUrmpHCzuyKu/gGh59Kay4FA8ggdLfsurVFBpXN9ppjroBQlMHd+G
+MWHBzEITdGoQaoMt8RSKI71fs3cxmDjRMi7Q4N3FA+RvfA040WZroAc/4MOw8tJd
+lGGXo5lVlkIBnLLIrgBQpTOw3zD8z1TQlXbf5cN4eCo2AvCC9Zl9q5PK7W93BSIg
+Bs9Wxi6iBJroFf185oDzuBhjU3D7wUvcAJ8QdSfJah+HFuDVswA=
+=xN35
+-----END PGP SIGNATURE-----

Added: dev/solr/solr-9.2.0-RC1-rev-92c5515e2918c22513f7aa527d6c6db943150fea/solr/maven/org/apache/solr/solr-hdfs/9.2.0/solr-hdfs-9.2.0.pom.asc.md5
==============================================================================
--- dev/solr/solr-9.2.0-RC1-rev-92c5515e2918c22513f7aa527d6c6db943150fea/solr/maven/org/apache/solr/solr-hdfs/9.2.0/solr-hdfs-9.2.0.pom.asc.md5 (added)
+++ dev/solr/solr-9.2.0-RC1-rev-92c5515e2918c22513f7aa527d6c6db943150fea/solr/maven/org/apache/solr/solr-hdfs/9.2.0/solr-hdfs-9.2.0.pom.asc.md5 Tue Mar 21 05:43:57 2023
@@ -0,0 +1 @@
+086ae168161771d0b6de57e27ceeb2ef
\ No newline at end of file

Added: dev/solr/solr-9.2.0-RC1-rev-92c5515e2918c22513f7aa527d6c6db943150fea/solr/maven/org/apache/solr/solr-hdfs/9.2.0/solr-hdfs-9.2.0.pom.asc.sha1
==============================================================================
--- dev/solr/solr-9.2.0-RC1-rev-92c5515e2918c22513f7aa527d6c6db943150fea/solr/maven/org/apache/solr/solr-hdfs/9.2.0/solr-hdfs-9.2.0.pom.asc.sha1 (added)
+++ dev/solr/solr-9.2.0-RC1-rev-92c5515e2918c22513f7aa527d6c6db943150fea/solr/maven/org/apache/solr/solr-hdfs/9.2.0/solr-hdfs-9.2.0.pom.asc.sha1 Tue Mar 21 05:43:57 2023
@@ -0,0 +1 @@
+75a08954ce0995234057af9bf31b16d6fc94a931
\ No newline at end of file

Added: dev/solr/solr-9.2.0-RC1-rev-92c5515e2918c22513f7aa527d6c6db943150fea/solr/maven/org/apache/solr/solr-hdfs/9.2.0/solr-hdfs-9.2.0.pom.asc.sha256
==============================================================================
--- dev/solr/solr-9.2.0-RC1-rev-92c5515e2918c22513f7aa527d6c6db943150fea/solr/maven/org/apache/solr/solr-hdfs/9.2.0/solr-hdfs-9.2.0.pom.asc.sha256 (added)
+++ dev/solr/solr-9.2.0-RC1-rev-92c5515e2918c22513f7aa527d6c6db943150fea/solr/maven/org/apache/solr/solr-hdfs/9.2.0/solr-hdfs-9.2.0.pom.asc.sha256 Tue Mar 21 05:43:57 2023
@@ -0,0 +1 @@
+4e36650bea95c29e61178d8752224637c554c062d5dbae0f2eea7722806dee2c
\ No newline at end of file

Added: dev/solr/solr-9.2.0-RC1-rev-92c5515e2918c22513f7aa527d6c6db943150fea/solr/maven/org/apache/solr/solr-hdfs/9.2.0/solr-hdfs-9.2.0.pom.asc.sha512
==============================================================================
--- dev/solr/solr-9.2.0-RC1-rev-92c5515e2918c22513f7aa527d6c6db943150fea/solr/maven/org/apache/solr/solr-hdfs/9.2.0/solr-hdfs-9.2.0.pom.asc.sha512 (added)
+++ dev/solr/solr-9.2.0-RC1-rev-92c5515e2918c22513f7aa527d6c6db943150fea/solr/maven/org/apache/solr/solr-hdfs/9.2.0/solr-hdfs-9.2.0.pom.asc.sha512 Tue Mar 21 05:43:57 2023
@@ -0,0 +1 @@
+84d928d4fa649cc2a530932610b90b709d52cab961a3df063c6467ebd888f3e0691f0bf105b7be07c3faacde01de5410babe913652262d42bc403058528bbf31
\ No newline at end of file

Added: dev/solr/solr-9.2.0-RC1-rev-92c5515e2918c22513f7aa527d6c6db943150fea/solr/maven/org/apache/solr/solr-hdfs/9.2.0/solr-hdfs-9.2.0.pom.md5
==============================================================================
--- dev/solr/solr-9.2.0-RC1-rev-92c5515e2918c22513f7aa527d6c6db943150fea/solr/maven/org/apache/solr/solr-hdfs/9.2.0/solr-hdfs-9.2.0.pom.md5 (added)
+++ dev/solr/solr-9.2.0-RC1-rev-92c5515e2918c22513f7aa527d6c6db943150fea/solr/maven/org/apache/solr/solr-hdfs/9.2.0/solr-hdfs-9.2.0.pom.md5 Tue Mar 21 05:43:57 2023
@@ -0,0 +1 @@
+0dcc154b0d1732dbaded14745891209f
\ No newline at end of file

Added: dev/solr/solr-9.2.0-RC1-rev-92c5515e2918c22513f7aa527d6c6db943150fea/solr/maven/org/apache/solr/solr-hdfs/9.2.0/solr-hdfs-9.2.0.pom.sha1
==============================================================================
--- dev/solr/solr-9.2.0-RC1-rev-92c5515e2918c22513f7aa527d6c6db943150fea/solr/maven/org/apache/solr/solr-hdfs/9.2.0/solr-hdfs-9.2.0.pom.sha1 (added)
+++ dev/solr/solr-9.2.0-RC1-rev-92c5515e2918c22513f7aa527d6c6db943150fea/solr/maven/org/apache/solr/solr-hdfs/9.2.0/solr-hdfs-9.2.0.pom.sha1 Tue Mar 21 05:43:57 2023
@@ -0,0 +1 @@
+1162b353e17d5571f197d0c47557dbad93743fe2
\ No newline at end of file

Added: dev/solr/solr-9.2.0-RC1-rev-92c5515e2918c22513f7aa527d6c6db943150fea/solr/maven/org/apache/solr/solr-hdfs/9.2.0/solr-hdfs-9.2.0.pom.sha256
==============================================================================
--- dev/solr/solr-9.2.0-RC1-rev-92c5515e2918c22513f7aa527d6c6db943150fea/solr/maven/org/apache/solr/solr-hdfs/9.2.0/solr-hdfs-9.2.0.pom.sha256 (added)
+++ dev/solr/solr-9.2.0-RC1-rev-92c5515e2918c22513f7aa527d6c6db943150fea/solr/maven/org/apache/solr/solr-hdfs/9.2.0/solr-hdfs-9.2.0.pom.sha256 Tue Mar 21 05:43:57 2023
@@ -0,0 +1 @@
+23799928c12ad9180a1cdac0e7b5a12e9b2e1d00650a1f766be929fae636a70c
\ No newline at end of file

Added: dev/solr/solr-9.2.0-RC1-rev-92c5515e2918c22513f7aa527d6c6db943150fea/solr/maven/org/apache/solr/solr-hdfs/9.2.0/solr-hdfs-9.2.0.pom.sha512
==============================================================================
--- dev/solr/solr-9.2.0-RC1-rev-92c5515e2918c22513f7aa527d6c6db943150fea/solr/maven/org/apache/solr/solr-hdfs/9.2.0/solr-hdfs-9.2.0.pom.sha512 (added)
+++ dev/solr/solr-9.2.0-RC1-rev-92c5515e2918c22513f7aa527d6c6db943150fea/solr/maven/org/apache/solr/solr-hdfs/9.2.0/solr-hdfs-9.2.0.pom.sha512 Tue Mar 21 05:43:57 2023
@@ -0,0 +1 @@
+849131633b4bb9567b6ba58b02b4262d9a7f1105d1c3024d2616175fdb698b2d28c337d310d009f8c09fee5e4c936366667b11351fc722e0ff7f3cc4d1c9716e
\ No newline at end of file

Added: dev/solr/solr-9.2.0-RC1-rev-92c5515e2918c22513f7aa527d6c6db943150fea/solr/maven/org/apache/solr/solr-hdfs/maven-metadata.xml
==============================================================================
--- dev/solr/solr-9.2.0-RC1-rev-92c5515e2918c22513f7aa527d6c6db943150fea/solr/maven/org/apache/solr/solr-hdfs/maven-metadata.xml (added)
+++ dev/solr/solr-9.2.0-RC1-rev-92c5515e2918c22513f7aa527d6c6db943150fea/solr/maven/org/apache/solr/solr-hdfs/maven-metadata.xml Tue Mar 21 05:43:57 2023
@@ -0,0 +1,13 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<metadata>
+  <groupId>org.apache.solr</groupId>
+  <artifactId>solr-hdfs</artifactId>
+  <versioning>
+    <latest>9.2.0</latest>
+    <release>9.2.0</release>
+    <versions>
+      <version>9.2.0</version>
+    </versions>
+    <lastUpdated>20230321013142</lastUpdated>
+  </versioning>
+</metadata>

Added: dev/solr/solr-9.2.0-RC1-rev-92c5515e2918c22513f7aa527d6c6db943150fea/solr/maven/org/apache/solr/solr-hdfs/maven-metadata.xml.md5
==============================================================================
--- dev/solr/solr-9.2.0-RC1-rev-92c5515e2918c22513f7aa527d6c6db943150fea/solr/maven/org/apache/solr/solr-hdfs/maven-metadata.xml.md5 (added)
+++ dev/solr/solr-9.2.0-RC1-rev-92c5515e2918c22513f7aa527d6c6db943150fea/solr/maven/org/apache/solr/solr-hdfs/maven-metadata.xml.md5 Tue Mar 21 05:43:57 2023
@@ -0,0 +1 @@
+ae932ebd20522b698d964499ab7e5bca
\ No newline at end of file

Added: dev/solr/solr-9.2.0-RC1-rev-92c5515e2918c22513f7aa527d6c6db943150fea/solr/maven/org/apache/solr/solr-hdfs/maven-metadata.xml.sha1
==============================================================================
--- dev/solr/solr-9.2.0-RC1-rev-92c5515e2918c22513f7aa527d6c6db943150fea/solr/maven/org/apache/solr/solr-hdfs/maven-metadata.xml.sha1 (added)
+++ dev/solr/solr-9.2.0-RC1-rev-92c5515e2918c22513f7aa527d6c6db943150fea/solr/maven/org/apache/solr/solr-hdfs/maven-metadata.xml.sha1 Tue Mar 21 05:43:57 2023
@@ -0,0 +1 @@
+7c1354a031d91923a9eb20da90f357c8919e5314
\ No newline at end of file

Added: dev/solr/solr-9.2.0-RC1-rev-92c5515e2918c22513f7aa527d6c6db943150fea/solr/maven/org/apache/solr/solr-hdfs/maven-metadata.xml.sha256
==============================================================================
--- dev/solr/solr-9.2.0-RC1-rev-92c5515e2918c22513f7aa527d6c6db943150fea/solr/maven/org/apache/solr/solr-hdfs/maven-metadata.xml.sha256 (added)
+++ dev/solr/solr-9.2.0-RC1-rev-92c5515e2918c22513f7aa527d6c6db943150fea/solr/maven/org/apache/solr/solr-hdfs/maven-metadata.xml.sha256 Tue Mar 21 05:43:57 2023
@@ -0,0 +1 @@
+5a0423188914d459a99b81344083875122607170eb7c2f2f5a116d296965ac7b
\ No newline at end of file

Added: dev/solr/solr-9.2.0-RC1-rev-92c5515e2918c22513f7aa527d6c6db943150fea/solr/maven/org/apache/solr/solr-hdfs/maven-metadata.xml.sha512
==============================================================================
--- dev/solr/solr-9.2.0-RC1-rev-92c5515e2918c22513f7aa527d6c6db943150fea/solr/maven/org/apache/solr/solr-hdfs/maven-metadata.xml.sha512 (added)
+++ dev/solr/solr-9.2.0-RC1-rev-92c5515e2918c22513f7aa527d6c6db943150fea/solr/maven/org/apache/solr/solr-hdfs/maven-metadata.xml.sha512 Tue Mar 21 05:43:57 2023
@@ -0,0 +1 @@
+2ccf70fd7f1aa2d8b2d4419c401da8d72e55fce2445e1e094e04da937da70c881abea2995ba1e087b202034ab0ca7e303e42fe159202265a7e0ba07db3829898
\ No newline at end of file

Added: dev/solr/solr-9.2.0-RC1-rev-92c5515e2918c22513f7aa527d6c6db943150fea/solr/maven/org/apache/solr/solr-jaegertracer-configurator/9.2.0/solr-jaegertracer-configurator-9.2.0-javadoc.jar
==============================================================================
Binary file - no diff available.

Propchange: dev/solr/solr-9.2.0-RC1-rev-92c5515e2918c22513f7aa527d6c6db943150fea/solr/maven/org/apache/solr/solr-jaegertracer-configurator/9.2.0/solr-jaegertracer-configurator-9.2.0-javadoc.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: dev/solr/solr-9.2.0-RC1-rev-92c5515e2918c22513f7aa527d6c6db943150fea/solr/maven/org/apache/solr/solr-jaegertracer-configurator/9.2.0/solr-jaegertracer-configurator-9.2.0-javadoc.jar.asc
==============================================================================
--- dev/solr/solr-9.2.0-RC1-rev-92c5515e2918c22513f7aa527d6c6db943150fea/solr/maven/org/apache/solr/solr-jaegertracer-configurator/9.2.0/solr-jaegertracer-configurator-9.2.0-javadoc.jar.asc (added)
+++ dev/solr/solr-9.2.0-RC1-rev-92c5515e2918c22513f7aa527d6c6db943150fea/solr/maven/org/apache/solr/solr-jaegertracer-configurator/9.2.0/solr-jaegertracer-configurator-9.2.0-javadoc.jar.asc Tue Mar 21 05:43:57 2023
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: BCPG v1.68
+
+iQIzBAABCAAdFiEEUOPuHJHH4MtN+wB7NpQk/Jjz9uwFAmQZCP8ACgkQNpQk/Jjz
+9uxurRAAh3Kh832rGxBUyuzjkNBJoskVVphe4L/TYBeFimjFz6yyZR/K4lk/UdXH
+4INhVjNpDCgLAYEL/A6b0PjLI81TM3L69fys+n7unbTuY1U6/ZPlNfyAs7yyupBg
+yvnwszmIrv5hDbUCrWgZJMd5u0zrK5YnxBm6UVWinA0/YhqRegtPspSVljfJiBLU
+gafDlkdSK5LO9WgFUVgxO9KcJ9D21KuupeV5yCrQ12HRjpJpNQO9xYdEePVnC5H3
+JuuS+CGMcZq+QHmIf9wubY/az/mbPOtZpv9a1mxTxOQ8le/dWk+oA6cTTg2coefJ
+v2eXeZUn3Fichtk7hQ48h3q3sQHRZ+/2tjMdDQsH9BEprmkEzdeAtEmWR4m9Xll+
+mjrDmBU16ax8yqWs3N+9PDoorAVp9P4PmEByZ84h/cbfEYBcs0l160gZPLSLkC2K
+Kq+H1GZ/BPaG2YUbvqqkKP+SWD0FoB7j9hxmvWryZcn6Gb68qmvl9cLhfSzMVDu1
+1+NfV0BKjuAB7rccyd3W5gIIw8e2trTj5ebkpfJKxTxtJoz5Jb+iVNPMBpJj5Oif
+Fes9nAiGkcLOXVnSZ28capCqaiQPk7QSxCP0WCJsFNf7HGx+9T5UUVtkE0/gsljT
+k2gTpHafTCMlGIq4DRo4lEig5S+96wGR0C2b04IlPLZe5Kqz/8s=
+=hNlO
+-----END PGP SIGNATURE-----

Added: dev/solr/solr-9.2.0-RC1-rev-92c5515e2918c22513f7aa527d6c6db943150fea/solr/maven/org/apache/solr/solr-jaegertracer-configurator/9.2.0/solr-jaegertracer-configurator-9.2.0-javadoc.jar.asc.md5
==============================================================================
--- dev/solr/solr-9.2.0-RC1-rev-92c5515e2918c22513f7aa527d6c6db943150fea/solr/maven/org/apache/solr/solr-jaegertracer-configurator/9.2.0/solr-jaegertracer-configurator-9.2.0-javadoc.jar.asc.md5 (added)
+++ dev/solr/solr-9.2.0-RC1-rev-92c5515e2918c22513f7aa527d6c6db943150fea/solr/maven/org/apache/solr/solr-jaegertracer-configurator/9.2.0/solr-jaegertracer-configurator-9.2.0-javadoc.jar.asc.md5 Tue Mar 21 05:43:57 2023
@@ -0,0 +1 @@
+235e08fa481d3d5a81f96b9d8597efb3
\ No newline at end of file

Added: dev/solr/solr-9.2.0-RC1-rev-92c5515e2918c22513f7aa527d6c6db943150fea/solr/maven/org/apache/solr/solr-jaegertracer-configurator/9.2.0/solr-jaegertracer-configurator-9.2.0-javadoc.jar.asc.sha1
==============================================================================
--- dev/solr/solr-9.2.0-RC1-rev-92c5515e2918c22513f7aa527d6c6db943150fea/solr/maven/org/apache/solr/solr-jaegertracer-configurator/9.2.0/solr-jaegertracer-configurator-9.2.0-javadoc.jar.asc.sha1 (added)
+++ dev/solr/solr-9.2.0-RC1-rev-92c5515e2918c22513f7aa527d6c6db943150fea/solr/maven/org/apache/solr/solr-jaegertracer-configurator/9.2.0/solr-jaegertracer-configurator-9.2.0-javadoc.jar.asc.sha1 Tue Mar 21 05:43:57 2023
@@ -0,0 +1 @@
+454c6395a6d1be227a6d4ad6fb9f640f66a42bb0
\ No newline at end of file

Added: dev/solr/solr-9.2.0-RC1-rev-92c5515e2918c22513f7aa527d6c6db943150fea/solr/maven/org/apache/solr/solr-jaegertracer-configurator/9.2.0/solr-jaegertracer-configurator-9.2.0-javadoc.jar.asc.sha256
==============================================================================
--- dev/solr/solr-9.2.0-RC1-rev-92c5515e2918c22513f7aa527d6c6db943150fea/solr/maven/org/apache/solr/solr-jaegertracer-configurator/9.2.0/solr-jaegertracer-configurator-9.2.0-javadoc.jar.asc.sha256 (added)
+++ dev/solr/solr-9.2.0-RC1-rev-92c5515e2918c22513f7aa527d6c6db943150fea/solr/maven/org/apache/solr/solr-jaegertracer-configurator/9.2.0/solr-jaegertracer-configurator-9.2.0-javadoc.jar.asc.sha256 Tue Mar 21 05:43:57 2023
@@ -0,0 +1 @@
+ff5dad9ab51b18fa112478ae242060691acf2a958e9e170de5b90293489390ac
\ No newline at end of file

Added: dev/solr/solr-9.2.0-RC1-rev-92c5515e2918c22513f7aa527d6c6db943150fea/solr/maven/org/apache/solr/solr-jaegertracer-configurator/9.2.0/solr-jaegertracer-configurator-9.2.0-javadoc.jar.asc.sha512
==============================================================================
--- dev/solr/solr-9.2.0-RC1-rev-92c5515e2918c22513f7aa527d6c6db943150fea/solr/maven/org/apache/solr/solr-jaegertracer-configurator/9.2.0/solr-jaegertracer-configurator-9.2.0-javadoc.jar.asc.sha512 (added)
+++ dev/solr/solr-9.2.0-RC1-rev-92c5515e2918c22513f7aa527d6c6db943150fea/solr/maven/org/apache/solr/solr-jaegertracer-configurator/9.2.0/solr-jaegertracer-configurator-9.2.0-javadoc.jar.asc.sha512 Tue Mar 21 05:43:57 2023
@@ -0,0 +1 @@
+e3bd66ede1f498d5b4a1dcdaeb2284d81d8eb61869cd94244aea72a6dfdf773eb24679592891774f3e1306b3f4a26de016bbd51bb356e58e67b311ab49009e34
\ No newline at end of file

Added: dev/solr/solr-9.2.0-RC1-rev-92c5515e2918c22513f7aa527d6c6db943150fea/solr/maven/org/apache/solr/solr-jaegertracer-configurator/9.2.0/solr-jaegertracer-configurator-9.2.0-javadoc.jar.md5
==============================================================================
--- dev/solr/solr-9.2.0-RC1-rev-92c5515e2918c22513f7aa527d6c6db943150fea/solr/maven/org/apache/solr/solr-jaegertracer-configurator/9.2.0/solr-jaegertracer-configurator-9.2.0-javadoc.jar.md5 (added)
+++ dev/solr/solr-9.2.0-RC1-rev-92c5515e2918c22513f7aa527d6c6db943150fea/solr/maven/org/apache/solr/solr-jaegertracer-configurator/9.2.0/solr-jaegertracer-configurator-9.2.0-javadoc.jar.md5 Tue Mar 21 05:43:57 2023
@@ -0,0 +1 @@
+ca85bc3deb3cefa0c735e415d24c71f1
\ No newline at end of file

Added: dev/solr/solr-9.2.0-RC1-rev-92c5515e2918c22513f7aa527d6c6db943150fea/solr/maven/org/apache/solr/solr-jaegertracer-configurator/9.2.0/solr-jaegertracer-configurator-9.2.0-javadoc.jar.sha1
==============================================================================
--- dev/solr/solr-9.2.0-RC1-rev-92c5515e2918c22513f7aa527d6c6db943150fea/solr/maven/org/apache/solr/solr-jaegertracer-configurator/9.2.0/solr-jaegertracer-configurator-9.2.0-javadoc.jar.sha1 (added)
+++ dev/solr/solr-9.2.0-RC1-rev-92c5515e2918c22513f7aa527d6c6db943150fea/solr/maven/org/apache/solr/solr-jaegertracer-configurator/9.2.0/solr-jaegertracer-configurator-9.2.0-javadoc.jar.sha1 Tue Mar 21 05:43:57 2023
@@ -0,0 +1 @@
+164d82fb5779fa7bdfe54ce60dd01d08a40dfc7e
\ No newline at end of file

Added: dev/solr/solr-9.2.0-RC1-rev-92c5515e2918c22513f7aa527d6c6db943150fea/solr/maven/org/apache/solr/solr-jaegertracer-configurator/9.2.0/solr-jaegertracer-configurator-9.2.0-javadoc.jar.sha256
==============================================================================
--- dev/solr/solr-9.2.0-RC1-rev-92c5515e2918c22513f7aa527d6c6db943150fea/solr/maven/org/apache/solr/solr-jaegertracer-configurator/9.2.0/solr-jaegertracer-configurator-9.2.0-javadoc.jar.sha256 (added)
+++ dev/solr/solr-9.2.0-RC1-rev-92c5515e2918c22513f7aa527d6c6db943150fea/solr/maven/org/apache/solr/solr-jaegertracer-configurator/9.2.0/solr-jaegertracer-configurator-9.2.0-javadoc.jar.sha256 Tue Mar 21 05:43:57 2023
@@ -0,0 +1 @@
+91f7346eefcac94c893d7749e4e99d2b865db4465574b0ce5adf341868c9514d
\ No newline at end of file

Added: dev/solr/solr-9.2.0-RC1-rev-92c5515e2918c22513f7aa527d6c6db943150fea/solr/maven/org/apache/solr/solr-jaegertracer-configurator/9.2.0/solr-jaegertracer-configurator-9.2.0-javadoc.jar.sha512
==============================================================================
--- dev/solr/solr-9.2.0-RC1-rev-92c5515e2918c22513f7aa527d6c6db943150fea/solr/maven/org/apache/solr/solr-jaegertracer-configurator/9.2.0/solr-jaegertracer-configurator-9.2.0-javadoc.jar.sha512 (added)
+++ dev/solr/solr-9.2.0-RC1-rev-92c5515e2918c22513f7aa527d6c6db943150fea/solr/maven/org/apache/solr/solr-jaegertracer-configurator/9.2.0/solr-jaegertracer-configurator-9.2.0-javadoc.jar.sha512 Tue Mar 21 05:43:57 2023
@@ -0,0 +1 @@
+0fb9d0dff589802e3b5080e0500014b5eacde9ef239fbff8d11366ce0abf5d2b63db3a4120df48f556a364fad06907a063a23d0da0e012bdb4e3317fad124866
\ No newline at end of file

Added: dev/solr/solr-9.2.0-RC1-rev-92c5515e2918c22513f7aa527d6c6db943150fea/solr/maven/org/apache/solr/solr-jaegertracer-configurator/9.2.0/solr-jaegertracer-configurator-9.2.0-sources.jar
==============================================================================
Binary file - no diff available.

Propchange: dev/solr/solr-9.2.0-RC1-rev-92c5515e2918c22513f7aa527d6c6db943150fea/solr/maven/org/apache/solr/solr-jaegertracer-configurator/9.2.0/solr-jaegertracer-configurator-9.2.0-sources.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: dev/solr/solr-9.2.0-RC1-rev-92c5515e2918c22513f7aa527d6c6db943150fea/solr/maven/org/apache/solr/solr-jaegertracer-configurator/9.2.0/solr-jaegertracer-configurator-9.2.0-sources.jar.asc
==============================================================================
--- dev/solr/solr-9.2.0-RC1-rev-92c5515e2918c22513f7aa527d6c6db943150fea/solr/maven/org/apache/solr/solr-jaegertracer-configurator/9.2.0/solr-jaegertracer-configurator-9.2.0-sources.jar.asc (added)
+++ dev/solr/solr-9.2.0-RC1-rev-92c5515e2918c22513f7aa527d6c6db943150fea/solr/maven/org/apache/solr/solr-jaegertracer-configurator/9.2.0/solr-jaegertracer-configurator-9.2.0-sources.jar.asc Tue Mar 21 05:43:57 2023
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: BCPG v1.68
+
+iQIzBAABCAAdFiEEUOPuHJHH4MtN+wB7NpQk/Jjz9uwFAmQZCQAACgkQNpQk/Jjz
+9uzmbw//freiLhSu6UFBHsadHA2nUNrju1iXtiSHjZKoMeEPwh+nwfN9B3GY0Gyp
+fMPv2HQhbc2f01sDRtc6fSchP9ehDGZSuzuB8oL1T2NRg3iGqEtosoPoHlw7HNvX
+E0fYKEGtZ1g1dZwdclERXJshvHFNFCSqxEHt4qLbyhHFZ4yZQ/k6w4CgoAkKnrzL
+vg378+j5Po/X5oWoZ8iDVZXZIb1VNCe3eC4ummWhhOKtD/QhVtnhYslrHpOY94K2
+uzuZ5Wmu34hRwsnzk2VhYobFk89rj9outcTJfW1+0B4/xJukVRuvPlcms1US440R
+lfZVrjBtpVgLiaLZmnSFXhIlIe56z6gsOIu86ncFbkbrVfmECZy4MP32c4YjSvRi
+6ARMUMGPDG81SzN/YDJ5AIrUVzH/CvNiqllCAggbNMipibQ7z1bQXbEpMWQSGTKB
+EO59HHXkAKoiWCUKePZbb1LYmJuQEMna661n0gl6O7/YVeE6Q7u2j+cTwdK60qvM
+xe5tZV9vdX1BbjZTUljJp0IZ6CgvF5lcsaY7Bsq0BzuWf6udW9CKcgN/DvziXoAD
+SkeF3t9Y+7jgRW7WEudWoYkqcnnGl8WugnGVnFfYwEP6eoJyhpUlAuT0uLvSXD+C
+6QER9fBfdGkHHxfNjeTmZV6jhdSwogGFOCH2ble3nQne9yrbzIc=
+=RSsx
+-----END PGP SIGNATURE-----

Added: dev/solr/solr-9.2.0-RC1-rev-92c5515e2918c22513f7aa527d6c6db943150fea/solr/maven/org/apache/solr/solr-jaegertracer-configurator/9.2.0/solr-jaegertracer-configurator-9.2.0-sources.jar.asc.md5
==============================================================================
--- dev/solr/solr-9.2.0-RC1-rev-92c5515e2918c22513f7aa527d6c6db943150fea/solr/maven/org/apache/solr/solr-jaegertracer-configurator/9.2.0/solr-jaegertracer-configurator-9.2.0-sources.jar.asc.md5 (added)
+++ dev/solr/solr-9.2.0-RC1-rev-92c5515e2918c22513f7aa527d6c6db943150fea/solr/maven/org/apache/solr/solr-jaegertracer-configurator/9.2.0/solr-jaegertracer-configurator-9.2.0-sources.jar.asc.md5 Tue Mar 21 05:43:57 2023
@@ -0,0 +1 @@
+ec1cfe5346467013a8d89adc06113466
\ No newline at end of file

Added: dev/solr/solr-9.2.0-RC1-rev-92c5515e2918c22513f7aa527d6c6db943150fea/solr/maven/org/apache/solr/solr-jaegertracer-configurator/9.2.0/solr-jaegertracer-configurator-9.2.0-sources.jar.asc.sha1
==============================================================================
--- dev/solr/solr-9.2.0-RC1-rev-92c5515e2918c22513f7aa527d6c6db943150fea/solr/maven/org/apache/solr/solr-jaegertracer-configurator/9.2.0/solr-jaegertracer-configurator-9.2.0-sources.jar.asc.sha1 (added)
+++ dev/solr/solr-9.2.0-RC1-rev-92c5515e2918c22513f7aa527d6c6db943150fea/solr/maven/org/apache/solr/solr-jaegertracer-configurator/9.2.0/solr-jaegertracer-configurator-9.2.0-sources.jar.asc.sha1 Tue Mar 21 05:43:57 2023
@@ -0,0 +1 @@
+8e82b3fbcd4ef672518411b7df8d3f04c9d5e93d
\ No newline at end of file

Added: dev/solr/solr-9.2.0-RC1-rev-92c5515e2918c22513f7aa527d6c6db943150fea/solr/maven/org/apache/solr/solr-jaegertracer-configurator/9.2.0/solr-jaegertracer-configurator-9.2.0-sources.jar.asc.sha256
==============================================================================
--- dev/solr/solr-9.2.0-RC1-rev-92c5515e2918c22513f7aa527d6c6db943150fea/solr/maven/org/apache/solr/solr-jaegertracer-configurator/9.2.0/solr-jaegertracer-configurator-9.2.0-sources.jar.asc.sha256 (added)
+++ dev/solr/solr-9.2.0-RC1-rev-92c5515e2918c22513f7aa527d6c6db943150fea/solr/maven/org/apache/solr/solr-jaegertracer-configurator/9.2.0/solr-jaegertracer-configurator-9.2.0-sources.jar.asc.sha256 Tue Mar 21 05:43:57 2023
@@ -0,0 +1 @@
+788368124061346d0e2f3eb4d2e18cb05f0caa9ebb76a08bb6ad464df6f5b8f8
\ No newline at end of file

Added: dev/solr/solr-9.2.0-RC1-rev-92c5515e2918c22513f7aa527d6c6db943150fea/solr/maven/org/apache/solr/solr-jaegertracer-configurator/9.2.0/solr-jaegertracer-configurator-9.2.0-sources.jar.asc.sha512
==============================================================================
--- dev/solr/solr-9.2.0-RC1-rev-92c5515e2918c22513f7aa527d6c6db943150fea/solr/maven/org/apache/solr/solr-jaegertracer-configurator/9.2.0/solr-jaegertracer-configurator-9.2.0-sources.jar.asc.sha512 (added)
+++ dev/solr/solr-9.2.0-RC1-rev-92c5515e2918c22513f7aa527d6c6db943150fea/solr/maven/org/apache/solr/solr-jaegertracer-configurator/9.2.0/solr-jaegertracer-configurator-9.2.0-sources.jar.asc.sha512 Tue Mar 21 05:43:57 2023
@@ -0,0 +1 @@
+3a813cd51f38d44254b569ffc776045b2dea111f0ba8b3d9a01149f8bd8e1b9be25e6956bbf93b824a01994f74bb62a5c206538f0cc7998a148977d34bd1e774
\ No newline at end of file

Added: dev/solr/solr-9.2.0-RC1-rev-92c5515e2918c22513f7aa527d6c6db943150fea/solr/maven/org/apache/solr/solr-jaegertracer-configurator/9.2.0/solr-jaegertracer-configurator-9.2.0-sources.jar.md5
==============================================================================
--- dev/solr/solr-9.2.0-RC1-rev-92c5515e2918c22513f7aa527d6c6db943150fea/solr/maven/org/apache/solr/solr-jaegertracer-configurator/9.2.0/solr-jaegertracer-configurator-9.2.0-sources.jar.md5 (added)
+++ dev/solr/solr-9.2.0-RC1-rev-92c5515e2918c22513f7aa527d6c6db943150fea/solr/maven/org/apache/solr/solr-jaegertracer-configurator/9.2.0/solr-jaegertracer-configurator-9.2.0-sources.jar.md5 Tue Mar 21 05:43:57 2023
@@ -0,0 +1 @@
+e60460ac53be5c9f4b946990dd5f4e92
\ No newline at end of file

Added: dev/solr/solr-9.2.0-RC1-rev-92c5515e2918c22513f7aa527d6c6db943150fea/solr/maven/org/apache/solr/solr-jaegertracer-configurator/9.2.0/solr-jaegertracer-configurator-9.2.0-sources.jar.sha1
==============================================================================
--- dev/solr/solr-9.2.0-RC1-rev-92c5515e2918c22513f7aa527d6c6db943150fea/solr/maven/org/apache/solr/solr-jaegertracer-configurator/9.2.0/solr-jaegertracer-configurator-9.2.0-sources.jar.sha1 (added)
+++ dev/solr/solr-9.2.0-RC1-rev-92c5515e2918c22513f7aa527d6c6db943150fea/solr/maven/org/apache/solr/solr-jaegertracer-configurator/9.2.0/solr-jaegertracer-configurator-9.2.0-sources.jar.sha1 Tue Mar 21 05:43:57 2023
@@ -0,0 +1 @@
+1e92d7a3cc56c6dd8f292c0e0fb7a183094bb7b9
\ No newline at end of file

Added: dev/solr/solr-9.2.0-RC1-rev-92c5515e2918c22513f7aa527d6c6db943150fea/solr/maven/org/apache/solr/solr-jaegertracer-configurator/9.2.0/solr-jaegertracer-configurator-9.2.0-sources.jar.sha256
==============================================================================
--- dev/solr/solr-9.2.0-RC1-rev-92c5515e2918c22513f7aa527d6c6db943150fea/solr/maven/org/apache/solr/solr-jaegertracer-configurator/9.2.0/solr-jaegertracer-configurator-9.2.0-sources.jar.sha256 (added)
+++ dev/solr/solr-9.2.0-RC1-rev-92c5515e2918c22513f7aa527d6c6db943150fea/solr/maven/org/apache/solr/solr-jaegertracer-configurator/9.2.0/solr-jaegertracer-configurator-9.2.0-sources.jar.sha256 Tue Mar 21 05:43:57 2023
@@ -0,0 +1 @@
+1171050c4ed4428373fce0ff9ed07e98ce215ba15cef5c4c36ce2bf08e21a40d
\ No newline at end of file

Added: dev/solr/solr-9.2.0-RC1-rev-92c5515e2918c22513f7aa527d6c6db943150fea/solr/maven/org/apache/solr/solr-jaegertracer-configurator/9.2.0/solr-jaegertracer-configurator-9.2.0-sources.jar.sha512
==============================================================================
--- dev/solr/solr-9.2.0-RC1-rev-92c5515e2918c22513f7aa527d6c6db943150fea/solr/maven/org/apache/solr/solr-jaegertracer-configurator/9.2.0/solr-jaegertracer-configurator-9.2.0-sources.jar.sha512 (added)
+++ dev/solr/solr-9.2.0-RC1-rev-92c5515e2918c22513f7aa527d6c6db943150fea/solr/maven/org/apache/solr/solr-jaegertracer-configurator/9.2.0/solr-jaegertracer-configurator-9.2.0-sources.jar.sha512 Tue Mar 21 05:43:57 2023
@@ -0,0 +1 @@
+e047bd25449c1713fdbe653b1ba3049ec766b48746d4da989ac892781168d639a13ae9a0922205147dec9b04efe1ee2c5b2c25f4bfbdd67f128896a77d892173
\ No newline at end of file

Added: dev/solr/solr-9.2.0-RC1-rev-92c5515e2918c22513f7aa527d6c6db943150fea/solr/maven/org/apache/solr/solr-jaegertracer-configurator/9.2.0/solr-jaegertracer-configurator-9.2.0.jar
==============================================================================
Binary file - no diff available.

Propchange: dev/solr/solr-9.2.0-RC1-rev-92c5515e2918c22513f7aa527d6c6db943150fea/solr/maven/org/apache/solr/solr-jaegertracer-configurator/9.2.0/solr-jaegertracer-configurator-9.2.0.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: dev/solr/solr-9.2.0-RC1-rev-92c5515e2918c22513f7aa527d6c6db943150fea/solr/maven/org/apache/solr/solr-jaegertracer-configurator/9.2.0/solr-jaegertracer-configurator-9.2.0.jar.asc
==============================================================================
--- dev/solr/solr-9.2.0-RC1-rev-92c5515e2918c22513f7aa527d6c6db943150fea/solr/maven/org/apache/solr/solr-jaegertracer-configurator/9.2.0/solr-jaegertracer-configurator-9.2.0.jar.asc (added)
+++ dev/solr/solr-9.2.0-RC1-rev-92c5515e2918c22513f7aa527d6c6db943150fea/solr/maven/org/apache/solr/solr-jaegertracer-configurator/9.2.0/solr-jaegertracer-configurator-9.2.0.jar.asc Tue Mar 21 05:43:57 2023
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: BCPG v1.68
+
+iQIzBAABCAAdFiEEUOPuHJHH4MtN+wB7NpQk/Jjz9uwFAmQZCQAACgkQNpQk/Jjz
+9uwZ/w//dpVhULvgO++/HsXI3lFtKuKjMesnfImUHiAoePwz7NAsNN0EI5ZGJVJI
+dT4O2vPC1i14Y7inAdss3QpdAibTLv0IkqP3aLvbbTWx52I3tzzHCO2T0iYV0ZF7
+F6x27R++22VRbH/64E6Xs+xHtWrU2dLw3tCmhgR3wXlv5H9elsAXhsU6YX0r3jK0
+0fYiAlFtKY+KqcV3R4V2Z8Yo1oSfNfFqrCnsQ7H8+0NXoqf+c1bQUJeZzDoaNLV/
+ktL7faqMZIdpZ4HgUQpKpwf44fYEzNchDVTcTRrsl/h7Lt88clGm+4uBgckz9msq
+5YN8Pcw+i1/0/4OgY5x2ZnNpDYYgOxh2lA37e0jNh/oB6QPqNEJV29d46fVHS3EH
+9tO8OY9G6pPAbSggQ1Ien8rE+18ontvdALkDi22/SnAePC3Er50GIkllgsm5tKVb
+EsMoGPAe/1ol0qzPjDSzS5fljVLtsj8/mTqyLuN0MwZPvoxxZIZN1J1V3d70drtB
+ykRI3l2+zSspium5eVXLlRhs5150nP1RtkWWa1LSB7rCVD3t6bC3CUpz3b6g5U24
+BCsQLbhwBZ0cdtg7tUGWS477NfGkwlI/8Lmch+9ikZSEHSbTF5c1g2BKL+cCiiZb
+b5vEafRPz3Lbn/nBax2ASG+4fBgjCFiNCz2v7A0Kuh6IM5ax5hk=
+=gDuO
+-----END PGP SIGNATURE-----

Added: dev/solr/solr-9.2.0-RC1-rev-92c5515e2918c22513f7aa527d6c6db943150fea/solr/maven/org/apache/solr/solr-jaegertracer-configurator/9.2.0/solr-jaegertracer-configurator-9.2.0.jar.asc.md5
==============================================================================
--- dev/solr/solr-9.2.0-RC1-rev-92c5515e2918c22513f7aa527d6c6db943150fea/solr/maven/org/apache/solr/solr-jaegertracer-configurator/9.2.0/solr-jaegertracer-configurator-9.2.0.jar.asc.md5 (added)
+++ dev/solr/solr-9.2.0-RC1-rev-92c5515e2918c22513f7aa527d6c6db943150fea/solr/maven/org/apache/solr/solr-jaegertracer-configurator/9.2.0/solr-jaegertracer-configurator-9.2.0.jar.asc.md5 Tue Mar 21 05:43:57 2023
@@ -0,0 +1 @@
+06b07fe529700d476fa0222e926997df
\ No newline at end of file

Added: dev/solr/solr-9.2.0-RC1-rev-92c5515e2918c22513f7aa527d6c6db943150fea/solr/maven/org/apache/solr/solr-jaegertracer-configurator/9.2.0/solr-jaegertracer-configurator-9.2.0.jar.asc.sha1
==============================================================================
--- dev/solr/solr-9.2.0-RC1-rev-92c5515e2918c22513f7aa527d6c6db943150fea/solr/maven/org/apache/solr/solr-jaegertracer-configurator/9.2.0/solr-jaegertracer-configurator-9.2.0.jar.asc.sha1 (added)
+++ dev/solr/solr-9.2.0-RC1-rev-92c5515e2918c22513f7aa527d6c6db943150fea/solr/maven/org/apache/solr/solr-jaegertracer-configurator/9.2.0/solr-jaegertracer-configurator-9.2.0.jar.asc.sha1 Tue Mar 21 05:43:57 2023
@@ -0,0 +1 @@
+a3115ae69e637986655e42c38b31d68e854dac7f
\ No newline at end of file

Added: dev/solr/solr-9.2.0-RC1-rev-92c5515e2918c22513f7aa527d6c6db943150fea/solr/maven/org/apache/solr/solr-jaegertracer-configurator/9.2.0/solr-jaegertracer-configurator-9.2.0.jar.asc.sha256
==============================================================================
--- dev/solr/solr-9.2.0-RC1-rev-92c5515e2918c22513f7aa527d6c6db943150fea/solr/maven/org/apache/solr/solr-jaegertracer-configurator/9.2.0/solr-jaegertracer-configurator-9.2.0.jar.asc.sha256 (added)
+++ dev/solr/solr-9.2.0-RC1-rev-92c5515e2918c22513f7aa527d6c6db943150fea/solr/maven/org/apache/solr/solr-jaegertracer-configurator/9.2.0/solr-jaegertracer-configurator-9.2.0.jar.asc.sha256 Tue Mar 21 05:43:57 2023
@@ -0,0 +1 @@
+5d1cec3b47c705129a1a8f8087513fd8a9bc3d4b3413a155fbaa423e2b84db4a
\ No newline at end of file

Added: dev/solr/solr-9.2.0-RC1-rev-92c5515e2918c22513f7aa527d6c6db943150fea/solr/maven/org/apache/solr/solr-jaegertracer-configurator/9.2.0/solr-jaegertracer-configurator-9.2.0.jar.asc.sha512
==============================================================================
--- dev/solr/solr-9.2.0-RC1-rev-92c5515e2918c22513f7aa527d6c6db943150fea/solr/maven/org/apache/solr/solr-jaegertracer-configurator/9.2.0/solr-jaegertracer-configurator-9.2.0.jar.asc.sha512 (added)
+++ dev/solr/solr-9.2.0-RC1-rev-92c5515e2918c22513f7aa527d6c6db943150fea/solr/maven/org/apache/solr/solr-jaegertracer-configurator/9.2.0/solr-jaegertracer-configurator-9.2.0.jar.asc.sha512 Tue Mar 21 05:43:57 2023
@@ -0,0 +1 @@
+3e1db21a9720e8d67bafa73bc5960464058ba69e7d9f695edfed38a88243e5b56815b44c6be120ae890f69a5c52b6d59e0ed35eacd4fc1b8d4f75d863c3b6a21
\ No newline at end of file

Added: dev/solr/solr-9.2.0-RC1-rev-92c5515e2918c22513f7aa527d6c6db943150fea/solr/maven/org/apache/solr/solr-jaegertracer-configurator/9.2.0/solr-jaegertracer-configurator-9.2.0.jar.md5
==============================================================================
--- dev/solr/solr-9.2.0-RC1-rev-92c5515e2918c22513f7aa527d6c6db943150fea/solr/maven/org/apache/solr/solr-jaegertracer-configurator/9.2.0/solr-jaegertracer-configurator-9.2.0.jar.md5 (added)
+++ dev/solr/solr-9.2.0-RC1-rev-92c5515e2918c22513f7aa527d6c6db943150fea/solr/maven/org/apache/solr/solr-jaegertracer-configurator/9.2.0/solr-jaegertracer-configurator-9.2.0.jar.md5 Tue Mar 21 05:43:57 2023
@@ -0,0 +1 @@
+15f989bcc49f44fc5c32cb04f9c7265a
\ No newline at end of file

Added: dev/solr/solr-9.2.0-RC1-rev-92c5515e2918c22513f7aa527d6c6db943150fea/solr/maven/org/apache/solr/solr-jaegertracer-configurator/9.2.0/solr-jaegertracer-configurator-9.2.0.jar.sha1
==============================================================================
--- dev/solr/solr-9.2.0-RC1-rev-92c5515e2918c22513f7aa527d6c6db943150fea/solr/maven/org/apache/solr/solr-jaegertracer-configurator/9.2.0/solr-jaegertracer-configurator-9.2.0.jar.sha1 (added)
+++ dev/solr/solr-9.2.0-RC1-rev-92c5515e2918c22513f7aa527d6c6db943150fea/solr/maven/org/apache/solr/solr-jaegertracer-configurator/9.2.0/solr-jaegertracer-configurator-9.2.0.jar.sha1 Tue Mar 21 05:43:57 2023
@@ -0,0 +1 @@
+f8b2f3895026a4f59b1753333d79dae87b83b3d3
\ No newline at end of file

Added: dev/solr/solr-9.2.0-RC1-rev-92c5515e2918c22513f7aa527d6c6db943150fea/solr/maven/org/apache/solr/solr-jaegertracer-configurator/9.2.0/solr-jaegertracer-configurator-9.2.0.jar.sha256
==============================================================================
--- dev/solr/solr-9.2.0-RC1-rev-92c5515e2918c22513f7aa527d6c6db943150fea/solr/maven/org/apache/solr/solr-jaegertracer-configurator/9.2.0/solr-jaegertracer-configurator-9.2.0.jar.sha256 (added)
+++ dev/solr/solr-9.2.0-RC1-rev-92c5515e2918c22513f7aa527d6c6db943150fea/solr/maven/org/apache/solr/solr-jaegertracer-configurator/9.2.0/solr-jaegertracer-configurator-9.2.0.jar.sha256 Tue Mar 21 05:43:57 2023
@@ -0,0 +1 @@
+d960d5de216e337c34f4733772404698571ea8c8f4a6a8eacb21af54127d1c0e
\ No newline at end of file

Added: dev/solr/solr-9.2.0-RC1-rev-92c5515e2918c22513f7aa527d6c6db943150fea/solr/maven/org/apache/solr/solr-jaegertracer-configurator/9.2.0/solr-jaegertracer-configurator-9.2.0.jar.sha512
==============================================================================
--- dev/solr/solr-9.2.0-RC1-rev-92c5515e2918c22513f7aa527d6c6db943150fea/solr/maven/org/apache/solr/solr-jaegertracer-configurator/9.2.0/solr-jaegertracer-configurator-9.2.0.jar.sha512 (added)
+++ dev/solr/solr-9.2.0-RC1-rev-92c5515e2918c22513f7aa527d6c6db943150fea/solr/maven/org/apache/solr/solr-jaegertracer-configurator/9.2.0/solr-jaegertracer-configurator-9.2.0.jar.sha512 Tue Mar 21 05:43:57 2023
@@ -0,0 +1 @@
+efb5b1b1ea5f19b525287f34761f569815614b0efee799369c735216a89b253ed06ee356d3dba55e4f068a945855d99e24d6d6e2615f27462fd9bac8e79bb365
\ No newline at end of file

Added: dev/solr/solr-9.2.0-RC1-rev-92c5515e2918c22513f7aa527d6c6db943150fea/solr/maven/org/apache/solr/solr-jaegertracer-configurator/9.2.0/solr-jaegertracer-configurator-9.2.0.pom
==============================================================================
--- dev/solr/solr-9.2.0-RC1-rev-92c5515e2918c22513f7aa527d6c6db943150fea/solr/maven/org/apache/solr/solr-jaegertracer-configurator/9.2.0/solr-jaegertracer-configurator-9.2.0.pom (added)
+++ dev/solr/solr-9.2.0-RC1-rev-92c5515e2918c22513f7aa527d6c6db943150fea/solr/maven/org/apache/solr/solr-jaegertracer-configurator/9.2.0/solr-jaegertracer-configurator-9.2.0.pom Tue Mar 21 05:43:57 2023
@@ -0,0 +1,256 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project xmlns="http://maven.apache.org/POM/4.0.0" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
+  <modelVersion>4.0.0</modelVersion>
+  <groupId>org.apache.solr</groupId>
+  <artifactId>solr-jaegertracer-configurator</artifactId>
+  <version>9.2.0</version>
+  <name>Apache Solr (module: jaegertracer-configurator)</name>
+  <description>Apache Solr (module: jaegertracer-configurator)</description>
+  <url>https://solr.apache.org/</url>
+  <inceptionYear>2006</inceptionYear>
+  <licenses>
+    <license>
+      <name>Apache 2</name>
+      <url>https://apache.org/licenses/LICENSE-2.0.txt</url>
+    </license>
+  </licenses>
+  <mailingLists>
+    <mailingList>
+      <name>Solr User List</name>
+      <subscribe>users-subscribe@solr.apache.org</subscribe>
+      <unsubscribe>users-unsubscribe@solr.apache.org</unsubscribe>
+      <archive>https://lists.apache.org/list.html?users@solr.apache.org</archive>
+    </mailingList>
+    <mailingList>
+      <name>Solr Developer List</name>
+      <subscribe>dev-subscribe@solr.apache.org</subscribe>
+      <unsubscribe>dev-unsubscribe@solr.apache.org</unsubscribe>
+      <archive>https://lists.apache.org/list.html?dev@solr.apache.org</archive>
+    </mailingList>
+    <mailingList>
+      <name>Solr Commits List</name>
+      <subscribe>commits-subscribe@solr.apache.org</subscribe>
+      <unsubscribe>commits-unsubscribe@solr.apache.org</unsubscribe>
+      <archive>https://lists.apache.org/list.html?commits@solr.apache.org</archive>
+    </mailingList>
+  </mailingLists>
+  <scm>
+    <connection>scm:git:https://gitbox.apache.org/repos/asf/solr.git</connection>
+    <developerConnection>scm:git:https://gitbox.apache.org/repos/asf/solr.git</developerConnection>
+    <url>https://gitbox.apache.org/repos/asf?p=solr.git</url>
+  </scm>
+  <issueManagement>
+    <system>JIRA</system>
+    <url>https://issues.apache.org/jira/browse/SOLR</url>
+  </issueManagement>
+  <ciManagement>
+    <system>Jenkins</system>
+    <url>https://builds.apache.org/job/Solr/</url>
+  </ciManagement>
+  <dependencies>
+    <dependency>
+      <groupId>org.apache.solr</groupId>
+      <artifactId>solr-core</artifactId>
+      <version>9.2.0</version>
+      <scope>runtime</scope>
+      <exclusions>
+        <exclusion>
+          <artifactId>log4j</artifactId>
+          <groupId>log4j</groupId>
+        </exclusion>
+        <exclusion>
+          <artifactId>*</artifactId>
+          <groupId>ch.qos.logback</groupId>
+        </exclusion>
+        <exclusion>
+          <artifactId>commons-logging</artifactId>
+          <groupId>commons-logging</groupId>
+        </exclusion>
+        <exclusion>
+          <artifactId>jsr305</artifactId>
+          <groupId>com.google.code.findbugs</groupId>
+        </exclusion>
+        <exclusion>
+          <artifactId>annotations</artifactId>
+          <groupId>com.google.code.findbugs</groupId>
+        </exclusion>
+        <exclusion>
+          <artifactId>javax.annotation-api</artifactId>
+          <groupId>javax.annotation</groupId>
+        </exclusion>
+        <exclusion>
+          <artifactId>slf4j-log4j12</artifactId>
+          <groupId>org.slf4j</groupId>
+        </exclusion>
+        <exclusion>
+          <artifactId>audience-annotations</artifactId>
+          <groupId>org.apache.yetus</groupId>
+        </exclusion>
+        <exclusion>
+          <artifactId>animal-sniffer-annotations</artifactId>
+          <groupId>org.codehaus.mojo</groupId>
+        </exclusion>
+        <exclusion>
+          <artifactId>jcip-annotations</artifactId>
+          <groupId>net.jcip</groupId>
+        </exclusion>
+      </exclusions>
+    </dependency>
+    <dependency>
+      <groupId>io.opentracing</groupId>
+      <artifactId>opentracing-api</artifactId>
+      <version>0.33.0</version>
+      <scope>runtime</scope>
+      <exclusions>
+        <exclusion>
+          <artifactId>log4j</artifactId>
+          <groupId>log4j</groupId>
+        </exclusion>
+        <exclusion>
+          <artifactId>*</artifactId>
+          <groupId>ch.qos.logback</groupId>
+        </exclusion>
+        <exclusion>
+          <artifactId>commons-logging</artifactId>
+          <groupId>commons-logging</groupId>
+        </exclusion>
+        <exclusion>
+          <artifactId>jsr305</artifactId>
+          <groupId>com.google.code.findbugs</groupId>
+        </exclusion>
+        <exclusion>
+          <artifactId>annotations</artifactId>
+          <groupId>com.google.code.findbugs</groupId>
+        </exclusion>
+        <exclusion>
+          <artifactId>javax.annotation-api</artifactId>
+          <groupId>javax.annotation</groupId>
+        </exclusion>
+        <exclusion>
+          <artifactId>slf4j-log4j12</artifactId>
+          <groupId>org.slf4j</groupId>
+        </exclusion>
+        <exclusion>
+          <artifactId>audience-annotations</artifactId>
+          <groupId>org.apache.yetus</groupId>
+        </exclusion>
+        <exclusion>
+          <artifactId>animal-sniffer-annotations</artifactId>
+          <groupId>org.codehaus.mojo</groupId>
+        </exclusion>
+        <exclusion>
+          <artifactId>jcip-annotations</artifactId>
+          <groupId>net.jcip</groupId>
+        </exclusion>
+      </exclusions>
+    </dependency>
+    <dependency>
+      <groupId>io.jaegertracing</groupId>
+      <artifactId>jaeger-core</artifactId>
+      <version>1.8.1</version>
+      <scope>runtime</scope>
+      <exclusions>
+        <exclusion>
+          <artifactId>log4j</artifactId>
+          <groupId>log4j</groupId>
+        </exclusion>
+        <exclusion>
+          <artifactId>*</artifactId>
+          <groupId>ch.qos.logback</groupId>
+        </exclusion>
+        <exclusion>
+          <artifactId>commons-logging</artifactId>
+          <groupId>commons-logging</groupId>
+        </exclusion>
+        <exclusion>
+          <artifactId>jsr305</artifactId>
+          <groupId>com.google.code.findbugs</groupId>
+        </exclusion>
+        <exclusion>
+          <artifactId>annotations</artifactId>
+          <groupId>com.google.code.findbugs</groupId>
+        </exclusion>
+        <exclusion>
+          <artifactId>javax.annotation-api</artifactId>
+          <groupId>javax.annotation</groupId>
+        </exclusion>
+        <exclusion>
+          <artifactId>slf4j-log4j12</artifactId>
+          <groupId>org.slf4j</groupId>
+        </exclusion>
+        <exclusion>
+          <artifactId>audience-annotations</artifactId>
+          <groupId>org.apache.yetus</groupId>
+        </exclusion>
+        <exclusion>
+          <artifactId>animal-sniffer-annotations</artifactId>
+          <groupId>org.codehaus.mojo</groupId>
+        </exclusion>
+        <exclusion>
+          <artifactId>jcip-annotations</artifactId>
+          <groupId>net.jcip</groupId>
+        </exclusion>
+      </exclusions>
+    </dependency>
+    <dependency>
+      <groupId>io.jaegertracing</groupId>
+      <artifactId>jaeger-thrift</artifactId>
+      <version>1.8.1</version>
+      <scope>runtime</scope>
+      <exclusions>
+        <exclusion>
+          <artifactId>log4j</artifactId>
+          <groupId>log4j</groupId>
+        </exclusion>
+        <exclusion>
+          <artifactId>*</artifactId>
+          <groupId>ch.qos.logback</groupId>
+        </exclusion>
+        <exclusion>
+          <artifactId>commons-logging</artifactId>
+          <groupId>commons-logging</groupId>
+        </exclusion>
+        <exclusion>
+          <artifactId>jsr305</artifactId>
+          <groupId>com.google.code.findbugs</groupId>
+        </exclusion>
+        <exclusion>
+          <artifactId>annotations</artifactId>
+          <groupId>com.google.code.findbugs</groupId>
+        </exclusion>
+        <exclusion>
+          <artifactId>javax.annotation-api</artifactId>
+          <groupId>javax.annotation</groupId>
+        </exclusion>
+        <exclusion>
+          <artifactId>slf4j-log4j12</artifactId>
+          <groupId>org.slf4j</groupId>
+        </exclusion>
+        <exclusion>
+          <artifactId>audience-annotations</artifactId>
+          <groupId>org.apache.yetus</groupId>
+        </exclusion>
+        <exclusion>
+          <artifactId>animal-sniffer-annotations</artifactId>
+          <groupId>org.codehaus.mojo</groupId>
+        </exclusion>
+        <exclusion>
+          <artifactId>jcip-annotations</artifactId>
+          <groupId>net.jcip</groupId>
+        </exclusion>
+        <exclusion>
+          <artifactId>tomcat-annotations-api</artifactId>
+          <groupId>org.apache.tomcat</groupId>
+        </exclusion>
+        <exclusion>
+          <artifactId>gson</artifactId>
+          <groupId>com.google.code.gson</groupId>
+        </exclusion>
+        <exclusion>
+          <artifactId>tomcat-embed-core</artifactId>
+          <groupId>org.apache.tomcat.embed</groupId>
+        </exclusion>
+      </exclusions>
+    </dependency>
+  </dependencies>
+</project>

Added: dev/solr/solr-9.2.0-RC1-rev-92c5515e2918c22513f7aa527d6c6db943150fea/solr/maven/org/apache/solr/solr-jaegertracer-configurator/9.2.0/solr-jaegertracer-configurator-9.2.0.pom.asc
==============================================================================
--- dev/solr/solr-9.2.0-RC1-rev-92c5515e2918c22513f7aa527d6c6db943150fea/solr/maven/org/apache/solr/solr-jaegertracer-configurator/9.2.0/solr-jaegertracer-configurator-9.2.0.pom.asc (added)
+++ dev/solr/solr-9.2.0-RC1-rev-92c5515e2918c22513f7aa527d6c6db943150fea/solr/maven/org/apache/solr/solr-jaegertracer-configurator/9.2.0/solr-jaegertracer-configurator-9.2.0.pom.asc Tue Mar 21 05:43:57 2023
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: BCPG v1.68
+
+iQIzBAABCAAdFiEEUOPuHJHH4MtN+wB7NpQk/Jjz9uwFAmQZCQAACgkQNpQk/Jjz
+9uxu1hAAoSl+Ius7IuITLgVo8RhT5xzHoXCLRbBv8YcVJ7SP4oA9KpJguO7Jkkei
+nJ4URbzde5Z7NAn9G72lq/7+aPftYKB7zvlelzBv02l/sztvQrFnsuTTiY/vWuHJ
+/0mlkBxmQImeHNOtvgriGjuzohGg5TjgS7VnGUkgeIw0u9CCzCRSNxIrSruXovyM
+VWuvKTyBtMw3M20aaUTKrC3OtRsPxoYwE06+7RWvP6mJGNOqM2d8euse0ZXNHGUB
+S0BJHnsIabz/jYJdI3TK6Ql5bTszyNWSXcmF2mX3uB99nfiDTN+o+R8HTCwGeesS
+aji06S+dC5vjFZtg8E3axRydxn1SpqYKDDGRF+AEUR78xWAKapj7z+w+N1rjAdgD
+Yux6k75W/pVmlWrMlo3lMt/Ls8gURI7gVNvGlL2RsAhViFMWQ55pZ3GtVznlK7tM
+jxwvnqyWyq/tHvmhsKYy0/RtP0p524a6LYbj9MsYbIJoh3EdfM6eRovKHSai6VLg
+wIV5kSvxrXsb+Q2bTiHdJk2hg5zUBxHDm6U83Ew1H5BN3zxineY7lZnUzh+qmDLI
+CXmkK6cpeQAy67CAR9u5jZR0Q8YShxYSo7NygOZD64YNRguRK3RkRvNmG+BkkS56
+kSHNFKnqbPGWadur1aS0WW2ZpFsQIsZmNE8faCLgf1tyaiekcsM=
+=ZNXr
+-----END PGP SIGNATURE-----

Added: dev/solr/solr-9.2.0-RC1-rev-92c5515e2918c22513f7aa527d6c6db943150fea/solr/maven/org/apache/solr/solr-jaegertracer-configurator/9.2.0/solr-jaegertracer-configurator-9.2.0.pom.asc.md5
==============================================================================
--- dev/solr/solr-9.2.0-RC1-rev-92c5515e2918c22513f7aa527d6c6db943150fea/solr/maven/org/apache/solr/solr-jaegertracer-configurator/9.2.0/solr-jaegertracer-configurator-9.2.0.pom.asc.md5 (added)
+++ dev/solr/solr-9.2.0-RC1-rev-92c5515e2918c22513f7aa527d6c6db943150fea/solr/maven/org/apache/solr/solr-jaegertracer-configurator/9.2.0/solr-jaegertracer-configurator-9.2.0.pom.asc.md5 Tue Mar 21 05:43:57 2023
@@ -0,0 +1 @@
+9634a695c914e1c34acb1ec8a9166300
\ No newline at end of file

Added: dev/solr/solr-9.2.0-RC1-rev-92c5515e2918c22513f7aa527d6c6db943150fea/solr/maven/org/apache/solr/solr-jaegertracer-configurator/9.2.0/solr-jaegertracer-configurator-9.2.0.pom.asc.sha1
==============================================================================
--- dev/solr/solr-9.2.0-RC1-rev-92c5515e2918c22513f7aa527d6c6db943150fea/solr/maven/org/apache/solr/solr-jaegertracer-configurator/9.2.0/solr-jaegertracer-configurator-9.2.0.pom.asc.sha1 (added)
+++ dev/solr/solr-9.2.0-RC1-rev-92c5515e2918c22513f7aa527d6c6db943150fea/solr/maven/org/apache/solr/solr-jaegertracer-configurator/9.2.0/solr-jaegertracer-configurator-9.2.0.pom.asc.sha1 Tue Mar 21 05:43:57 2023
@@ -0,0 +1 @@
+baf4898c7fcd72267d260864da45eff26fda59a5
\ No newline at end of file

Added: dev/solr/solr-9.2.0-RC1-rev-92c5515e2918c22513f7aa527d6c6db943150fea/solr/maven/org/apache/solr/solr-jaegertracer-configurator/9.2.0/solr-jaegertracer-configurator-9.2.0.pom.asc.sha256
==============================================================================
--- dev/solr/solr-9.2.0-RC1-rev-92c5515e2918c22513f7aa527d6c6db943150fea/solr/maven/org/apache/solr/solr-jaegertracer-configurator/9.2.0/solr-jaegertracer-configurator-9.2.0.pom.asc.sha256 (added)
+++ dev/solr/solr-9.2.0-RC1-rev-92c5515e2918c22513f7aa527d6c6db943150fea/solr/maven/org/apache/solr/solr-jaegertracer-configurator/9.2.0/solr-jaegertracer-configurator-9.2.0.pom.asc.sha256 Tue Mar 21 05:43:57 2023
@@ -0,0 +1 @@
+505fd78a80c5de98395e9ffae7cd82502772aa9aa89980cc0cd096eea9f293a0
\ No newline at end of file

Added: dev/solr/solr-9.2.0-RC1-rev-92c5515e2918c22513f7aa527d6c6db943150fea/solr/maven/org/apache/solr/solr-jaegertracer-configurator/9.2.0/solr-jaegertracer-configurator-9.2.0.pom.asc.sha512
==============================================================================
--- dev/solr/solr-9.2.0-RC1-rev-92c5515e2918c22513f7aa527d6c6db943150fea/solr/maven/org/apache/solr/solr-jaegertracer-configurator/9.2.0/solr-jaegertracer-configurator-9.2.0.pom.asc.sha512 (added)
+++ dev/solr/solr-9.2.0-RC1-rev-92c5515e2918c22513f7aa527d6c6db943150fea/solr/maven/org/apache/solr/solr-jaegertracer-configurator/9.2.0/solr-jaegertracer-configurator-9.2.0.pom.asc.sha512 Tue Mar 21 05:43:57 2023
@@ -0,0 +1 @@
+a259c3b33e57f03368fc76fb2d0e55dde333837fb965d1347c3947afe357f0d5771861c588a7af48d30d2919b6c61eb97b5bac4581f6bc5a3f94bce6c818386c
\ No newline at end of file

Added: dev/solr/solr-9.2.0-RC1-rev-92c5515e2918c22513f7aa527d6c6db943150fea/solr/maven/org/apache/solr/solr-jaegertracer-configurator/9.2.0/solr-jaegertracer-configurator-9.2.0.pom.md5
==============================================================================
--- dev/solr/solr-9.2.0-RC1-rev-92c5515e2918c22513f7aa527d6c6db943150fea/solr/maven/org/apache/solr/solr-jaegertracer-configurator/9.2.0/solr-jaegertracer-configurator-9.2.0.pom.md5 (added)
+++ dev/solr/solr-9.2.0-RC1-rev-92c5515e2918c22513f7aa527d6c6db943150fea/solr/maven/org/apache/solr/solr-jaegertracer-configurator/9.2.0/solr-jaegertracer-configurator-9.2.0.pom.md5 Tue Mar 21 05:43:57 2023
@@ -0,0 +1 @@
+5ad50004edc32bac4d3b38c1eddceff0
\ No newline at end of file

Added: dev/solr/solr-9.2.0-RC1-rev-92c5515e2918c22513f7aa527d6c6db943150fea/solr/maven/org/apache/solr/solr-jaegertracer-configurator/9.2.0/solr-jaegertracer-configurator-9.2.0.pom.sha1
==============================================================================
--- dev/solr/solr-9.2.0-RC1-rev-92c5515e2918c22513f7aa527d6c6db943150fea/solr/maven/org/apache/solr/solr-jaegertracer-configurator/9.2.0/solr-jaegertracer-configurator-9.2.0.pom.sha1 (added)
+++ dev/solr/solr-9.2.0-RC1-rev-92c5515e2918c22513f7aa527d6c6db943150fea/solr/maven/org/apache/solr/solr-jaegertracer-configurator/9.2.0/solr-jaegertracer-configurator-9.2.0.pom.sha1 Tue Mar 21 05:43:57 2023
@@ -0,0 +1 @@
+d2b5a7a7677a73cf68432b278a79e1a06f284ea8
\ No newline at end of file

Added: dev/solr/solr-9.2.0-RC1-rev-92c5515e2918c22513f7aa527d6c6db943150fea/solr/maven/org/apache/solr/solr-jaegertracer-configurator/9.2.0/solr-jaegertracer-configurator-9.2.0.pom.sha256
==============================================================================
--- dev/solr/solr-9.2.0-RC1-rev-92c5515e2918c22513f7aa527d6c6db943150fea/solr/maven/org/apache/solr/solr-jaegertracer-configurator/9.2.0/solr-jaegertracer-configurator-9.2.0.pom.sha256 (added)
+++ dev/solr/solr-9.2.0-RC1-rev-92c5515e2918c22513f7aa527d6c6db943150fea/solr/maven/org/apache/solr/solr-jaegertracer-configurator/9.2.0/solr-jaegertracer-configurator-9.2.0.pom.sha256 Tue Mar 21 05:43:57 2023
@@ -0,0 +1 @@
+b81c76b96c87bc9feada21d7fc5815302150ddd40b02dfaeb909b1181d1b6b89
\ No newline at end of file

Added: dev/solr/solr-9.2.0-RC1-rev-92c5515e2918c22513f7aa527d6c6db943150fea/solr/maven/org/apache/solr/solr-jaegertracer-configurator/9.2.0/solr-jaegertracer-configurator-9.2.0.pom.sha512
==============================================================================
--- dev/solr/solr-9.2.0-RC1-rev-92c5515e2918c22513f7aa527d6c6db943150fea/solr/maven/org/apache/solr/solr-jaegertracer-configurator/9.2.0/solr-jaegertracer-configurator-9.2.0.pom.sha512 (added)
+++ dev/solr/solr-9.2.0-RC1-rev-92c5515e2918c22513f7aa527d6c6db943150fea/solr/maven/org/apache/solr/solr-jaegertracer-configurator/9.2.0/solr-jaegertracer-configurator-9.2.0.pom.sha512 Tue Mar 21 05:43:57 2023
@@ -0,0 +1 @@
+bbf2b0e4682656f6545be4aa919320fef0063fc5e78394674ae66cb077ad7ec0f00362bcfa1987b791f11bd5072b0672e353412bbb67736f7ff35e9251c53c98
\ No newline at end of file

Added: dev/solr/solr-9.2.0-RC1-rev-92c5515e2918c22513f7aa527d6c6db943150fea/solr/maven/org/apache/solr/solr-jaegertracer-configurator/maven-metadata.xml
==============================================================================
--- dev/solr/solr-9.2.0-RC1-rev-92c5515e2918c22513f7aa527d6c6db943150fea/solr/maven/org/apache/solr/solr-jaegertracer-configurator/maven-metadata.xml (added)
+++ dev/solr/solr-9.2.0-RC1-rev-92c5515e2918c22513f7aa527d6c6db943150fea/solr/maven/org/apache/solr/solr-jaegertracer-configurator/maven-metadata.xml Tue Mar 21 05:43:57 2023
@@ -0,0 +1,13 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<metadata>
+  <groupId>org.apache.solr</groupId>
+  <artifactId>solr-jaegertracer-configurator</artifactId>
+  <versioning>
+    <latest>9.2.0</latest>
+    <release>9.2.0</release>
+    <versions>
+      <version>9.2.0</version>
+    </versions>
+    <lastUpdated>20230321013144</lastUpdated>
+  </versioning>
+</metadata>

Added: dev/solr/solr-9.2.0-RC1-rev-92c5515e2918c22513f7aa527d6c6db943150fea/solr/maven/org/apache/solr/solr-jaegertracer-configurator/maven-metadata.xml.md5
==============================================================================
--- dev/solr/solr-9.2.0-RC1-rev-92c5515e2918c22513f7aa527d6c6db943150fea/solr/maven/org/apache/solr/solr-jaegertracer-configurator/maven-metadata.xml.md5 (added)
+++ dev/solr/solr-9.2.0-RC1-rev-92c5515e2918c22513f7aa527d6c6db943150fea/solr/maven/org/apache/solr/solr-jaegertracer-configurator/maven-metadata.xml.md5 Tue Mar 21 05:43:57 2023
@@ -0,0 +1 @@
+1debe8a3ffecc2721d76edad6f01073c
\ No newline at end of file

Added: dev/solr/solr-9.2.0-RC1-rev-92c5515e2918c22513f7aa527d6c6db943150fea/solr/maven/org/apache/solr/solr-jaegertracer-configurator/maven-metadata.xml.sha1
==============================================================================
--- dev/solr/solr-9.2.0-RC1-rev-92c5515e2918c22513f7aa527d6c6db943150fea/solr/maven/org/apache/solr/solr-jaegertracer-configurator/maven-metadata.xml.sha1 (added)
+++ dev/solr/solr-9.2.0-RC1-rev-92c5515e2918c22513f7aa527d6c6db943150fea/solr/maven/org/apache/solr/solr-jaegertracer-configurator/maven-metadata.xml.sha1 Tue Mar 21 05:43:57 2023
@@ -0,0 +1 @@
+f4254fa567e20d6bd81bebdea555da9b0a76a268
\ No newline at end of file

Added: dev/solr/solr-9.2.0-RC1-rev-92c5515e2918c22513f7aa527d6c6db943150fea/solr/maven/org/apache/solr/solr-jaegertracer-configurator/maven-metadata.xml.sha256
==============================================================================
--- dev/solr/solr-9.2.0-RC1-rev-92c5515e2918c22513f7aa527d6c6db943150fea/solr/maven/org/apache/solr/solr-jaegertracer-configurator/maven-metadata.xml.sha256 (added)
+++ dev/solr/solr-9.2.0-RC1-rev-92c5515e2918c22513f7aa527d6c6db943150fea/solr/maven/org/apache/solr/solr-jaegertracer-configurator/maven-metadata.xml.sha256 Tue Mar 21 05:43:57 2023
@@ -0,0 +1 @@
+3df4a4832dd564e86bcee523f6cddaef37347652d822fd39f788471f4b238e2b
\ No newline at end of file

Added: dev/solr/solr-9.2.0-RC1-rev-92c5515e2918c22513f7aa527d6c6db943150fea/solr/maven/org/apache/solr/solr-jaegertracer-configurator/maven-metadata.xml.sha512
==============================================================================
--- dev/solr/solr-9.2.0-RC1-rev-92c5515e2918c22513f7aa527d6c6db943150fea/solr/maven/org/apache/solr/solr-jaegertracer-configurator/maven-metadata.xml.sha512 (added)
+++ dev/solr/solr-9.2.0-RC1-rev-92c5515e2918c22513f7aa527d6c6db943150fea/solr/maven/org/apache/solr/solr-jaegertracer-configurator/maven-metadata.xml.sha512 Tue Mar 21 05:43:57 2023
@@ -0,0 +1 @@
+25eb90a56c69e5f267165b18161724795b73ef3cf570598515c38810e5a6b4244d1f1664f3cc7c793f97ce3665e6c67d6b8e78927be033ebcbf4148e9d1a396a
\ No newline at end of file

Added: dev/solr/solr-9.2.0-RC1-rev-92c5515e2918c22513f7aa527d6c6db943150fea/solr/maven/org/apache/solr/solr-jwt-auth/9.2.0/solr-jwt-auth-9.2.0-javadoc.jar
==============================================================================
Binary file - no diff available.

Propchange: dev/solr/solr-9.2.0-RC1-rev-92c5515e2918c22513f7aa527d6c6db943150fea/solr/maven/org/apache/solr/solr-jwt-auth/9.2.0/solr-jwt-auth-9.2.0-javadoc.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: dev/solr/solr-9.2.0-RC1-rev-92c5515e2918c22513f7aa527d6c6db943150fea/solr/maven/org/apache/solr/solr-jwt-auth/9.2.0/solr-jwt-auth-9.2.0-javadoc.jar.asc
==============================================================================
--- dev/solr/solr-9.2.0-RC1-rev-92c5515e2918c22513f7aa527d6c6db943150fea/solr/maven/org/apache/solr/solr-jwt-auth/9.2.0/solr-jwt-auth-9.2.0-javadoc.jar.asc (added)
+++ dev/solr/solr-9.2.0-RC1-rev-92c5515e2918c22513f7aa527d6c6db943150fea/solr/maven/org/apache/solr/solr-jwt-auth/9.2.0/solr-jwt-auth-9.2.0-javadoc.jar.asc Tue Mar 21 05:43:57 2023
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: BCPG v1.68
+
+iQIzBAABCAAdFiEEUOPuHJHH4MtN+wB7NpQk/Jjz9uwFAmQZCQEACgkQNpQk/Jjz
+9uxLXxAAzvPwAJKuao46E/tpEIQDyaSxkhn0339cx90bUoFXxofgWl1QRnGQelUA
+OvUYWeyDyEG+fP6ZnqpP+/309rYsymeG266MkGjCpL+XiHSUptaIacHb/i5JyboS
+Hf7EEuT1PSeGK+xc7YWYSThtNJla77H2/tmwaUKMUGSht9qnXY9syAcCsY+WVaQr
+F84rRysSjvkJXzcyLR26HAS6tqfRGzuP9IOf20U7oAra2fyotx6deigT32s80USk
+taHA+4PMNE8TFlqD3rLnEoYyRbANujDvEbmK9/TsxzF0ULxHdGPYXYunyUwTYyMz
+3MiH0LlAm0DzQ3H+42AzfO1yfbeqXMQaiVwisFzV290jf/+ZRQkXRh7w77iCKInV
+ygYMkzH4fACP5S2luGVwzfBkzRV7T+6yvdA4i8M2WRmR873AleNV9X1A/n0nVKKW
+DRNEvy28DSH5jOMuTUVURgEgKkoJ0BpfzLPjBRlBcVll/Wxl1f3isWfd+E42ALvy
+WDwtDhhRsK9YQDYV5n+nkpPXjvlazdHNqTMFI/aUqmnU0zSOOZlJlVj65f8D9Vcz
+xGQGpnUBeip6KQW8Emwv2jN4kjUfbAMwg+yTzw5h8p72Bs5EWAr5Fb2hPJI/U8tj
+iaiuqm7PNWUwhUDq/rDT03e95cHOI5Pqaw3gvhD6ds+kHxrVp48=
+=gRKD
+-----END PGP SIGNATURE-----

Added: dev/solr/solr-9.2.0-RC1-rev-92c5515e2918c22513f7aa527d6c6db943150fea/solr/maven/org/apache/solr/solr-jwt-auth/9.2.0/solr-jwt-auth-9.2.0-javadoc.jar.asc.md5
==============================================================================
--- dev/solr/solr-9.2.0-RC1-rev-92c5515e2918c22513f7aa527d6c6db943150fea/solr/maven/org/apache/solr/solr-jwt-auth/9.2.0/solr-jwt-auth-9.2.0-javadoc.jar.asc.md5 (added)
+++ dev/solr/solr-9.2.0-RC1-rev-92c5515e2918c22513f7aa527d6c6db943150fea/solr/maven/org/apache/solr/solr-jwt-auth/9.2.0/solr-jwt-auth-9.2.0-javadoc.jar.asc.md5 Tue Mar 21 05:43:57 2023
@@ -0,0 +1 @@
+6c0af821b1ad4f3f11f8318d1d0a7eb7
\ No newline at end of file

Added: dev/solr/solr-9.2.0-RC1-rev-92c5515e2918c22513f7aa527d6c6db943150fea/solr/maven/org/apache/solr/solr-jwt-auth/9.2.0/solr-jwt-auth-9.2.0-javadoc.jar.asc.sha1
==============================================================================
--- dev/solr/solr-9.2.0-RC1-rev-92c5515e2918c22513f7aa527d6c6db943150fea/solr/maven/org/apache/solr/solr-jwt-auth/9.2.0/solr-jwt-auth-9.2.0-javadoc.jar.asc.sha1 (added)
+++ dev/solr/solr-9.2.0-RC1-rev-92c5515e2918c22513f7aa527d6c6db943150fea/solr/maven/org/apache/solr/solr-jwt-auth/9.2.0/solr-jwt-auth-9.2.0-javadoc.jar.asc.sha1 Tue Mar 21 05:43:57 2023
@@ -0,0 +1 @@
+526cfa105790dcbda5e3cf18bf89b52a7b0ba1ea
\ No newline at end of file

Added: dev/solr/solr-9.2.0-RC1-rev-92c5515e2918c22513f7aa527d6c6db943150fea/solr/maven/org/apache/solr/solr-jwt-auth/9.2.0/solr-jwt-auth-9.2.0-javadoc.jar.asc.sha256
==============================================================================
--- dev/solr/solr-9.2.0-RC1-rev-92c5515e2918c22513f7aa527d6c6db943150fea/solr/maven/org/apache/solr/solr-jwt-auth/9.2.0/solr-jwt-auth-9.2.0-javadoc.jar.asc.sha256 (added)
+++ dev/solr/solr-9.2.0-RC1-rev-92c5515e2918c22513f7aa527d6c6db943150fea/solr/maven/org/apache/solr/solr-jwt-auth/9.2.0/solr-jwt-auth-9.2.0-javadoc.jar.asc.sha256 Tue Mar 21 05:43:57 2023
@@ -0,0 +1 @@
+529b9af003f55dc8965bddd6f903d9a1210a5f8de1becc93d673c04e8e58dd57
\ No newline at end of file

Added: dev/solr/solr-9.2.0-RC1-rev-92c5515e2918c22513f7aa527d6c6db943150fea/solr/maven/org/apache/solr/solr-jwt-auth/9.2.0/solr-jwt-auth-9.2.0-javadoc.jar.asc.sha512
==============================================================================
--- dev/solr/solr-9.2.0-RC1-rev-92c5515e2918c22513f7aa527d6c6db943150fea/solr/maven/org/apache/solr/solr-jwt-auth/9.2.0/solr-jwt-auth-9.2.0-javadoc.jar.asc.sha512 (added)
+++ dev/solr/solr-9.2.0-RC1-rev-92c5515e2918c22513f7aa527d6c6db943150fea/solr/maven/org/apache/solr/solr-jwt-auth/9.2.0/solr-jwt-auth-9.2.0-javadoc.jar.asc.sha512 Tue Mar 21 05:43:57 2023
@@ -0,0 +1 @@
+867f32ea76aa25db1bed5fce6b015f08c9dd6b561c9c9c271442604cb504fec93bfe5de53035148e2f2cce3542e637aead772e760a37e10fc25bf183b1eb51e4
\ No newline at end of file

Added: dev/solr/solr-9.2.0-RC1-rev-92c5515e2918c22513f7aa527d6c6db943150fea/solr/maven/org/apache/solr/solr-jwt-auth/9.2.0/solr-jwt-auth-9.2.0-javadoc.jar.md5
==============================================================================
--- dev/solr/solr-9.2.0-RC1-rev-92c5515e2918c22513f7aa527d6c6db943150fea/solr/maven/org/apache/solr/solr-jwt-auth/9.2.0/solr-jwt-auth-9.2.0-javadoc.jar.md5 (added)
+++ dev/solr/solr-9.2.0-RC1-rev-92c5515e2918c22513f7aa527d6c6db943150fea/solr/maven/org/apache/solr/solr-jwt-auth/9.2.0/solr-jwt-auth-9.2.0-javadoc.jar.md5 Tue Mar 21 05:43:57 2023
@@ -0,0 +1 @@
+88e4ad035f7b4ad2d20e1334d387712f
\ No newline at end of file

Added: dev/solr/solr-9.2.0-RC1-rev-92c5515e2918c22513f7aa527d6c6db943150fea/solr/maven/org/apache/solr/solr-jwt-auth/9.2.0/solr-jwt-auth-9.2.0-javadoc.jar.sha1
==============================================================================
--- dev/solr/solr-9.2.0-RC1-rev-92c5515e2918c22513f7aa527d6c6db943150fea/solr/maven/org/apache/solr/solr-jwt-auth/9.2.0/solr-jwt-auth-9.2.0-javadoc.jar.sha1 (added)
+++ dev/solr/solr-9.2.0-RC1-rev-92c5515e2918c22513f7aa527d6c6db943150fea/solr/maven/org/apache/solr/solr-jwt-auth/9.2.0/solr-jwt-auth-9.2.0-javadoc.jar.sha1 Tue Mar 21 05:43:57 2023
@@ -0,0 +1 @@
+6f4d566e99e5b81d6411c8911ae7abf3c4702b01
\ No newline at end of file

Added: dev/solr/solr-9.2.0-RC1-rev-92c5515e2918c22513f7aa527d6c6db943150fea/solr/maven/org/apache/solr/solr-jwt-auth/9.2.0/solr-jwt-auth-9.2.0-javadoc.jar.sha256
==============================================================================
--- dev/solr/solr-9.2.0-RC1-rev-92c5515e2918c22513f7aa527d6c6db943150fea/solr/maven/org/apache/solr/solr-jwt-auth/9.2.0/solr-jwt-auth-9.2.0-javadoc.jar.sha256 (added)
+++ dev/solr/solr-9.2.0-RC1-rev-92c5515e2918c22513f7aa527d6c6db943150fea/solr/maven/org/apache/solr/solr-jwt-auth/9.2.0/solr-jwt-auth-9.2.0-javadoc.jar.sha256 Tue Mar 21 05:43:57 2023
@@ -0,0 +1 @@
+c9dc35cef9aa05aa72693367f664719b8b6f12d0db3c61976c6d65ef0b23a601
\ No newline at end of file

Added: dev/solr/solr-9.2.0-RC1-rev-92c5515e2918c22513f7aa527d6c6db943150fea/solr/maven/org/apache/solr/solr-jwt-auth/9.2.0/solr-jwt-auth-9.2.0-javadoc.jar.sha512
==============================================================================
--- dev/solr/solr-9.2.0-RC1-rev-92c5515e2918c22513f7aa527d6c6db943150fea/solr/maven/org/apache/solr/solr-jwt-auth/9.2.0/solr-jwt-auth-9.2.0-javadoc.jar.sha512 (added)
+++ dev/solr/solr-9.2.0-RC1-rev-92c5515e2918c22513f7aa527d6c6db943150fea/solr/maven/org/apache/solr/solr-jwt-auth/9.2.0/solr-jwt-auth-9.2.0-javadoc.jar.sha512 Tue Mar 21 05:43:57 2023
@@ -0,0 +1 @@
+6640e7b3a82fa8dee20b9f2ce9d00a1a64524d47d867627de063760589400243d97e4c878f9f8796046350f301a41041a18dbc16fd0069cda064ed643f8f3c54
\ No newline at end of file

Added: dev/solr/solr-9.2.0-RC1-rev-92c5515e2918c22513f7aa527d6c6db943150fea/solr/maven/org/apache/solr/solr-jwt-auth/9.2.0/solr-jwt-auth-9.2.0-sources.jar
==============================================================================
Binary file - no diff available.

Propchange: dev/solr/solr-9.2.0-RC1-rev-92c5515e2918c22513f7aa527d6c6db943150fea/solr/maven/org/apache/solr/solr-jwt-auth/9.2.0/solr-jwt-auth-9.2.0-sources.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: dev/solr/solr-9.2.0-RC1-rev-92c5515e2918c22513f7aa527d6c6db943150fea/solr/maven/org/apache/solr/solr-jwt-auth/9.2.0/solr-jwt-auth-9.2.0-sources.jar.asc
==============================================================================
--- dev/solr/solr-9.2.0-RC1-rev-92c5515e2918c22513f7aa527d6c6db943150fea/solr/maven/org/apache/solr/solr-jwt-auth/9.2.0/solr-jwt-auth-9.2.0-sources.jar.asc (added)
+++ dev/solr/solr-9.2.0-RC1-rev-92c5515e2918c22513f7aa527d6c6db943150fea/solr/maven/org/apache/solr/solr-jwt-auth/9.2.0/solr-jwt-auth-9.2.0-sources.jar.asc Tue Mar 21 05:43:57 2023
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: BCPG v1.68
+
+iQIzBAABCAAdFiEEUOPuHJHH4MtN+wB7NpQk/Jjz9uwFAmQZCQAACgkQNpQk/Jjz
+9uxpXRAAmuDm+I73fiAj8LqLUODDI0RFONEBwMkosjzfzNAXLpJuitlcxU6Nz0lQ
+iQJp/rjEfutWzDqZ1iekJvLo/BJQcX7v97fVG2UfQ7LQ1nDV8S1/l3CEp20lqayt
+QB2NV2um24KWzzEQP1b/gGODeqlrcyntdPnGlyaVynQz0R03Bw1NDAoJtl6FwqCu
+iQ3tFN8+MDg3JzhvUAF1vzcS3pI05hRtPoTC32Vq+3tlURUCXOA7SsAquCfsGget
+3xlM9m/zNmtdgr3lluBPkdoAhrQGkpaYwuctO1MS75hZFNCKgHQThSjiAtcszL0O
+o4zZAgIiJsw9uSqRyCwgCGFdXVWMXad5QK0mQrp+nMzUwyPqgtPRc4SiFs3iCvpx
+sYSzeDdjLXYGvP5Gj7Gkr5DWSXSeEdB/FMdbnt0+quQiY5maUpsVMMY5on5MSoEY
+pUYlhzQ0zNkR1Ezus5sJf8ENQzt6z6w7gkmdNzp0Ci4vXxEQfW/bmkXAJPGopCt8
+TNIIFeyL2qrhbJGag+Q+8MDBBqg4NzLnKBZrwE2y0s31EyzoREI4fzYCcyp0qbL1
+b0yMsFjNIVkky122PfUXJ1xa+b8rdkDDOa2SiT420gSHd0jEK635wsJzpZsv8hZx
+sFyvGrq2fYRwIGGJcl4OMfa7D+6KBhAjZdAgDzuSPKMGSvem0gM=
+=gNo2
+-----END PGP SIGNATURE-----

Added: dev/solr/solr-9.2.0-RC1-rev-92c5515e2918c22513f7aa527d6c6db943150fea/solr/maven/org/apache/solr/solr-jwt-auth/9.2.0/solr-jwt-auth-9.2.0-sources.jar.asc.md5
==============================================================================
--- dev/solr/solr-9.2.0-RC1-rev-92c5515e2918c22513f7aa527d6c6db943150fea/solr/maven/org/apache/solr/solr-jwt-auth/9.2.0/solr-jwt-auth-9.2.0-sources.jar.asc.md5 (added)
+++ dev/solr/solr-9.2.0-RC1-rev-92c5515e2918c22513f7aa527d6c6db943150fea/solr/maven/org/apache/solr/solr-jwt-auth/9.2.0/solr-jwt-auth-9.2.0-sources.jar.asc.md5 Tue Mar 21 05:43:57 2023
@@ -0,0 +1 @@
+7c4f06c5da20a47f22469423e3fcd0cd
\ No newline at end of file

Added: dev/solr/solr-9.2.0-RC1-rev-92c5515e2918c22513f7aa527d6c6db943150fea/solr/maven/org/apache/solr/solr-jwt-auth/9.2.0/solr-jwt-auth-9.2.0-sources.jar.asc.sha1
==============================================================================
--- dev/solr/solr-9.2.0-RC1-rev-92c5515e2918c22513f7aa527d6c6db943150fea/solr/maven/org/apache/solr/solr-jwt-auth/9.2.0/solr-jwt-auth-9.2.0-sources.jar.asc.sha1 (added)
+++ dev/solr/solr-9.2.0-RC1-rev-92c5515e2918c22513f7aa527d6c6db943150fea/solr/maven/org/apache/solr/solr-jwt-auth/9.2.0/solr-jwt-auth-9.2.0-sources.jar.asc.sha1 Tue Mar 21 05:43:57 2023
@@ -0,0 +1 @@
+9f2f60428882c51a21a5436fad5ff93025ac8775
\ No newline at end of file

Added: dev/solr/solr-9.2.0-RC1-rev-92c5515e2918c22513f7aa527d6c6db943150fea/solr/maven/org/apache/solr/solr-jwt-auth/9.2.0/solr-jwt-auth-9.2.0-sources.jar.asc.sha256
==============================================================================
--- dev/solr/solr-9.2.0-RC1-rev-92c5515e2918c22513f7aa527d6c6db943150fea/solr/maven/org/apache/solr/solr-jwt-auth/9.2.0/solr-jwt-auth-9.2.0-sources.jar.asc.sha256 (added)
+++ dev/solr/solr-9.2.0-RC1-rev-92c5515e2918c22513f7aa527d6c6db943150fea/solr/maven/org/apache/solr/solr-jwt-auth/9.2.0/solr-jwt-auth-9.2.0-sources.jar.asc.sha256 Tue Mar 21 05:43:57 2023
@@ -0,0 +1 @@
+a3d907d487fac5bbd4d2c771d1b62c7a11a2ff302548bfa2a624651b41fe0bff
\ No newline at end of file

Added: dev/solr/solr-9.2.0-RC1-rev-92c5515e2918c22513f7aa527d6c6db943150fea/solr/maven/org/apache/solr/solr-jwt-auth/9.2.0/solr-jwt-auth-9.2.0-sources.jar.asc.sha512
==============================================================================
--- dev/solr/solr-9.2.0-RC1-rev-92c5515e2918c22513f7aa527d6c6db943150fea/solr/maven/org/apache/solr/solr-jwt-auth/9.2.0/solr-jwt-auth-9.2.0-sources.jar.asc.sha512 (added)
+++ dev/solr/solr-9.2.0-RC1-rev-92c5515e2918c22513f7aa527d6c6db943150fea/solr/maven/org/apache/solr/solr-jwt-auth/9.2.0/solr-jwt-auth-9.2.0-sources.jar.asc.sha512 Tue Mar 21 05:43:57 2023
@@ -0,0 +1 @@
+f28f9e6969d1454c7fd34795525f90e0d1243e88eb001e4749ae9f7bd0f3ae6002535ae88dbe7c8a0b0fa9fc89f0d01feda7030e24e28daea9eef1f8d1d8bbf9
\ No newline at end of file

Added: dev/solr/solr-9.2.0-RC1-rev-92c5515e2918c22513f7aa527d6c6db943150fea/solr/maven/org/apache/solr/solr-jwt-auth/9.2.0/solr-jwt-auth-9.2.0-sources.jar.md5
==============================================================================
--- dev/solr/solr-9.2.0-RC1-rev-92c5515e2918c22513f7aa527d6c6db943150fea/solr/maven/org/apache/solr/solr-jwt-auth/9.2.0/solr-jwt-auth-9.2.0-sources.jar.md5 (added)
+++ dev/solr/solr-9.2.0-RC1-rev-92c5515e2918c22513f7aa527d6c6db943150fea/solr/maven/org/apache/solr/solr-jwt-auth/9.2.0/solr-jwt-auth-9.2.0-sources.jar.md5 Tue Mar 21 05:43:57 2023
@@ -0,0 +1 @@
+4dc7f85af9bd8aeb3b7cadc5b13fbe37
\ No newline at end of file

Added: dev/solr/solr-9.2.0-RC1-rev-92c5515e2918c22513f7aa527d6c6db943150fea/solr/maven/org/apache/solr/solr-jwt-auth/9.2.0/solr-jwt-auth-9.2.0-sources.jar.sha1
==============================================================================
--- dev/solr/solr-9.2.0-RC1-rev-92c5515e2918c22513f7aa527d6c6db943150fea/solr/maven/org/apache/solr/solr-jwt-auth/9.2.0/solr-jwt-auth-9.2.0-sources.jar.sha1 (added)
+++ dev/solr/solr-9.2.0-RC1-rev-92c5515e2918c22513f7aa527d6c6db943150fea/solr/maven/org/apache/solr/solr-jwt-auth/9.2.0/solr-jwt-auth-9.2.0-sources.jar.sha1 Tue Mar 21 05:43:57 2023
@@ -0,0 +1 @@
+cfb530a52eb6a6c999e96a17160cabc12a0e0af3
\ No newline at end of file

Added: dev/solr/solr-9.2.0-RC1-rev-92c5515e2918c22513f7aa527d6c6db943150fea/solr/maven/org/apache/solr/solr-jwt-auth/9.2.0/solr-jwt-auth-9.2.0-sources.jar.sha256
==============================================================================
--- dev/solr/solr-9.2.0-RC1-rev-92c5515e2918c22513f7aa527d6c6db943150fea/solr/maven/org/apache/solr/solr-jwt-auth/9.2.0/solr-jwt-auth-9.2.0-sources.jar.sha256 (added)
+++ dev/solr/solr-9.2.0-RC1-rev-92c5515e2918c22513f7aa527d6c6db943150fea/solr/maven/org/apache/solr/solr-jwt-auth/9.2.0/solr-jwt-auth-9.2.0-sources.jar.sha256 Tue Mar 21 05:43:57 2023
@@ -0,0 +1 @@
+dfaafd693fe9e17c2f6443895b324b1587ba4444a65426869d866eca6528b493
\ No newline at end of file

Added: dev/solr/solr-9.2.0-RC1-rev-92c5515e2918c22513f7aa527d6c6db943150fea/solr/maven/org/apache/solr/solr-jwt-auth/9.2.0/solr-jwt-auth-9.2.0-sources.jar.sha512
==============================================================================
--- dev/solr/solr-9.2.0-RC1-rev-92c5515e2918c22513f7aa527d6c6db943150fea/solr/maven/org/apache/solr/solr-jwt-auth/9.2.0/solr-jwt-auth-9.2.0-sources.jar.sha512 (added)
+++ dev/solr/solr-9.2.0-RC1-rev-92c5515e2918c22513f7aa527d6c6db943150fea/solr/maven/org/apache/solr/solr-jwt-auth/9.2.0/solr-jwt-auth-9.2.0-sources.jar.sha512 Tue Mar 21 05:43:57 2023
@@ -0,0 +1 @@
+d8a03ebd8643f27ccd3fa29a61064aacbb5670cacb796e70fd25f4d39e3a07f445a5b7fb49924ad0165f08b3f4adb283decc5b646accea52dd5619fe4aa64911
\ No newline at end of file