You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@solr.apache.org by ma...@apache.org on 2023/01/14 04:43:40 UTC

svn commit: r59334 [10/15] - in /dev/solr/solr-9.1.1-RC1-rev-cfd3eaede7054e08385df43d5ccd6462ee1b3539: ./ 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.1.1-RC1-rev-cfd3eaede7054e08385df43d5ccd6462ee1b3539/solr/maven/org/apache/solr/solr-jwt-auth/9.1.1/solr-jwt-auth-9.1.1.pom
==============================================================================
--- dev/solr/solr-9.1.1-RC1-rev-cfd3eaede7054e08385df43d5ccd6462ee1b3539/solr/maven/org/apache/solr/solr-jwt-auth/9.1.1/solr-jwt-auth-9.1.1.pom (added)
+++ dev/solr/solr-9.1.1-RC1-rev-cfd3eaede7054e08385df43d5ccd6462ee1b3539/solr/maven/org/apache/solr/solr-jwt-auth/9.1.1/solr-jwt-auth-9.1.1.pom Sat Jan 14 04:43:38 2023
@@ -0,0 +1,504 @@
+<?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-jwt-auth</artifactId>
+  <version>9.1.1</version>
+  <name>Apache Solr (module: jwt-auth)</name>
+  <description>Apache Solr (module: jwt-auth)</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.1.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>
+      </exclusions>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.solr</groupId>
+      <artifactId>solr-solrj</artifactId>
+      <version>9.1.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>
+      </exclusions>
+    </dependency>
+    <dependency>
+      <groupId>org.bitbucket.b_c</groupId>
+      <artifactId>jose4j</artifactId>
+      <version>0.7.9</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>
+      </exclusions>
+    </dependency>
+    <dependency>
+      <groupId>commons-io</groupId>
+      <artifactId>commons-io</artifactId>
+      <version>2.11.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>
+      </exclusions>
+    </dependency>
+    <dependency>
+      <groupId>io.dropwizard.metrics</groupId>
+      <artifactId>metrics-core</artifactId>
+      <version>4.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>
+      </exclusions>
+    </dependency>
+    <dependency>
+      <groupId>javax.servlet</groupId>
+      <artifactId>javax.servlet-api</artifactId>
+      <version>3.1.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>
+      </exclusions>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.httpcomponents</groupId>
+      <artifactId>httpclient</artifactId>
+      <version>4.5.13</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>
+      </exclusions>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.httpcomponents</groupId>
+      <artifactId>httpcore</artifactId>
+      <version>4.4.15</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>
+      </exclusions>
+    </dependency>
+    <dependency>
+      <groupId>org.eclipse.jetty</groupId>
+      <artifactId>jetty-client</artifactId>
+      <version>9.4.48.v20220622</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>
+      </exclusions>
+    </dependency>
+    <dependency>
+      <groupId>com.google.guava</groupId>
+      <artifactId>guava</artifactId>
+      <version>31.1-jre</version>
+      <scope>runtime</scope>
+      <exclusions>
+        <exclusion>
+          <artifactId>*</artifactId>
+          <groupId>*</groupId>
+        </exclusion>
+      </exclusions>
+    </dependency>
+    <dependency>
+      <groupId>org.slf4j</groupId>
+      <artifactId>slf4j-api</artifactId>
+      <version>1.7.36</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>
+      </exclusions>
+    </dependency>
+  </dependencies>
+</project>

Added: dev/solr/solr-9.1.1-RC1-rev-cfd3eaede7054e08385df43d5ccd6462ee1b3539/solr/maven/org/apache/solr/solr-jwt-auth/9.1.1/solr-jwt-auth-9.1.1.pom.asc
==============================================================================
--- dev/solr/solr-9.1.1-RC1-rev-cfd3eaede7054e08385df43d5ccd6462ee1b3539/solr/maven/org/apache/solr/solr-jwt-auth/9.1.1/solr-jwt-auth-9.1.1.pom.asc (added)
+++ dev/solr/solr-9.1.1-RC1-rev-cfd3eaede7054e08385df43d5ccd6462ee1b3539/solr/maven/org/apache/solr/solr-jwt-auth/9.1.1/solr-jwt-auth-9.1.1.pom.asc Sat Jan 14 04:43:38 2023
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: BCPG v1.68
+
+iQIzBAABCAAdFiEEnpc2reoxsff1FtJ4kQRs+XHRkGwFAmPCJSAACgkQkQRs+XHR
+kGzxdQ/+PUCptvsrz7+bxV11Piy9sGYcFVHT2fa3ZbyJtYlrmgzSYDkLyop0rMsZ
+f+nFKcilepRYN++2TBXZyWg8ey0MhbvRLIeTTW0KUNNbWNh/akmKJXKcNgSR0N8N
+S6NJQ3PhjFwg7C+VrNMD7H9FDE3AfKwSB7V3GksHwMjO45qTbihzQysb3GZDhRwL
+7WfmMqybfWyYnJDlBRXMQWspV7926YNsDERKudGee0rYaL5dYdygxf0Tl4INnoSU
+8E68OM0amGkLnPwnVsI0xQi/CO2fBIspHkch7otlPlJ6XBfW+997kPbTKctx3cia
+Nc3uIZxZIE11vb0c57kiScyucw+vbX7DctnhcGd/dOkYiNKmYGHqTOpp35J15k42
+umaL7x8ffaffgpsoNlfc52lbGZEfi1SiOoLumEnMacc8ts8ySkn6Qu4m2f64XZIa
+fx3eh9XYtIN1r+uJ8VwpvvD0pL40cB+S4VRYhpOKT2FxyW3Vf13Ekm8J5TJ2TJRl
+FQgkKmFcHyetpiINFQF7gnaqu7QnEQI60UaYkWcXYD78Ylz0PfCV/hgTY4ISqANX
++yzmWoVDdJqg8U/U4kLZbDhR6VDC2pJ5ss+5rgNpvTKbP0IIIE0+G1PjUm/MsMnZ
+CPs5AhbTeunlXiLF/A/egGFOlsrhlMovNdN90rauw5NQfjCRpsI=
+=+9X+
+-----END PGP SIGNATURE-----

Added: dev/solr/solr-9.1.1-RC1-rev-cfd3eaede7054e08385df43d5ccd6462ee1b3539/solr/maven/org/apache/solr/solr-jwt-auth/9.1.1/solr-jwt-auth-9.1.1.pom.asc.md5
==============================================================================
--- dev/solr/solr-9.1.1-RC1-rev-cfd3eaede7054e08385df43d5ccd6462ee1b3539/solr/maven/org/apache/solr/solr-jwt-auth/9.1.1/solr-jwt-auth-9.1.1.pom.asc.md5 (added)
+++ dev/solr/solr-9.1.1-RC1-rev-cfd3eaede7054e08385df43d5ccd6462ee1b3539/solr/maven/org/apache/solr/solr-jwt-auth/9.1.1/solr-jwt-auth-9.1.1.pom.asc.md5 Sat Jan 14 04:43:38 2023
@@ -0,0 +1 @@
+929424468b13cd17aa96a9fa226a0559
\ No newline at end of file

Added: dev/solr/solr-9.1.1-RC1-rev-cfd3eaede7054e08385df43d5ccd6462ee1b3539/solr/maven/org/apache/solr/solr-jwt-auth/9.1.1/solr-jwt-auth-9.1.1.pom.asc.sha1
==============================================================================
--- dev/solr/solr-9.1.1-RC1-rev-cfd3eaede7054e08385df43d5ccd6462ee1b3539/solr/maven/org/apache/solr/solr-jwt-auth/9.1.1/solr-jwt-auth-9.1.1.pom.asc.sha1 (added)
+++ dev/solr/solr-9.1.1-RC1-rev-cfd3eaede7054e08385df43d5ccd6462ee1b3539/solr/maven/org/apache/solr/solr-jwt-auth/9.1.1/solr-jwt-auth-9.1.1.pom.asc.sha1 Sat Jan 14 04:43:38 2023
@@ -0,0 +1 @@
+3b91d37a9d1c2c066cdceec124ea6004a980f207
\ No newline at end of file

Added: dev/solr/solr-9.1.1-RC1-rev-cfd3eaede7054e08385df43d5ccd6462ee1b3539/solr/maven/org/apache/solr/solr-jwt-auth/9.1.1/solr-jwt-auth-9.1.1.pom.asc.sha256
==============================================================================
--- dev/solr/solr-9.1.1-RC1-rev-cfd3eaede7054e08385df43d5ccd6462ee1b3539/solr/maven/org/apache/solr/solr-jwt-auth/9.1.1/solr-jwt-auth-9.1.1.pom.asc.sha256 (added)
+++ dev/solr/solr-9.1.1-RC1-rev-cfd3eaede7054e08385df43d5ccd6462ee1b3539/solr/maven/org/apache/solr/solr-jwt-auth/9.1.1/solr-jwt-auth-9.1.1.pom.asc.sha256 Sat Jan 14 04:43:38 2023
@@ -0,0 +1 @@
+bb769740ed54369f08fcf4ee3d73b490aff2d40e1fbde1138d2f8ccd21189df3
\ No newline at end of file

Added: dev/solr/solr-9.1.1-RC1-rev-cfd3eaede7054e08385df43d5ccd6462ee1b3539/solr/maven/org/apache/solr/solr-jwt-auth/9.1.1/solr-jwt-auth-9.1.1.pom.asc.sha512
==============================================================================
--- dev/solr/solr-9.1.1-RC1-rev-cfd3eaede7054e08385df43d5ccd6462ee1b3539/solr/maven/org/apache/solr/solr-jwt-auth/9.1.1/solr-jwt-auth-9.1.1.pom.asc.sha512 (added)
+++ dev/solr/solr-9.1.1-RC1-rev-cfd3eaede7054e08385df43d5ccd6462ee1b3539/solr/maven/org/apache/solr/solr-jwt-auth/9.1.1/solr-jwt-auth-9.1.1.pom.asc.sha512 Sat Jan 14 04:43:38 2023
@@ -0,0 +1 @@
+e328650ea4008eb8adc98d796da2ab9c3b6f26f4506bfa8601e89a9b02623c26c00899bf76ebbae4d0e95e1aaf2c1dd991a6886e565b290d4758c374ed765d46
\ No newline at end of file

Added: dev/solr/solr-9.1.1-RC1-rev-cfd3eaede7054e08385df43d5ccd6462ee1b3539/solr/maven/org/apache/solr/solr-jwt-auth/9.1.1/solr-jwt-auth-9.1.1.pom.md5
==============================================================================
--- dev/solr/solr-9.1.1-RC1-rev-cfd3eaede7054e08385df43d5ccd6462ee1b3539/solr/maven/org/apache/solr/solr-jwt-auth/9.1.1/solr-jwt-auth-9.1.1.pom.md5 (added)
+++ dev/solr/solr-9.1.1-RC1-rev-cfd3eaede7054e08385df43d5ccd6462ee1b3539/solr/maven/org/apache/solr/solr-jwt-auth/9.1.1/solr-jwt-auth-9.1.1.pom.md5 Sat Jan 14 04:43:38 2023
@@ -0,0 +1 @@
+71b4ab6c0efb1ffed410103a7fc99738
\ No newline at end of file

Added: dev/solr/solr-9.1.1-RC1-rev-cfd3eaede7054e08385df43d5ccd6462ee1b3539/solr/maven/org/apache/solr/solr-jwt-auth/9.1.1/solr-jwt-auth-9.1.1.pom.sha1
==============================================================================
--- dev/solr/solr-9.1.1-RC1-rev-cfd3eaede7054e08385df43d5ccd6462ee1b3539/solr/maven/org/apache/solr/solr-jwt-auth/9.1.1/solr-jwt-auth-9.1.1.pom.sha1 (added)
+++ dev/solr/solr-9.1.1-RC1-rev-cfd3eaede7054e08385df43d5ccd6462ee1b3539/solr/maven/org/apache/solr/solr-jwt-auth/9.1.1/solr-jwt-auth-9.1.1.pom.sha1 Sat Jan 14 04:43:38 2023
@@ -0,0 +1 @@
+0b19f494e5925dfe6a4200526e0d691f556ed05c
\ No newline at end of file

Added: dev/solr/solr-9.1.1-RC1-rev-cfd3eaede7054e08385df43d5ccd6462ee1b3539/solr/maven/org/apache/solr/solr-jwt-auth/9.1.1/solr-jwt-auth-9.1.1.pom.sha256
==============================================================================
--- dev/solr/solr-9.1.1-RC1-rev-cfd3eaede7054e08385df43d5ccd6462ee1b3539/solr/maven/org/apache/solr/solr-jwt-auth/9.1.1/solr-jwt-auth-9.1.1.pom.sha256 (added)
+++ dev/solr/solr-9.1.1-RC1-rev-cfd3eaede7054e08385df43d5ccd6462ee1b3539/solr/maven/org/apache/solr/solr-jwt-auth/9.1.1/solr-jwt-auth-9.1.1.pom.sha256 Sat Jan 14 04:43:38 2023
@@ -0,0 +1 @@
+a76f8e45ad55e79ead1abd4a0b08c44d1eb415705505da0aa8dff580bca7064c
\ No newline at end of file

Added: dev/solr/solr-9.1.1-RC1-rev-cfd3eaede7054e08385df43d5ccd6462ee1b3539/solr/maven/org/apache/solr/solr-jwt-auth/9.1.1/solr-jwt-auth-9.1.1.pom.sha512
==============================================================================
--- dev/solr/solr-9.1.1-RC1-rev-cfd3eaede7054e08385df43d5ccd6462ee1b3539/solr/maven/org/apache/solr/solr-jwt-auth/9.1.1/solr-jwt-auth-9.1.1.pom.sha512 (added)
+++ dev/solr/solr-9.1.1-RC1-rev-cfd3eaede7054e08385df43d5ccd6462ee1b3539/solr/maven/org/apache/solr/solr-jwt-auth/9.1.1/solr-jwt-auth-9.1.1.pom.sha512 Sat Jan 14 04:43:38 2023
@@ -0,0 +1 @@
+59df667bb745bc9bdcfef1f02553861e6cdaf0d56dbb364539eaa0ea41bd5f44b550b111509a7dd35fc9ea2f3605972cff0d4cc9ad0ba565c404bf7e6693e9a0
\ No newline at end of file

Added: dev/solr/solr-9.1.1-RC1-rev-cfd3eaede7054e08385df43d5ccd6462ee1b3539/solr/maven/org/apache/solr/solr-jwt-auth/maven-metadata.xml
==============================================================================
--- dev/solr/solr-9.1.1-RC1-rev-cfd3eaede7054e08385df43d5ccd6462ee1b3539/solr/maven/org/apache/solr/solr-jwt-auth/maven-metadata.xml (added)
+++ dev/solr/solr-9.1.1-RC1-rev-cfd3eaede7054e08385df43d5ccd6462ee1b3539/solr/maven/org/apache/solr/solr-jwt-auth/maven-metadata.xml Sat Jan 14 04:43:38 2023
@@ -0,0 +1,13 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<metadata>
+  <groupId>org.apache.solr</groupId>
+  <artifactId>solr-jwt-auth</artifactId>
+  <versioning>
+    <latest>9.1.1</latest>
+    <release>9.1.1</release>
+    <versions>
+      <version>9.1.1</version>
+    </versions>
+    <lastUpdated>20230114034513</lastUpdated>
+  </versioning>
+</metadata>

Added: dev/solr/solr-9.1.1-RC1-rev-cfd3eaede7054e08385df43d5ccd6462ee1b3539/solr/maven/org/apache/solr/solr-jwt-auth/maven-metadata.xml.md5
==============================================================================
--- dev/solr/solr-9.1.1-RC1-rev-cfd3eaede7054e08385df43d5ccd6462ee1b3539/solr/maven/org/apache/solr/solr-jwt-auth/maven-metadata.xml.md5 (added)
+++ dev/solr/solr-9.1.1-RC1-rev-cfd3eaede7054e08385df43d5ccd6462ee1b3539/solr/maven/org/apache/solr/solr-jwt-auth/maven-metadata.xml.md5 Sat Jan 14 04:43:38 2023
@@ -0,0 +1 @@
+a137cdb5d0904643b6e737d13ec91ce3
\ No newline at end of file

Added: dev/solr/solr-9.1.1-RC1-rev-cfd3eaede7054e08385df43d5ccd6462ee1b3539/solr/maven/org/apache/solr/solr-jwt-auth/maven-metadata.xml.sha1
==============================================================================
--- dev/solr/solr-9.1.1-RC1-rev-cfd3eaede7054e08385df43d5ccd6462ee1b3539/solr/maven/org/apache/solr/solr-jwt-auth/maven-metadata.xml.sha1 (added)
+++ dev/solr/solr-9.1.1-RC1-rev-cfd3eaede7054e08385df43d5ccd6462ee1b3539/solr/maven/org/apache/solr/solr-jwt-auth/maven-metadata.xml.sha1 Sat Jan 14 04:43:38 2023
@@ -0,0 +1 @@
+9de4e1e0eee4a7251b2cb7ce3def2743bfb3e603
\ No newline at end of file

Added: dev/solr/solr-9.1.1-RC1-rev-cfd3eaede7054e08385df43d5ccd6462ee1b3539/solr/maven/org/apache/solr/solr-jwt-auth/maven-metadata.xml.sha256
==============================================================================
--- dev/solr/solr-9.1.1-RC1-rev-cfd3eaede7054e08385df43d5ccd6462ee1b3539/solr/maven/org/apache/solr/solr-jwt-auth/maven-metadata.xml.sha256 (added)
+++ dev/solr/solr-9.1.1-RC1-rev-cfd3eaede7054e08385df43d5ccd6462ee1b3539/solr/maven/org/apache/solr/solr-jwt-auth/maven-metadata.xml.sha256 Sat Jan 14 04:43:38 2023
@@ -0,0 +1 @@
+ed5489126d5d6fb290e024478c72aab7ecc17875a62de17dc1807ae26f908f14
\ No newline at end of file

Added: dev/solr/solr-9.1.1-RC1-rev-cfd3eaede7054e08385df43d5ccd6462ee1b3539/solr/maven/org/apache/solr/solr-jwt-auth/maven-metadata.xml.sha512
==============================================================================
--- dev/solr/solr-9.1.1-RC1-rev-cfd3eaede7054e08385df43d5ccd6462ee1b3539/solr/maven/org/apache/solr/solr-jwt-auth/maven-metadata.xml.sha512 (added)
+++ dev/solr/solr-9.1.1-RC1-rev-cfd3eaede7054e08385df43d5ccd6462ee1b3539/solr/maven/org/apache/solr/solr-jwt-auth/maven-metadata.xml.sha512 Sat Jan 14 04:43:38 2023
@@ -0,0 +1 @@
+c142a1245f325cf14cf131839bc6c3f2258b4c41767bf81cce68b0ccef59aa708409d338b97182bc018d547852db2b875cfe426bf5fcee73b168d67504354fdd
\ No newline at end of file

Added: dev/solr/solr-9.1.1-RC1-rev-cfd3eaede7054e08385df43d5ccd6462ee1b3539/solr/maven/org/apache/solr/solr-langid/9.1.1/solr-langid-9.1.1-javadoc.jar
==============================================================================
Binary file - no diff available.

Propchange: dev/solr/solr-9.1.1-RC1-rev-cfd3eaede7054e08385df43d5ccd6462ee1b3539/solr/maven/org/apache/solr/solr-langid/9.1.1/solr-langid-9.1.1-javadoc.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: dev/solr/solr-9.1.1-RC1-rev-cfd3eaede7054e08385df43d5ccd6462ee1b3539/solr/maven/org/apache/solr/solr-langid/9.1.1/solr-langid-9.1.1-javadoc.jar.asc
==============================================================================
--- dev/solr/solr-9.1.1-RC1-rev-cfd3eaede7054e08385df43d5ccd6462ee1b3539/solr/maven/org/apache/solr/solr-langid/9.1.1/solr-langid-9.1.1-javadoc.jar.asc (added)
+++ dev/solr/solr-9.1.1-RC1-rev-cfd3eaede7054e08385df43d5ccd6462ee1b3539/solr/maven/org/apache/solr/solr-langid/9.1.1/solr-langid-9.1.1-javadoc.jar.asc Sat Jan 14 04:43:38 2023
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: BCPG v1.68
+
+iQIzBAABCAAdFiEEnpc2reoxsff1FtJ4kQRs+XHRkGwFAmPCJT0ACgkQkQRs+XHR
+kGwDfQ/+Mo1lrf73Nwzst9JXWtb4VZm3UwsyNtvwzGmtlUDtotdKxXZayvV1nrv9
+9I5E8iOzVOQ3IszS2fjxH1xq9YJrI7zjWwGxhTcH6YQyJ5Gx+G6oEG4H0wnzZwwp
+3RsK7rjc8DfXzSucJPsNsl8+lcgU/snq8k8X8yGoecwZc6F9Yn+z5NqNZJPKTXbh
+XbNU0tGDLHr25ubpLlchX43XqEzMEUbjhPPEUsz/UsZlZ89mSjkHaiySMe4zpdHc
+yeUj/GkmjpgMBImDUe7FTvhdmVeedpqYSh4olp/lDmxlZcuj2/KSzEHCyaAQQFOT
+81xvwuIySaM2vgKitjtluKpNi0m7AKHMG+fXsTRm4Me34GY5AP+iv8YqowUo6dmp
+GWc/E/TfhCP2kxR+bMujqArJRbD7E/I7etbUE0ZhG4Zcu8Tgha1TWeDMk/kyNeys
+C+qk2aI7GcuztfB2jyXsCwuJSmEfOsR+ov7rkHbxlVlYYZmTeQ6T2xyY2TZZUt7H
+fD/id+VEclLNkZsKmbwKRIompNoJzj4Qe6ruzgRwqpoBmq3tRfyIBU1d3R+2HltH
+iu7NAx1BRhEaDWw75Gns5llJa9Hi9QoR76rULESnzO3rTimaIXMYbQkYrTKLazqK
+9DmhNk/TDvt2nu7Ab+gIB81rJGoYenIL8VyDkIpiugl024TSeQs=
+=tEEy
+-----END PGP SIGNATURE-----

Added: dev/solr/solr-9.1.1-RC1-rev-cfd3eaede7054e08385df43d5ccd6462ee1b3539/solr/maven/org/apache/solr/solr-langid/9.1.1/solr-langid-9.1.1-javadoc.jar.asc.md5
==============================================================================
--- dev/solr/solr-9.1.1-RC1-rev-cfd3eaede7054e08385df43d5ccd6462ee1b3539/solr/maven/org/apache/solr/solr-langid/9.1.1/solr-langid-9.1.1-javadoc.jar.asc.md5 (added)
+++ dev/solr/solr-9.1.1-RC1-rev-cfd3eaede7054e08385df43d5ccd6462ee1b3539/solr/maven/org/apache/solr/solr-langid/9.1.1/solr-langid-9.1.1-javadoc.jar.asc.md5 Sat Jan 14 04:43:38 2023
@@ -0,0 +1 @@
+ed9183d620d7777901c168e8d2c13b91
\ No newline at end of file

Added: dev/solr/solr-9.1.1-RC1-rev-cfd3eaede7054e08385df43d5ccd6462ee1b3539/solr/maven/org/apache/solr/solr-langid/9.1.1/solr-langid-9.1.1-javadoc.jar.asc.sha1
==============================================================================
--- dev/solr/solr-9.1.1-RC1-rev-cfd3eaede7054e08385df43d5ccd6462ee1b3539/solr/maven/org/apache/solr/solr-langid/9.1.1/solr-langid-9.1.1-javadoc.jar.asc.sha1 (added)
+++ dev/solr/solr-9.1.1-RC1-rev-cfd3eaede7054e08385df43d5ccd6462ee1b3539/solr/maven/org/apache/solr/solr-langid/9.1.1/solr-langid-9.1.1-javadoc.jar.asc.sha1 Sat Jan 14 04:43:38 2023
@@ -0,0 +1 @@
+4bb5d4247bcc68380f1a15c208c2b6f1fd95e360
\ No newline at end of file

Added: dev/solr/solr-9.1.1-RC1-rev-cfd3eaede7054e08385df43d5ccd6462ee1b3539/solr/maven/org/apache/solr/solr-langid/9.1.1/solr-langid-9.1.1-javadoc.jar.asc.sha256
==============================================================================
--- dev/solr/solr-9.1.1-RC1-rev-cfd3eaede7054e08385df43d5ccd6462ee1b3539/solr/maven/org/apache/solr/solr-langid/9.1.1/solr-langid-9.1.1-javadoc.jar.asc.sha256 (added)
+++ dev/solr/solr-9.1.1-RC1-rev-cfd3eaede7054e08385df43d5ccd6462ee1b3539/solr/maven/org/apache/solr/solr-langid/9.1.1/solr-langid-9.1.1-javadoc.jar.asc.sha256 Sat Jan 14 04:43:38 2023
@@ -0,0 +1 @@
+5ac1fac8ee6c750443af44629eec2cf57789b685bc283a96006165c2877628cd
\ No newline at end of file

Added: dev/solr/solr-9.1.1-RC1-rev-cfd3eaede7054e08385df43d5ccd6462ee1b3539/solr/maven/org/apache/solr/solr-langid/9.1.1/solr-langid-9.1.1-javadoc.jar.asc.sha512
==============================================================================
--- dev/solr/solr-9.1.1-RC1-rev-cfd3eaede7054e08385df43d5ccd6462ee1b3539/solr/maven/org/apache/solr/solr-langid/9.1.1/solr-langid-9.1.1-javadoc.jar.asc.sha512 (added)
+++ dev/solr/solr-9.1.1-RC1-rev-cfd3eaede7054e08385df43d5ccd6462ee1b3539/solr/maven/org/apache/solr/solr-langid/9.1.1/solr-langid-9.1.1-javadoc.jar.asc.sha512 Sat Jan 14 04:43:38 2023
@@ -0,0 +1 @@
+ef53be2f7a68049522c42a7e5ba536dcd7a8b84d742671dc143c3acc32044a883875adec83eec242dfab044eb582c60893d3b7380b67d92783e36b46da22e16f
\ No newline at end of file

Added: dev/solr/solr-9.1.1-RC1-rev-cfd3eaede7054e08385df43d5ccd6462ee1b3539/solr/maven/org/apache/solr/solr-langid/9.1.1/solr-langid-9.1.1-javadoc.jar.md5
==============================================================================
--- dev/solr/solr-9.1.1-RC1-rev-cfd3eaede7054e08385df43d5ccd6462ee1b3539/solr/maven/org/apache/solr/solr-langid/9.1.1/solr-langid-9.1.1-javadoc.jar.md5 (added)
+++ dev/solr/solr-9.1.1-RC1-rev-cfd3eaede7054e08385df43d5ccd6462ee1b3539/solr/maven/org/apache/solr/solr-langid/9.1.1/solr-langid-9.1.1-javadoc.jar.md5 Sat Jan 14 04:43:38 2023
@@ -0,0 +1 @@
+ea2e13aa202023124cedcdb837dcd8b0
\ No newline at end of file

Added: dev/solr/solr-9.1.1-RC1-rev-cfd3eaede7054e08385df43d5ccd6462ee1b3539/solr/maven/org/apache/solr/solr-langid/9.1.1/solr-langid-9.1.1-javadoc.jar.sha1
==============================================================================
--- dev/solr/solr-9.1.1-RC1-rev-cfd3eaede7054e08385df43d5ccd6462ee1b3539/solr/maven/org/apache/solr/solr-langid/9.1.1/solr-langid-9.1.1-javadoc.jar.sha1 (added)
+++ dev/solr/solr-9.1.1-RC1-rev-cfd3eaede7054e08385df43d5ccd6462ee1b3539/solr/maven/org/apache/solr/solr-langid/9.1.1/solr-langid-9.1.1-javadoc.jar.sha1 Sat Jan 14 04:43:38 2023
@@ -0,0 +1 @@
+32b07fb5b8035eb34a3014a47080d5558f164ed9
\ No newline at end of file

Added: dev/solr/solr-9.1.1-RC1-rev-cfd3eaede7054e08385df43d5ccd6462ee1b3539/solr/maven/org/apache/solr/solr-langid/9.1.1/solr-langid-9.1.1-javadoc.jar.sha256
==============================================================================
--- dev/solr/solr-9.1.1-RC1-rev-cfd3eaede7054e08385df43d5ccd6462ee1b3539/solr/maven/org/apache/solr/solr-langid/9.1.1/solr-langid-9.1.1-javadoc.jar.sha256 (added)
+++ dev/solr/solr-9.1.1-RC1-rev-cfd3eaede7054e08385df43d5ccd6462ee1b3539/solr/maven/org/apache/solr/solr-langid/9.1.1/solr-langid-9.1.1-javadoc.jar.sha256 Sat Jan 14 04:43:38 2023
@@ -0,0 +1 @@
+3e5294ad14836f0d69672f8a1d44993ded68e16af4528cdf22123bf4f6deff92
\ No newline at end of file

Added: dev/solr/solr-9.1.1-RC1-rev-cfd3eaede7054e08385df43d5ccd6462ee1b3539/solr/maven/org/apache/solr/solr-langid/9.1.1/solr-langid-9.1.1-javadoc.jar.sha512
==============================================================================
--- dev/solr/solr-9.1.1-RC1-rev-cfd3eaede7054e08385df43d5ccd6462ee1b3539/solr/maven/org/apache/solr/solr-langid/9.1.1/solr-langid-9.1.1-javadoc.jar.sha512 (added)
+++ dev/solr/solr-9.1.1-RC1-rev-cfd3eaede7054e08385df43d5ccd6462ee1b3539/solr/maven/org/apache/solr/solr-langid/9.1.1/solr-langid-9.1.1-javadoc.jar.sha512 Sat Jan 14 04:43:38 2023
@@ -0,0 +1 @@
+ad558bcafdba82c7017ab9d42dd454704a4ae94be9168a4027fb1a9d54a0aaacdcac93d45b53f1d4c7039de0f960db3c5ba4f1f3b4b04bdee376c6b17cab8a99
\ No newline at end of file

Added: dev/solr/solr-9.1.1-RC1-rev-cfd3eaede7054e08385df43d5ccd6462ee1b3539/solr/maven/org/apache/solr/solr-langid/9.1.1/solr-langid-9.1.1-sources.jar
==============================================================================
Binary file - no diff available.

Propchange: dev/solr/solr-9.1.1-RC1-rev-cfd3eaede7054e08385df43d5ccd6462ee1b3539/solr/maven/org/apache/solr/solr-langid/9.1.1/solr-langid-9.1.1-sources.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: dev/solr/solr-9.1.1-RC1-rev-cfd3eaede7054e08385df43d5ccd6462ee1b3539/solr/maven/org/apache/solr/solr-langid/9.1.1/solr-langid-9.1.1-sources.jar.asc
==============================================================================
--- dev/solr/solr-9.1.1-RC1-rev-cfd3eaede7054e08385df43d5ccd6462ee1b3539/solr/maven/org/apache/solr/solr-langid/9.1.1/solr-langid-9.1.1-sources.jar.asc (added)
+++ dev/solr/solr-9.1.1-RC1-rev-cfd3eaede7054e08385df43d5ccd6462ee1b3539/solr/maven/org/apache/solr/solr-langid/9.1.1/solr-langid-9.1.1-sources.jar.asc Sat Jan 14 04:43:38 2023
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: BCPG v1.68
+
+iQIzBAABCAAdFiEEnpc2reoxsff1FtJ4kQRs+XHRkGwFAmPCJUgACgkQkQRs+XHR
+kGxOug/8DuGXjrcppKhaF51w/dDJm96KWEC8gTiycf2+8Smo7DjR21vqodb2A8DJ
+JCYMtAP9SniOH8PhY9snaWO6GgR77+YqlUTEKyBEUXJQikcUciyYXwYUs4OgGPws
+6hOGBwHD18o5XTDm+Db+u+3lEHIuN+si8c+N+zxkOhZbtw8dYhdPnSuBa6VOk+OG
+Inwc6M16uSu18IMsqGPzOW4iqRlKI6YiqVU7dZW4Mqi4jywdjeRZiQQ/ANxLPc6l
+UM19z22DTmoOhaen/9ncbcTI9Oeo8zOWAOX+yWpeYH3xyJXmF0Sadj/mYZEXGWcA
+6II4G2oDSbwf7HtKQUhMHJjGF7jII9uZU10vF05nMdLtNTNzaLYPUfpBtek3kfhs
+3n5wszJ0TKRQ/7fc1Ts7ZP5oEtLc7PAjFT1UNWamN9jTUFcTp52vDuByeKlSIlvh
+3+OGxd/cSqvZBwKLvsUqHsGxte/+miDuMcFwBjsQHLUXAuqG/cNnXAk6IhAta2hg
+5ZAqEKXxFDkE+P2Tj+e7pXNf+gtZSjJQ8HrvgP9Cjp6iZhoV4eo3/HHQNgPUhlEa
+ToesHRf+YuIvZzviSVCrNvzfvBcdz1nTJVIemHIRjP6EYEe11ou/l2fPhtGAId9f
+GdUDyLkJ+eKlPTuN3Pa4UUqYZ/N8F1e3iocD3d9IUdl5QJLOdok=
+=HTm3
+-----END PGP SIGNATURE-----

Added: dev/solr/solr-9.1.1-RC1-rev-cfd3eaede7054e08385df43d5ccd6462ee1b3539/solr/maven/org/apache/solr/solr-langid/9.1.1/solr-langid-9.1.1-sources.jar.asc.md5
==============================================================================
--- dev/solr/solr-9.1.1-RC1-rev-cfd3eaede7054e08385df43d5ccd6462ee1b3539/solr/maven/org/apache/solr/solr-langid/9.1.1/solr-langid-9.1.1-sources.jar.asc.md5 (added)
+++ dev/solr/solr-9.1.1-RC1-rev-cfd3eaede7054e08385df43d5ccd6462ee1b3539/solr/maven/org/apache/solr/solr-langid/9.1.1/solr-langid-9.1.1-sources.jar.asc.md5 Sat Jan 14 04:43:38 2023
@@ -0,0 +1 @@
+00bdd146438fe31cd86edd5c93ae8fac
\ No newline at end of file

Added: dev/solr/solr-9.1.1-RC1-rev-cfd3eaede7054e08385df43d5ccd6462ee1b3539/solr/maven/org/apache/solr/solr-langid/9.1.1/solr-langid-9.1.1-sources.jar.asc.sha1
==============================================================================
--- dev/solr/solr-9.1.1-RC1-rev-cfd3eaede7054e08385df43d5ccd6462ee1b3539/solr/maven/org/apache/solr/solr-langid/9.1.1/solr-langid-9.1.1-sources.jar.asc.sha1 (added)
+++ dev/solr/solr-9.1.1-RC1-rev-cfd3eaede7054e08385df43d5ccd6462ee1b3539/solr/maven/org/apache/solr/solr-langid/9.1.1/solr-langid-9.1.1-sources.jar.asc.sha1 Sat Jan 14 04:43:38 2023
@@ -0,0 +1 @@
+ff09abdf8ca5c5840a6aeeeb87f33d7ae0714bc4
\ No newline at end of file

Added: dev/solr/solr-9.1.1-RC1-rev-cfd3eaede7054e08385df43d5ccd6462ee1b3539/solr/maven/org/apache/solr/solr-langid/9.1.1/solr-langid-9.1.1-sources.jar.asc.sha256
==============================================================================
--- dev/solr/solr-9.1.1-RC1-rev-cfd3eaede7054e08385df43d5ccd6462ee1b3539/solr/maven/org/apache/solr/solr-langid/9.1.1/solr-langid-9.1.1-sources.jar.asc.sha256 (added)
+++ dev/solr/solr-9.1.1-RC1-rev-cfd3eaede7054e08385df43d5ccd6462ee1b3539/solr/maven/org/apache/solr/solr-langid/9.1.1/solr-langid-9.1.1-sources.jar.asc.sha256 Sat Jan 14 04:43:38 2023
@@ -0,0 +1 @@
+e3b69c0525817579eeff63e0104aee2610e7df48a1c0677737101a223fdd57b1
\ No newline at end of file

Added: dev/solr/solr-9.1.1-RC1-rev-cfd3eaede7054e08385df43d5ccd6462ee1b3539/solr/maven/org/apache/solr/solr-langid/9.1.1/solr-langid-9.1.1-sources.jar.asc.sha512
==============================================================================
--- dev/solr/solr-9.1.1-RC1-rev-cfd3eaede7054e08385df43d5ccd6462ee1b3539/solr/maven/org/apache/solr/solr-langid/9.1.1/solr-langid-9.1.1-sources.jar.asc.sha512 (added)
+++ dev/solr/solr-9.1.1-RC1-rev-cfd3eaede7054e08385df43d5ccd6462ee1b3539/solr/maven/org/apache/solr/solr-langid/9.1.1/solr-langid-9.1.1-sources.jar.asc.sha512 Sat Jan 14 04:43:38 2023
@@ -0,0 +1 @@
+3b4fe759bceed3b5ad43c119ea9e18f05ae1522e22900e461cac812bda94e974b5ca2683c7125f8a75f5872b6a732e3353f5489d99334e7b61fe7d140bf1bc6c
\ No newline at end of file

Added: dev/solr/solr-9.1.1-RC1-rev-cfd3eaede7054e08385df43d5ccd6462ee1b3539/solr/maven/org/apache/solr/solr-langid/9.1.1/solr-langid-9.1.1-sources.jar.md5
==============================================================================
--- dev/solr/solr-9.1.1-RC1-rev-cfd3eaede7054e08385df43d5ccd6462ee1b3539/solr/maven/org/apache/solr/solr-langid/9.1.1/solr-langid-9.1.1-sources.jar.md5 (added)
+++ dev/solr/solr-9.1.1-RC1-rev-cfd3eaede7054e08385df43d5ccd6462ee1b3539/solr/maven/org/apache/solr/solr-langid/9.1.1/solr-langid-9.1.1-sources.jar.md5 Sat Jan 14 04:43:38 2023
@@ -0,0 +1 @@
+9f998d7032f3cf2d65590368f44e6b3d
\ No newline at end of file

Added: dev/solr/solr-9.1.1-RC1-rev-cfd3eaede7054e08385df43d5ccd6462ee1b3539/solr/maven/org/apache/solr/solr-langid/9.1.1/solr-langid-9.1.1-sources.jar.sha1
==============================================================================
--- dev/solr/solr-9.1.1-RC1-rev-cfd3eaede7054e08385df43d5ccd6462ee1b3539/solr/maven/org/apache/solr/solr-langid/9.1.1/solr-langid-9.1.1-sources.jar.sha1 (added)
+++ dev/solr/solr-9.1.1-RC1-rev-cfd3eaede7054e08385df43d5ccd6462ee1b3539/solr/maven/org/apache/solr/solr-langid/9.1.1/solr-langid-9.1.1-sources.jar.sha1 Sat Jan 14 04:43:38 2023
@@ -0,0 +1 @@
+306d0c64a8e94dd592c1b27c03710535096eeb3f
\ No newline at end of file

Added: dev/solr/solr-9.1.1-RC1-rev-cfd3eaede7054e08385df43d5ccd6462ee1b3539/solr/maven/org/apache/solr/solr-langid/9.1.1/solr-langid-9.1.1-sources.jar.sha256
==============================================================================
--- dev/solr/solr-9.1.1-RC1-rev-cfd3eaede7054e08385df43d5ccd6462ee1b3539/solr/maven/org/apache/solr/solr-langid/9.1.1/solr-langid-9.1.1-sources.jar.sha256 (added)
+++ dev/solr/solr-9.1.1-RC1-rev-cfd3eaede7054e08385df43d5ccd6462ee1b3539/solr/maven/org/apache/solr/solr-langid/9.1.1/solr-langid-9.1.1-sources.jar.sha256 Sat Jan 14 04:43:38 2023
@@ -0,0 +1 @@
+a20979c68789642fa195c975c23045e05c0d6ecd40d243a7fd4f90af16fb08e3
\ No newline at end of file

Added: dev/solr/solr-9.1.1-RC1-rev-cfd3eaede7054e08385df43d5ccd6462ee1b3539/solr/maven/org/apache/solr/solr-langid/9.1.1/solr-langid-9.1.1-sources.jar.sha512
==============================================================================
--- dev/solr/solr-9.1.1-RC1-rev-cfd3eaede7054e08385df43d5ccd6462ee1b3539/solr/maven/org/apache/solr/solr-langid/9.1.1/solr-langid-9.1.1-sources.jar.sha512 (added)
+++ dev/solr/solr-9.1.1-RC1-rev-cfd3eaede7054e08385df43d5ccd6462ee1b3539/solr/maven/org/apache/solr/solr-langid/9.1.1/solr-langid-9.1.1-sources.jar.sha512 Sat Jan 14 04:43:38 2023
@@ -0,0 +1 @@
+a13a28f500080dd67ed254d5396a28696c63ceff5f273299f40475ca59125e847e0353e3e6c15cb00bc7453819f85ac3208628f943440ca6961b226bb0f67c09
\ No newline at end of file

Added: dev/solr/solr-9.1.1-RC1-rev-cfd3eaede7054e08385df43d5ccd6462ee1b3539/solr/maven/org/apache/solr/solr-langid/9.1.1/solr-langid-9.1.1.jar
==============================================================================
Binary file - no diff available.

Propchange: dev/solr/solr-9.1.1-RC1-rev-cfd3eaede7054e08385df43d5ccd6462ee1b3539/solr/maven/org/apache/solr/solr-langid/9.1.1/solr-langid-9.1.1.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: dev/solr/solr-9.1.1-RC1-rev-cfd3eaede7054e08385df43d5ccd6462ee1b3539/solr/maven/org/apache/solr/solr-langid/9.1.1/solr-langid-9.1.1.jar.asc
==============================================================================
--- dev/solr/solr-9.1.1-RC1-rev-cfd3eaede7054e08385df43d5ccd6462ee1b3539/solr/maven/org/apache/solr/solr-langid/9.1.1/solr-langid-9.1.1.jar.asc (added)
+++ dev/solr/solr-9.1.1-RC1-rev-cfd3eaede7054e08385df43d5ccd6462ee1b3539/solr/maven/org/apache/solr/solr-langid/9.1.1/solr-langid-9.1.1.jar.asc Sat Jan 14 04:43:38 2023
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: BCPG v1.68
+
+iQIzBAABCAAdFiEEnpc2reoxsff1FtJ4kQRs+XHRkGwFAmPCJVMACgkQkQRs+XHR
+kGzoZhAAme1e/KDM9slN2lxTYhBPkjIGfCo8FvpxLDqov4iBbTfMrRmYvxoAA7WJ
+QdP9HDzIt+EvE2L4L6DnXUetD1G6qW75rbnNm3HVAeCXglFmF45re/+luhuUQgkW
+PKtjeoLClevdknqC+Vmai9+DMBTOzbk/2H6cqwQxkcunSqBziydgiGzfpjdYX2ff
+MEQao1w9Wtu6yN6C3E14+V2cdSEfhHQ5X4exy+aZjmAewFFozETKyWqEJroimCbx
+7Ef8p8kPMYOuOpYebdCFKwPBOxgiDNZDlxYvlmnODWMtrcGS4qoguu/tekBzOebe
+XflSaQguFXK2qpnkXyZIjv0O3xo/ncXusVxPn8PQq+SSgAjr1eBZunMhweOGK5dX
+GfwbzDsj/nR8XbZTj0Xg2Vj/XJWtMHXF/RKVUS3kxlEXN9zs1Zc3Vq6KON+gbAE+
+DL8168fGrschqX1jIiMd4sTW9nAcNhfzNiiteVgTKSswq8+jynQG1YLa4Lwpwl0a
+g9CTe4BdrQF3YnXNlEoNIa/QKnDnrjadxTanotQuemJ4EajiYCOamj/v9i7e0jUJ
+mkjdomE74FexqUZOrDU8WDm+mbOgZtLhiFExknT53LQHEfnO4mVDNS4uJa79YTFO
+psvvVMysynB9VKrePtZm+NcDNuV4Mae8RQxXbOZ3YYpx0fXakVc=
+=bXah
+-----END PGP SIGNATURE-----

Added: dev/solr/solr-9.1.1-RC1-rev-cfd3eaede7054e08385df43d5ccd6462ee1b3539/solr/maven/org/apache/solr/solr-langid/9.1.1/solr-langid-9.1.1.jar.asc.md5
==============================================================================
--- dev/solr/solr-9.1.1-RC1-rev-cfd3eaede7054e08385df43d5ccd6462ee1b3539/solr/maven/org/apache/solr/solr-langid/9.1.1/solr-langid-9.1.1.jar.asc.md5 (added)
+++ dev/solr/solr-9.1.1-RC1-rev-cfd3eaede7054e08385df43d5ccd6462ee1b3539/solr/maven/org/apache/solr/solr-langid/9.1.1/solr-langid-9.1.1.jar.asc.md5 Sat Jan 14 04:43:38 2023
@@ -0,0 +1 @@
+e79bd37c94b300c7d2db7ceca4970930
\ No newline at end of file

Added: dev/solr/solr-9.1.1-RC1-rev-cfd3eaede7054e08385df43d5ccd6462ee1b3539/solr/maven/org/apache/solr/solr-langid/9.1.1/solr-langid-9.1.1.jar.asc.sha1
==============================================================================
--- dev/solr/solr-9.1.1-RC1-rev-cfd3eaede7054e08385df43d5ccd6462ee1b3539/solr/maven/org/apache/solr/solr-langid/9.1.1/solr-langid-9.1.1.jar.asc.sha1 (added)
+++ dev/solr/solr-9.1.1-RC1-rev-cfd3eaede7054e08385df43d5ccd6462ee1b3539/solr/maven/org/apache/solr/solr-langid/9.1.1/solr-langid-9.1.1.jar.asc.sha1 Sat Jan 14 04:43:38 2023
@@ -0,0 +1 @@
+e756c7cd5badd3f2479c0c275b2b8d6b1ee89adf
\ No newline at end of file

Added: dev/solr/solr-9.1.1-RC1-rev-cfd3eaede7054e08385df43d5ccd6462ee1b3539/solr/maven/org/apache/solr/solr-langid/9.1.1/solr-langid-9.1.1.jar.asc.sha256
==============================================================================
--- dev/solr/solr-9.1.1-RC1-rev-cfd3eaede7054e08385df43d5ccd6462ee1b3539/solr/maven/org/apache/solr/solr-langid/9.1.1/solr-langid-9.1.1.jar.asc.sha256 (added)
+++ dev/solr/solr-9.1.1-RC1-rev-cfd3eaede7054e08385df43d5ccd6462ee1b3539/solr/maven/org/apache/solr/solr-langid/9.1.1/solr-langid-9.1.1.jar.asc.sha256 Sat Jan 14 04:43:38 2023
@@ -0,0 +1 @@
+75cbf03512067e12b798df46a264b53adaf81b6482a93e54252ae79dd0a1631f
\ No newline at end of file

Added: dev/solr/solr-9.1.1-RC1-rev-cfd3eaede7054e08385df43d5ccd6462ee1b3539/solr/maven/org/apache/solr/solr-langid/9.1.1/solr-langid-9.1.1.jar.asc.sha512
==============================================================================
--- dev/solr/solr-9.1.1-RC1-rev-cfd3eaede7054e08385df43d5ccd6462ee1b3539/solr/maven/org/apache/solr/solr-langid/9.1.1/solr-langid-9.1.1.jar.asc.sha512 (added)
+++ dev/solr/solr-9.1.1-RC1-rev-cfd3eaede7054e08385df43d5ccd6462ee1b3539/solr/maven/org/apache/solr/solr-langid/9.1.1/solr-langid-9.1.1.jar.asc.sha512 Sat Jan 14 04:43:38 2023
@@ -0,0 +1 @@
+9f35705fb27b5c8575646197acba296b61d7c437d37a82b3a2cb7140ade56126742bcdce71b4b3a1a00b31551a1d9f4c53147a69736f7cf39a03d11cc647364b
\ No newline at end of file

Added: dev/solr/solr-9.1.1-RC1-rev-cfd3eaede7054e08385df43d5ccd6462ee1b3539/solr/maven/org/apache/solr/solr-langid/9.1.1/solr-langid-9.1.1.jar.md5
==============================================================================
--- dev/solr/solr-9.1.1-RC1-rev-cfd3eaede7054e08385df43d5ccd6462ee1b3539/solr/maven/org/apache/solr/solr-langid/9.1.1/solr-langid-9.1.1.jar.md5 (added)
+++ dev/solr/solr-9.1.1-RC1-rev-cfd3eaede7054e08385df43d5ccd6462ee1b3539/solr/maven/org/apache/solr/solr-langid/9.1.1/solr-langid-9.1.1.jar.md5 Sat Jan 14 04:43:38 2023
@@ -0,0 +1 @@
+ef57c4676b82c6eb1e28fce28ff1b17f
\ No newline at end of file

Added: dev/solr/solr-9.1.1-RC1-rev-cfd3eaede7054e08385df43d5ccd6462ee1b3539/solr/maven/org/apache/solr/solr-langid/9.1.1/solr-langid-9.1.1.jar.sha1
==============================================================================
--- dev/solr/solr-9.1.1-RC1-rev-cfd3eaede7054e08385df43d5ccd6462ee1b3539/solr/maven/org/apache/solr/solr-langid/9.1.1/solr-langid-9.1.1.jar.sha1 (added)
+++ dev/solr/solr-9.1.1-RC1-rev-cfd3eaede7054e08385df43d5ccd6462ee1b3539/solr/maven/org/apache/solr/solr-langid/9.1.1/solr-langid-9.1.1.jar.sha1 Sat Jan 14 04:43:38 2023
@@ -0,0 +1 @@
+7c12e336ea1b310744eab692f15b53cb067f17f4
\ No newline at end of file

Added: dev/solr/solr-9.1.1-RC1-rev-cfd3eaede7054e08385df43d5ccd6462ee1b3539/solr/maven/org/apache/solr/solr-langid/9.1.1/solr-langid-9.1.1.jar.sha256
==============================================================================
--- dev/solr/solr-9.1.1-RC1-rev-cfd3eaede7054e08385df43d5ccd6462ee1b3539/solr/maven/org/apache/solr/solr-langid/9.1.1/solr-langid-9.1.1.jar.sha256 (added)
+++ dev/solr/solr-9.1.1-RC1-rev-cfd3eaede7054e08385df43d5ccd6462ee1b3539/solr/maven/org/apache/solr/solr-langid/9.1.1/solr-langid-9.1.1.jar.sha256 Sat Jan 14 04:43:38 2023
@@ -0,0 +1 @@
+6884c446cfed695a7c0b9888e76467c80c5ebdaa2a860e67f768f2686b6ef3c5
\ No newline at end of file

Added: dev/solr/solr-9.1.1-RC1-rev-cfd3eaede7054e08385df43d5ccd6462ee1b3539/solr/maven/org/apache/solr/solr-langid/9.1.1/solr-langid-9.1.1.jar.sha512
==============================================================================
--- dev/solr/solr-9.1.1-RC1-rev-cfd3eaede7054e08385df43d5ccd6462ee1b3539/solr/maven/org/apache/solr/solr-langid/9.1.1/solr-langid-9.1.1.jar.sha512 (added)
+++ dev/solr/solr-9.1.1-RC1-rev-cfd3eaede7054e08385df43d5ccd6462ee1b3539/solr/maven/org/apache/solr/solr-langid/9.1.1/solr-langid-9.1.1.jar.sha512 Sat Jan 14 04:43:38 2023
@@ -0,0 +1 @@
+60a7d04c3e14d13f27a637bd51a89da6e47f39618227e3c9e6787cef851850393e6fddb50832aad7789b9bf01aadb5b71ee29b14e77a70d94967a3ea825792df
\ No newline at end of file

Added: dev/solr/solr-9.1.1-RC1-rev-cfd3eaede7054e08385df43d5ccd6462ee1b3539/solr/maven/org/apache/solr/solr-langid/9.1.1/solr-langid-9.1.1.pom
==============================================================================
--- dev/solr/solr-9.1.1-RC1-rev-cfd3eaede7054e08385df43d5ccd6462ee1b3539/solr/maven/org/apache/solr/solr-langid/9.1.1/solr-langid-9.1.1.pom (added)
+++ dev/solr/solr-9.1.1-RC1-rev-cfd3eaede7054e08385df43d5ccd6462ee1b3539/solr/maven/org/apache/solr/solr-langid/9.1.1/solr-langid-9.1.1.pom Sat Jan 14 04:43:38 2023
@@ -0,0 +1,328 @@
+<?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-langid</artifactId>
+  <version>9.1.1</version>
+  <name>Apache Solr (module: langid)</name>
+  <description>Apache Solr (module: langid)</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.1.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>
+      </exclusions>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.solr</groupId>
+      <artifactId>solr-solrj</artifactId>
+      <version>9.1.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>
+      </exclusions>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.tika</groupId>
+      <artifactId>tika-core</artifactId>
+      <version>1.28.4</version>
+      <scope>runtime</scope>
+      <exclusions>
+        <exclusion>
+          <artifactId>*</artifactId>
+          <groupId>*</groupId>
+        </exclusion>
+      </exclusions>
+    </dependency>
+    <dependency>
+      <groupId>commons-io</groupId>
+      <artifactId>commons-io</artifactId>
+      <version>2.11.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>
+      </exclusions>
+    </dependency>
+    <dependency>
+      <groupId>com.cybozu.labs</groupId>
+      <artifactId>langdetect</artifactId>
+      <version>1.1-20120112</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>
+      </exclusions>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.opennlp</groupId>
+      <artifactId>opennlp-tools</artifactId>
+      <version>1.9.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>
+      </exclusions>
+    </dependency>
+    <dependency>
+      <groupId>org.slf4j</groupId>
+      <artifactId>slf4j-api</artifactId>
+      <version>1.7.36</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>
+      </exclusions>
+    </dependency>
+  </dependencies>
+</project>

Added: dev/solr/solr-9.1.1-RC1-rev-cfd3eaede7054e08385df43d5ccd6462ee1b3539/solr/maven/org/apache/solr/solr-langid/9.1.1/solr-langid-9.1.1.pom.asc
==============================================================================
--- dev/solr/solr-9.1.1-RC1-rev-cfd3eaede7054e08385df43d5ccd6462ee1b3539/solr/maven/org/apache/solr/solr-langid/9.1.1/solr-langid-9.1.1.pom.asc (added)
+++ dev/solr/solr-9.1.1-RC1-rev-cfd3eaede7054e08385df43d5ccd6462ee1b3539/solr/maven/org/apache/solr/solr-langid/9.1.1/solr-langid-9.1.1.pom.asc Sat Jan 14 04:43:38 2023
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: BCPG v1.68
+
+iQIzBAABCAAdFiEEnpc2reoxsff1FtJ4kQRs+XHRkGwFAmPCJTIACgkQkQRs+XHR
+kGxNCw/8CgyFd6JYdl2HdXkHW2lyoh8GRfeb4iHn9t19ObauGVQhuDYoYzRR1+XG
+forvB7UCPPjqS8UzAYGCckKI/xafBr/cp0Sxuk7MONIrpzKT7s/W8C3BNuh9ZIy+
+hzkNy6NmgAKiadb4HEacpfJBEDcMghwiYRrOiAOqNDz9EBxxiFL9zSuOCLiRg/L5
+th3QWcF2UMkgUXacKNH9fG5DLCoHVhwVXWg7Vqm0V+WPBCPmK2QAfz87kbzX6D15
+a1ojXGQS6+kyM5UOW4/hc3erw4SmIulBOhD4fMr68kG7sqV6M1EeHTAW40nw6dFv
+bp/1CwhAA/gM+qBT/xPjSs3ysx4/g5nfrD10VJ9w9H9oJDk1JyU2VWlt2+aY4ft3
+GvIYPE9qUs91glPNJUHW7Zb8CPMeWHuKP2r5K6kn92funTELUBQBgE2rVbhJGB/C
+9aPlo16DhWc80ypw2U9cUthcK2JaryBXU17vuB2iUAo1uSDQSs17QWQPIjNJqole
+us7QK1k7IqT51DHzh6Sk2ppOSwifLuno/Sz8zslLQ4gHCLbZbvk4h33jgXou7ls/
+robrvJ+gkrZ3mqQenmYyWAwg2PH9BzVJdb78ISQddjIuyc6udSzhWw7SrTUPtP8J
+sirYj+kLEeA1tewAKYkwGZtIqYUEMNssLsY82hfseUehdhnGpys=
+=8B5W
+-----END PGP SIGNATURE-----

Added: dev/solr/solr-9.1.1-RC1-rev-cfd3eaede7054e08385df43d5ccd6462ee1b3539/solr/maven/org/apache/solr/solr-langid/9.1.1/solr-langid-9.1.1.pom.asc.md5
==============================================================================
--- dev/solr/solr-9.1.1-RC1-rev-cfd3eaede7054e08385df43d5ccd6462ee1b3539/solr/maven/org/apache/solr/solr-langid/9.1.1/solr-langid-9.1.1.pom.asc.md5 (added)
+++ dev/solr/solr-9.1.1-RC1-rev-cfd3eaede7054e08385df43d5ccd6462ee1b3539/solr/maven/org/apache/solr/solr-langid/9.1.1/solr-langid-9.1.1.pom.asc.md5 Sat Jan 14 04:43:38 2023
@@ -0,0 +1 @@
+8f1d2af76dc404a85fe12bb47afcdfd4
\ No newline at end of file

Added: dev/solr/solr-9.1.1-RC1-rev-cfd3eaede7054e08385df43d5ccd6462ee1b3539/solr/maven/org/apache/solr/solr-langid/9.1.1/solr-langid-9.1.1.pom.asc.sha1
==============================================================================
--- dev/solr/solr-9.1.1-RC1-rev-cfd3eaede7054e08385df43d5ccd6462ee1b3539/solr/maven/org/apache/solr/solr-langid/9.1.1/solr-langid-9.1.1.pom.asc.sha1 (added)
+++ dev/solr/solr-9.1.1-RC1-rev-cfd3eaede7054e08385df43d5ccd6462ee1b3539/solr/maven/org/apache/solr/solr-langid/9.1.1/solr-langid-9.1.1.pom.asc.sha1 Sat Jan 14 04:43:38 2023
@@ -0,0 +1 @@
+440661292b37d2595b604b7ffa120422ae90b17a
\ No newline at end of file

Added: dev/solr/solr-9.1.1-RC1-rev-cfd3eaede7054e08385df43d5ccd6462ee1b3539/solr/maven/org/apache/solr/solr-langid/9.1.1/solr-langid-9.1.1.pom.asc.sha256
==============================================================================
--- dev/solr/solr-9.1.1-RC1-rev-cfd3eaede7054e08385df43d5ccd6462ee1b3539/solr/maven/org/apache/solr/solr-langid/9.1.1/solr-langid-9.1.1.pom.asc.sha256 (added)
+++ dev/solr/solr-9.1.1-RC1-rev-cfd3eaede7054e08385df43d5ccd6462ee1b3539/solr/maven/org/apache/solr/solr-langid/9.1.1/solr-langid-9.1.1.pom.asc.sha256 Sat Jan 14 04:43:38 2023
@@ -0,0 +1 @@
+2b0dd4307b6b1349dafd5ae692eb17f3299cc879f7c1868746a7d69e982626b7
\ No newline at end of file

Added: dev/solr/solr-9.1.1-RC1-rev-cfd3eaede7054e08385df43d5ccd6462ee1b3539/solr/maven/org/apache/solr/solr-langid/9.1.1/solr-langid-9.1.1.pom.asc.sha512
==============================================================================
--- dev/solr/solr-9.1.1-RC1-rev-cfd3eaede7054e08385df43d5ccd6462ee1b3539/solr/maven/org/apache/solr/solr-langid/9.1.1/solr-langid-9.1.1.pom.asc.sha512 (added)
+++ dev/solr/solr-9.1.1-RC1-rev-cfd3eaede7054e08385df43d5ccd6462ee1b3539/solr/maven/org/apache/solr/solr-langid/9.1.1/solr-langid-9.1.1.pom.asc.sha512 Sat Jan 14 04:43:38 2023
@@ -0,0 +1 @@
+7b57dc1cea7388e8f436babcf9917d48c71631325c2171c1fc229019d46feda4132c2efe9297bcc4c105e4ff4fbf95a969f39cc455c9673e4e994754bc819671
\ No newline at end of file

Added: dev/solr/solr-9.1.1-RC1-rev-cfd3eaede7054e08385df43d5ccd6462ee1b3539/solr/maven/org/apache/solr/solr-langid/9.1.1/solr-langid-9.1.1.pom.md5
==============================================================================
--- dev/solr/solr-9.1.1-RC1-rev-cfd3eaede7054e08385df43d5ccd6462ee1b3539/solr/maven/org/apache/solr/solr-langid/9.1.1/solr-langid-9.1.1.pom.md5 (added)
+++ dev/solr/solr-9.1.1-RC1-rev-cfd3eaede7054e08385df43d5ccd6462ee1b3539/solr/maven/org/apache/solr/solr-langid/9.1.1/solr-langid-9.1.1.pom.md5 Sat Jan 14 04:43:38 2023
@@ -0,0 +1 @@
+3d1056e19291e4c011a5402451176dfc
\ No newline at end of file

Added: dev/solr/solr-9.1.1-RC1-rev-cfd3eaede7054e08385df43d5ccd6462ee1b3539/solr/maven/org/apache/solr/solr-langid/9.1.1/solr-langid-9.1.1.pom.sha1
==============================================================================
--- dev/solr/solr-9.1.1-RC1-rev-cfd3eaede7054e08385df43d5ccd6462ee1b3539/solr/maven/org/apache/solr/solr-langid/9.1.1/solr-langid-9.1.1.pom.sha1 (added)
+++ dev/solr/solr-9.1.1-RC1-rev-cfd3eaede7054e08385df43d5ccd6462ee1b3539/solr/maven/org/apache/solr/solr-langid/9.1.1/solr-langid-9.1.1.pom.sha1 Sat Jan 14 04:43:38 2023
@@ -0,0 +1 @@
+369e708219e63f1f3884616d6029db995683ea87
\ No newline at end of file

Added: dev/solr/solr-9.1.1-RC1-rev-cfd3eaede7054e08385df43d5ccd6462ee1b3539/solr/maven/org/apache/solr/solr-langid/9.1.1/solr-langid-9.1.1.pom.sha256
==============================================================================
--- dev/solr/solr-9.1.1-RC1-rev-cfd3eaede7054e08385df43d5ccd6462ee1b3539/solr/maven/org/apache/solr/solr-langid/9.1.1/solr-langid-9.1.1.pom.sha256 (added)
+++ dev/solr/solr-9.1.1-RC1-rev-cfd3eaede7054e08385df43d5ccd6462ee1b3539/solr/maven/org/apache/solr/solr-langid/9.1.1/solr-langid-9.1.1.pom.sha256 Sat Jan 14 04:43:38 2023
@@ -0,0 +1 @@
+ddde82e62bbf7007761c33e6008f20e52e54513c26d151f22ebc8d2656100bcf
\ No newline at end of file

Added: dev/solr/solr-9.1.1-RC1-rev-cfd3eaede7054e08385df43d5ccd6462ee1b3539/solr/maven/org/apache/solr/solr-langid/9.1.1/solr-langid-9.1.1.pom.sha512
==============================================================================
--- dev/solr/solr-9.1.1-RC1-rev-cfd3eaede7054e08385df43d5ccd6462ee1b3539/solr/maven/org/apache/solr/solr-langid/9.1.1/solr-langid-9.1.1.pom.sha512 (added)
+++ dev/solr/solr-9.1.1-RC1-rev-cfd3eaede7054e08385df43d5ccd6462ee1b3539/solr/maven/org/apache/solr/solr-langid/9.1.1/solr-langid-9.1.1.pom.sha512 Sat Jan 14 04:43:38 2023
@@ -0,0 +1 @@
+aab450b0d714b464eabc8db63154da2533b7ee76852c741747ced68a5d3e6672d179e3362bd481a7e14ac2c618751b19277ea4db90ba858cf5b774c3aed59f6b
\ No newline at end of file

Added: dev/solr/solr-9.1.1-RC1-rev-cfd3eaede7054e08385df43d5ccd6462ee1b3539/solr/maven/org/apache/solr/solr-langid/maven-metadata.xml
==============================================================================
--- dev/solr/solr-9.1.1-RC1-rev-cfd3eaede7054e08385df43d5ccd6462ee1b3539/solr/maven/org/apache/solr/solr-langid/maven-metadata.xml (added)
+++ dev/solr/solr-9.1.1-RC1-rev-cfd3eaede7054e08385df43d5ccd6462ee1b3539/solr/maven/org/apache/solr/solr-langid/maven-metadata.xml Sat Jan 14 04:43:38 2023
@@ -0,0 +1,13 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<metadata>
+  <groupId>org.apache.solr</groupId>
+  <artifactId>solr-langid</artifactId>
+  <versioning>
+    <latest>9.1.1</latest>
+    <release>9.1.1</release>
+    <versions>
+      <version>9.1.1</version>
+    </versions>
+    <lastUpdated>20230114034529</lastUpdated>
+  </versioning>
+</metadata>

Added: dev/solr/solr-9.1.1-RC1-rev-cfd3eaede7054e08385df43d5ccd6462ee1b3539/solr/maven/org/apache/solr/solr-langid/maven-metadata.xml.md5
==============================================================================
--- dev/solr/solr-9.1.1-RC1-rev-cfd3eaede7054e08385df43d5ccd6462ee1b3539/solr/maven/org/apache/solr/solr-langid/maven-metadata.xml.md5 (added)
+++ dev/solr/solr-9.1.1-RC1-rev-cfd3eaede7054e08385df43d5ccd6462ee1b3539/solr/maven/org/apache/solr/solr-langid/maven-metadata.xml.md5 Sat Jan 14 04:43:38 2023
@@ -0,0 +1 @@
+fecdf2d12bd7458bec523de17e4649c2
\ No newline at end of file

Added: dev/solr/solr-9.1.1-RC1-rev-cfd3eaede7054e08385df43d5ccd6462ee1b3539/solr/maven/org/apache/solr/solr-langid/maven-metadata.xml.sha1
==============================================================================
--- dev/solr/solr-9.1.1-RC1-rev-cfd3eaede7054e08385df43d5ccd6462ee1b3539/solr/maven/org/apache/solr/solr-langid/maven-metadata.xml.sha1 (added)
+++ dev/solr/solr-9.1.1-RC1-rev-cfd3eaede7054e08385df43d5ccd6462ee1b3539/solr/maven/org/apache/solr/solr-langid/maven-metadata.xml.sha1 Sat Jan 14 04:43:38 2023
@@ -0,0 +1 @@
+0610e110156f043ba8da2cc8aa1b510d9479d941
\ No newline at end of file

Added: dev/solr/solr-9.1.1-RC1-rev-cfd3eaede7054e08385df43d5ccd6462ee1b3539/solr/maven/org/apache/solr/solr-langid/maven-metadata.xml.sha256
==============================================================================
--- dev/solr/solr-9.1.1-RC1-rev-cfd3eaede7054e08385df43d5ccd6462ee1b3539/solr/maven/org/apache/solr/solr-langid/maven-metadata.xml.sha256 (added)
+++ dev/solr/solr-9.1.1-RC1-rev-cfd3eaede7054e08385df43d5ccd6462ee1b3539/solr/maven/org/apache/solr/solr-langid/maven-metadata.xml.sha256 Sat Jan 14 04:43:38 2023
@@ -0,0 +1 @@
+5857c25fa1d1fc7994cd703aa4d78256dc4b69280dd99662cd9ec00c585f0e33
\ No newline at end of file

Added: dev/solr/solr-9.1.1-RC1-rev-cfd3eaede7054e08385df43d5ccd6462ee1b3539/solr/maven/org/apache/solr/solr-langid/maven-metadata.xml.sha512
==============================================================================
--- dev/solr/solr-9.1.1-RC1-rev-cfd3eaede7054e08385df43d5ccd6462ee1b3539/solr/maven/org/apache/solr/solr-langid/maven-metadata.xml.sha512 (added)
+++ dev/solr/solr-9.1.1-RC1-rev-cfd3eaede7054e08385df43d5ccd6462ee1b3539/solr/maven/org/apache/solr/solr-langid/maven-metadata.xml.sha512 Sat Jan 14 04:43:38 2023
@@ -0,0 +1 @@
+167bc86c5abe81842ef21df4666f67a9190a71abb6849128c6c71887f5d522a8dac674579c552ee3b448864a40d15f6e0516a43c48ad4f4b279aa4b53dd35703
\ No newline at end of file

Added: dev/solr/solr-9.1.1-RC1-rev-cfd3eaede7054e08385df43d5ccd6462ee1b3539/solr/maven/org/apache/solr/solr-ltr/9.1.1/solr-ltr-9.1.1-javadoc.jar
==============================================================================
Binary file - no diff available.

Propchange: dev/solr/solr-9.1.1-RC1-rev-cfd3eaede7054e08385df43d5ccd6462ee1b3539/solr/maven/org/apache/solr/solr-ltr/9.1.1/solr-ltr-9.1.1-javadoc.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: dev/solr/solr-9.1.1-RC1-rev-cfd3eaede7054e08385df43d5ccd6462ee1b3539/solr/maven/org/apache/solr/solr-ltr/9.1.1/solr-ltr-9.1.1-javadoc.jar.asc
==============================================================================
--- dev/solr/solr-9.1.1-RC1-rev-cfd3eaede7054e08385df43d5ccd6462ee1b3539/solr/maven/org/apache/solr/solr-ltr/9.1.1/solr-ltr-9.1.1-javadoc.jar.asc (added)
+++ dev/solr/solr-9.1.1-RC1-rev-cfd3eaede7054e08385df43d5ccd6462ee1b3539/solr/maven/org/apache/solr/solr-ltr/9.1.1/solr-ltr-9.1.1-javadoc.jar.asc Sat Jan 14 04:43:38 2023
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: BCPG v1.68
+
+iQIzBAABCAAdFiEEnpc2reoxsff1FtJ4kQRs+XHRkGwFAmPCJU4ACgkQkQRs+XHR
+kGxowA//cgM3weFCXOf9rFvLVSqGJtoV5YoNUXKiTZ7m3MJHqnxX9YgavHzpXSD1
+IW7YsWw5U8AAIGLc3L7rO/4VqMfpJOfFhmHJ8dVDjNnIOEEYR5sYMaZrh0l+4GaM
+8ZwUGxed4OTx22vTfDhLMyeiflZCHQvhD+zSko+nfNGzuGfMwW/Pnm/TMyiWRDE7
+vzarGpGu+XJIlOlqQs5jgw4DWDJNF61QCob5J9CVXnn1anG/h9Gs4HHKmD0NYIDo
+yU4knXjjhfEjB0mhxvcMhdxvuf8sAVungn3WOEDkvKDymqdIisOi+JVwVjAQZ+pV
+mGLvVuN2k4WkQDptHYne8uPBQnh8NHU1px5o6SdLvsLaU5zC/OwGHr+EFYMkgFXZ
+A7uY8vrUm6cBCcMIG1GkvVLM0YleowNRqImBDUBI3C9w0i15spk3omZ0jGNwwuga
+9opAuKFXdetOmo0pPVES8nG1fXWpSShmZ6EiBCh/6vEJfkEAM1KqyKs8GfWvIPU5
+9DfEuOGU8IoFWU8fZ9Gh9xOrDBZLVkM66Byugz53sR0N6sCMERlJ1ZZ62OHyTQqF
+FDXCjtNMelLRwfv6cWUOn4QBD/ISOfYet1OubqsLO0IUempCghVa8CEU8CAuHja0
+BkRd/um085kw7d3diKXbichIQ4mJz1Jyxcqd7aNxcNa89H4Gess=
+=3Tam
+-----END PGP SIGNATURE-----

Added: dev/solr/solr-9.1.1-RC1-rev-cfd3eaede7054e08385df43d5ccd6462ee1b3539/solr/maven/org/apache/solr/solr-ltr/9.1.1/solr-ltr-9.1.1-javadoc.jar.asc.md5
==============================================================================
--- dev/solr/solr-9.1.1-RC1-rev-cfd3eaede7054e08385df43d5ccd6462ee1b3539/solr/maven/org/apache/solr/solr-ltr/9.1.1/solr-ltr-9.1.1-javadoc.jar.asc.md5 (added)
+++ dev/solr/solr-9.1.1-RC1-rev-cfd3eaede7054e08385df43d5ccd6462ee1b3539/solr/maven/org/apache/solr/solr-ltr/9.1.1/solr-ltr-9.1.1-javadoc.jar.asc.md5 Sat Jan 14 04:43:38 2023
@@ -0,0 +1 @@
+46b42ed80e4dca72f0ed01cfced1125f
\ No newline at end of file

Added: dev/solr/solr-9.1.1-RC1-rev-cfd3eaede7054e08385df43d5ccd6462ee1b3539/solr/maven/org/apache/solr/solr-ltr/9.1.1/solr-ltr-9.1.1-javadoc.jar.asc.sha1
==============================================================================
--- dev/solr/solr-9.1.1-RC1-rev-cfd3eaede7054e08385df43d5ccd6462ee1b3539/solr/maven/org/apache/solr/solr-ltr/9.1.1/solr-ltr-9.1.1-javadoc.jar.asc.sha1 (added)
+++ dev/solr/solr-9.1.1-RC1-rev-cfd3eaede7054e08385df43d5ccd6462ee1b3539/solr/maven/org/apache/solr/solr-ltr/9.1.1/solr-ltr-9.1.1-javadoc.jar.asc.sha1 Sat Jan 14 04:43:38 2023
@@ -0,0 +1 @@
+d5375090dec401390cf1d5858d911061be2d4da3
\ No newline at end of file

Added: dev/solr/solr-9.1.1-RC1-rev-cfd3eaede7054e08385df43d5ccd6462ee1b3539/solr/maven/org/apache/solr/solr-ltr/9.1.1/solr-ltr-9.1.1-javadoc.jar.asc.sha256
==============================================================================
--- dev/solr/solr-9.1.1-RC1-rev-cfd3eaede7054e08385df43d5ccd6462ee1b3539/solr/maven/org/apache/solr/solr-ltr/9.1.1/solr-ltr-9.1.1-javadoc.jar.asc.sha256 (added)
+++ dev/solr/solr-9.1.1-RC1-rev-cfd3eaede7054e08385df43d5ccd6462ee1b3539/solr/maven/org/apache/solr/solr-ltr/9.1.1/solr-ltr-9.1.1-javadoc.jar.asc.sha256 Sat Jan 14 04:43:38 2023
@@ -0,0 +1 @@
+a9d5798b9f2ce04ce8354e1f129c5901f1e0aed72c3b0e39866b5529d988bb7c
\ No newline at end of file

Added: dev/solr/solr-9.1.1-RC1-rev-cfd3eaede7054e08385df43d5ccd6462ee1b3539/solr/maven/org/apache/solr/solr-ltr/9.1.1/solr-ltr-9.1.1-javadoc.jar.asc.sha512
==============================================================================
--- dev/solr/solr-9.1.1-RC1-rev-cfd3eaede7054e08385df43d5ccd6462ee1b3539/solr/maven/org/apache/solr/solr-ltr/9.1.1/solr-ltr-9.1.1-javadoc.jar.asc.sha512 (added)
+++ dev/solr/solr-9.1.1-RC1-rev-cfd3eaede7054e08385df43d5ccd6462ee1b3539/solr/maven/org/apache/solr/solr-ltr/9.1.1/solr-ltr-9.1.1-javadoc.jar.asc.sha512 Sat Jan 14 04:43:38 2023
@@ -0,0 +1 @@
+57f31cf0eca57af16812cefdf7237d6814aa443d6dc962174e2fe61b02114adfc897e9710b41461d526d0f6a5f223a2ee3e40458faf95ae3cd97387b6ef07f82
\ No newline at end of file

Added: dev/solr/solr-9.1.1-RC1-rev-cfd3eaede7054e08385df43d5ccd6462ee1b3539/solr/maven/org/apache/solr/solr-ltr/9.1.1/solr-ltr-9.1.1-javadoc.jar.md5
==============================================================================
--- dev/solr/solr-9.1.1-RC1-rev-cfd3eaede7054e08385df43d5ccd6462ee1b3539/solr/maven/org/apache/solr/solr-ltr/9.1.1/solr-ltr-9.1.1-javadoc.jar.md5 (added)
+++ dev/solr/solr-9.1.1-RC1-rev-cfd3eaede7054e08385df43d5ccd6462ee1b3539/solr/maven/org/apache/solr/solr-ltr/9.1.1/solr-ltr-9.1.1-javadoc.jar.md5 Sat Jan 14 04:43:38 2023
@@ -0,0 +1 @@
+ddaccffed3c90fe376401efc2cc60386
\ No newline at end of file

Added: dev/solr/solr-9.1.1-RC1-rev-cfd3eaede7054e08385df43d5ccd6462ee1b3539/solr/maven/org/apache/solr/solr-ltr/9.1.1/solr-ltr-9.1.1-javadoc.jar.sha1
==============================================================================
--- dev/solr/solr-9.1.1-RC1-rev-cfd3eaede7054e08385df43d5ccd6462ee1b3539/solr/maven/org/apache/solr/solr-ltr/9.1.1/solr-ltr-9.1.1-javadoc.jar.sha1 (added)
+++ dev/solr/solr-9.1.1-RC1-rev-cfd3eaede7054e08385df43d5ccd6462ee1b3539/solr/maven/org/apache/solr/solr-ltr/9.1.1/solr-ltr-9.1.1-javadoc.jar.sha1 Sat Jan 14 04:43:38 2023
@@ -0,0 +1 @@
+22f8485c2d3e1a6549eb4895b868a778e5dabb96
\ No newline at end of file

Added: dev/solr/solr-9.1.1-RC1-rev-cfd3eaede7054e08385df43d5ccd6462ee1b3539/solr/maven/org/apache/solr/solr-ltr/9.1.1/solr-ltr-9.1.1-javadoc.jar.sha256
==============================================================================
--- dev/solr/solr-9.1.1-RC1-rev-cfd3eaede7054e08385df43d5ccd6462ee1b3539/solr/maven/org/apache/solr/solr-ltr/9.1.1/solr-ltr-9.1.1-javadoc.jar.sha256 (added)
+++ dev/solr/solr-9.1.1-RC1-rev-cfd3eaede7054e08385df43d5ccd6462ee1b3539/solr/maven/org/apache/solr/solr-ltr/9.1.1/solr-ltr-9.1.1-javadoc.jar.sha256 Sat Jan 14 04:43:38 2023
@@ -0,0 +1 @@
+feab2b98da3adffc238d254b581d477f82a456e3fd0bda8aa2c122ec3bd88e59
\ No newline at end of file

Added: dev/solr/solr-9.1.1-RC1-rev-cfd3eaede7054e08385df43d5ccd6462ee1b3539/solr/maven/org/apache/solr/solr-ltr/9.1.1/solr-ltr-9.1.1-javadoc.jar.sha512
==============================================================================
--- dev/solr/solr-9.1.1-RC1-rev-cfd3eaede7054e08385df43d5ccd6462ee1b3539/solr/maven/org/apache/solr/solr-ltr/9.1.1/solr-ltr-9.1.1-javadoc.jar.sha512 (added)
+++ dev/solr/solr-9.1.1-RC1-rev-cfd3eaede7054e08385df43d5ccd6462ee1b3539/solr/maven/org/apache/solr/solr-ltr/9.1.1/solr-ltr-9.1.1-javadoc.jar.sha512 Sat Jan 14 04:43:38 2023
@@ -0,0 +1 @@
+e095c213aa49ff8dcd059aee896e097b1b56a2bd739fde74e2a0da8da95f2928221fa04f969a3bfc83f7c354b52f81f0517a8f66aee0f65c05bceb6799cea6c4
\ No newline at end of file

Added: dev/solr/solr-9.1.1-RC1-rev-cfd3eaede7054e08385df43d5ccd6462ee1b3539/solr/maven/org/apache/solr/solr-ltr/9.1.1/solr-ltr-9.1.1-sources.jar
==============================================================================
Binary file - no diff available.

Propchange: dev/solr/solr-9.1.1-RC1-rev-cfd3eaede7054e08385df43d5ccd6462ee1b3539/solr/maven/org/apache/solr/solr-ltr/9.1.1/solr-ltr-9.1.1-sources.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: dev/solr/solr-9.1.1-RC1-rev-cfd3eaede7054e08385df43d5ccd6462ee1b3539/solr/maven/org/apache/solr/solr-ltr/9.1.1/solr-ltr-9.1.1-sources.jar.asc
==============================================================================
--- dev/solr/solr-9.1.1-RC1-rev-cfd3eaede7054e08385df43d5ccd6462ee1b3539/solr/maven/org/apache/solr/solr-ltr/9.1.1/solr-ltr-9.1.1-sources.jar.asc (added)
+++ dev/solr/solr-9.1.1-RC1-rev-cfd3eaede7054e08385df43d5ccd6462ee1b3539/solr/maven/org/apache/solr/solr-ltr/9.1.1/solr-ltr-9.1.1-sources.jar.asc Sat Jan 14 04:43:38 2023
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: BCPG v1.68
+
+iQIzBAABCAAdFiEEnpc2reoxsff1FtJ4kQRs+XHRkGwFAmPCJXAACgkQkQRs+XHR
+kGwwLQ/+KAPlpULWK0zfs/+Ab4Ecy771rHCs7ZmXGDU/TsfyGmMcC/3VklmKFgiC
+FyO26iQdxWzg+9r5GId4GcgEUwiNma2Dr0LJqpaGN9bAPjY4q7GvGhfOCIwbbV2V
+nHIvFyRIKnVDZ2fvAKAyVVFvp1SBKgrKZzkCnsIjC3rgo7edOt9bP+5zIqeDuUor
+qKg8Fqou8pg9C03QAHJTTqjwkLdm4ar6IEbVB4AjHbmAEJfxrQPl39AlDE/9WkkY
+i0AVkc8zEp7Id7v+q/gV33P7xG55/zc/eFho/2DakMrVybKgwvGmYIYtg5oXx0Pc
+j8ACiBNDCDxgo2RO+mu7ihwTa4gwQpb5fJwstsEGu8MkaAlvK58cNbsg73fTGXWQ
+xFAGWhTpzqGAmJspkCeB8uG0117xT22GTle+zj9C/uz4lZ67Tu+CC5cMQrDpeVEp
+HjLE3T4Pbm2xjycAvOrzXAU0IN8mcm95XpecKGcOsqSaaypTd6JmNlWz8A0tcYO7
+0ODOdlppaAI2e+AE8KyZMgNcj8lkv/L4mQiKe8siEBcVhZ8NOPQTmbTM3BPCMJgs
+hm1ojkI8EPj8vMhvI4fvHxSz6fXjF87mCrlFlDivneCWNK+l8ONZt+MMOUWzNSvp
+A8WEAEYK0yufN9mi8HYySWQDz5M/rcLGDUB/TsWLG1lpubfdhH0=
+=5ylH
+-----END PGP SIGNATURE-----

Added: dev/solr/solr-9.1.1-RC1-rev-cfd3eaede7054e08385df43d5ccd6462ee1b3539/solr/maven/org/apache/solr/solr-ltr/9.1.1/solr-ltr-9.1.1-sources.jar.asc.md5
==============================================================================
--- dev/solr/solr-9.1.1-RC1-rev-cfd3eaede7054e08385df43d5ccd6462ee1b3539/solr/maven/org/apache/solr/solr-ltr/9.1.1/solr-ltr-9.1.1-sources.jar.asc.md5 (added)
+++ dev/solr/solr-9.1.1-RC1-rev-cfd3eaede7054e08385df43d5ccd6462ee1b3539/solr/maven/org/apache/solr/solr-ltr/9.1.1/solr-ltr-9.1.1-sources.jar.asc.md5 Sat Jan 14 04:43:38 2023
@@ -0,0 +1 @@
+5a13cd4fb08cbcbc89cdbc5b6623a8e5
\ No newline at end of file

Added: dev/solr/solr-9.1.1-RC1-rev-cfd3eaede7054e08385df43d5ccd6462ee1b3539/solr/maven/org/apache/solr/solr-ltr/9.1.1/solr-ltr-9.1.1-sources.jar.asc.sha1
==============================================================================
--- dev/solr/solr-9.1.1-RC1-rev-cfd3eaede7054e08385df43d5ccd6462ee1b3539/solr/maven/org/apache/solr/solr-ltr/9.1.1/solr-ltr-9.1.1-sources.jar.asc.sha1 (added)
+++ dev/solr/solr-9.1.1-RC1-rev-cfd3eaede7054e08385df43d5ccd6462ee1b3539/solr/maven/org/apache/solr/solr-ltr/9.1.1/solr-ltr-9.1.1-sources.jar.asc.sha1 Sat Jan 14 04:43:38 2023
@@ -0,0 +1 @@
+64370cfd2c49fd0cc487398628a7b0722150d431
\ No newline at end of file

Added: dev/solr/solr-9.1.1-RC1-rev-cfd3eaede7054e08385df43d5ccd6462ee1b3539/solr/maven/org/apache/solr/solr-ltr/9.1.1/solr-ltr-9.1.1-sources.jar.asc.sha256
==============================================================================
--- dev/solr/solr-9.1.1-RC1-rev-cfd3eaede7054e08385df43d5ccd6462ee1b3539/solr/maven/org/apache/solr/solr-ltr/9.1.1/solr-ltr-9.1.1-sources.jar.asc.sha256 (added)
+++ dev/solr/solr-9.1.1-RC1-rev-cfd3eaede7054e08385df43d5ccd6462ee1b3539/solr/maven/org/apache/solr/solr-ltr/9.1.1/solr-ltr-9.1.1-sources.jar.asc.sha256 Sat Jan 14 04:43:38 2023
@@ -0,0 +1 @@
+7bf9ee82d4d44a601cfe5c5033bd65904c6e9c6587d6fb50a119c14ed0b9b73b
\ No newline at end of file

Added: dev/solr/solr-9.1.1-RC1-rev-cfd3eaede7054e08385df43d5ccd6462ee1b3539/solr/maven/org/apache/solr/solr-ltr/9.1.1/solr-ltr-9.1.1-sources.jar.asc.sha512
==============================================================================
--- dev/solr/solr-9.1.1-RC1-rev-cfd3eaede7054e08385df43d5ccd6462ee1b3539/solr/maven/org/apache/solr/solr-ltr/9.1.1/solr-ltr-9.1.1-sources.jar.asc.sha512 (added)
+++ dev/solr/solr-9.1.1-RC1-rev-cfd3eaede7054e08385df43d5ccd6462ee1b3539/solr/maven/org/apache/solr/solr-ltr/9.1.1/solr-ltr-9.1.1-sources.jar.asc.sha512 Sat Jan 14 04:43:38 2023
@@ -0,0 +1 @@
+5548bc8f4dd0de2df79852d8cf873d0ed777fcb226935e6f688cc7ef5fcccb3cef6cbcf4c23e68cedec7555df2fbe9087945417518dc3ea17fad60b09ae77262
\ No newline at end of file

Added: dev/solr/solr-9.1.1-RC1-rev-cfd3eaede7054e08385df43d5ccd6462ee1b3539/solr/maven/org/apache/solr/solr-ltr/9.1.1/solr-ltr-9.1.1-sources.jar.md5
==============================================================================
--- dev/solr/solr-9.1.1-RC1-rev-cfd3eaede7054e08385df43d5ccd6462ee1b3539/solr/maven/org/apache/solr/solr-ltr/9.1.1/solr-ltr-9.1.1-sources.jar.md5 (added)
+++ dev/solr/solr-9.1.1-RC1-rev-cfd3eaede7054e08385df43d5ccd6462ee1b3539/solr/maven/org/apache/solr/solr-ltr/9.1.1/solr-ltr-9.1.1-sources.jar.md5 Sat Jan 14 04:43:38 2023
@@ -0,0 +1 @@
+e386125d02bb28a3e54422b72aa9c9e2
\ No newline at end of file

Added: dev/solr/solr-9.1.1-RC1-rev-cfd3eaede7054e08385df43d5ccd6462ee1b3539/solr/maven/org/apache/solr/solr-ltr/9.1.1/solr-ltr-9.1.1-sources.jar.sha1
==============================================================================
--- dev/solr/solr-9.1.1-RC1-rev-cfd3eaede7054e08385df43d5ccd6462ee1b3539/solr/maven/org/apache/solr/solr-ltr/9.1.1/solr-ltr-9.1.1-sources.jar.sha1 (added)
+++ dev/solr/solr-9.1.1-RC1-rev-cfd3eaede7054e08385df43d5ccd6462ee1b3539/solr/maven/org/apache/solr/solr-ltr/9.1.1/solr-ltr-9.1.1-sources.jar.sha1 Sat Jan 14 04:43:38 2023
@@ -0,0 +1 @@
+b720e2272b55b6fca6508e1f57064cff2ded9ac7
\ No newline at end of file

Added: dev/solr/solr-9.1.1-RC1-rev-cfd3eaede7054e08385df43d5ccd6462ee1b3539/solr/maven/org/apache/solr/solr-ltr/9.1.1/solr-ltr-9.1.1-sources.jar.sha256
==============================================================================
--- dev/solr/solr-9.1.1-RC1-rev-cfd3eaede7054e08385df43d5ccd6462ee1b3539/solr/maven/org/apache/solr/solr-ltr/9.1.1/solr-ltr-9.1.1-sources.jar.sha256 (added)
+++ dev/solr/solr-9.1.1-RC1-rev-cfd3eaede7054e08385df43d5ccd6462ee1b3539/solr/maven/org/apache/solr/solr-ltr/9.1.1/solr-ltr-9.1.1-sources.jar.sha256 Sat Jan 14 04:43:38 2023
@@ -0,0 +1 @@
+0fd9a6dd4f961d9953b40d4f64e4160017f2befe796683ae040b68c11655e445
\ No newline at end of file

Added: dev/solr/solr-9.1.1-RC1-rev-cfd3eaede7054e08385df43d5ccd6462ee1b3539/solr/maven/org/apache/solr/solr-ltr/9.1.1/solr-ltr-9.1.1-sources.jar.sha512
==============================================================================
--- dev/solr/solr-9.1.1-RC1-rev-cfd3eaede7054e08385df43d5ccd6462ee1b3539/solr/maven/org/apache/solr/solr-ltr/9.1.1/solr-ltr-9.1.1-sources.jar.sha512 (added)
+++ dev/solr/solr-9.1.1-RC1-rev-cfd3eaede7054e08385df43d5ccd6462ee1b3539/solr/maven/org/apache/solr/solr-ltr/9.1.1/solr-ltr-9.1.1-sources.jar.sha512 Sat Jan 14 04:43:38 2023
@@ -0,0 +1 @@
+ebf251c9488b0c4fe71bd07d4b6159675898612a281adbc2f202fe46e64750faac0466a44275f6b004a4cd5b1f7bc236987ae558091690e72a4d9d5891cdab7d
\ No newline at end of file

Added: dev/solr/solr-9.1.1-RC1-rev-cfd3eaede7054e08385df43d5ccd6462ee1b3539/solr/maven/org/apache/solr/solr-ltr/9.1.1/solr-ltr-9.1.1.jar
==============================================================================
Binary file - no diff available.

Propchange: dev/solr/solr-9.1.1-RC1-rev-cfd3eaede7054e08385df43d5ccd6462ee1b3539/solr/maven/org/apache/solr/solr-ltr/9.1.1/solr-ltr-9.1.1.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: dev/solr/solr-9.1.1-RC1-rev-cfd3eaede7054e08385df43d5ccd6462ee1b3539/solr/maven/org/apache/solr/solr-ltr/9.1.1/solr-ltr-9.1.1.jar.asc
==============================================================================
--- dev/solr/solr-9.1.1-RC1-rev-cfd3eaede7054e08385df43d5ccd6462ee1b3539/solr/maven/org/apache/solr/solr-ltr/9.1.1/solr-ltr-9.1.1.jar.asc (added)
+++ dev/solr/solr-9.1.1-RC1-rev-cfd3eaede7054e08385df43d5ccd6462ee1b3539/solr/maven/org/apache/solr/solr-ltr/9.1.1/solr-ltr-9.1.1.jar.asc Sat Jan 14 04:43:38 2023
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: BCPG v1.68
+
+iQIzBAABCAAdFiEEnpc2reoxsff1FtJ4kQRs+XHRkGwFAmPCJWUACgkQkQRs+XHR
+kGz3nhAAl+CP/ECc9Ck/IlIDa3qs4mRAwIYEAT060uaviuXwDZ07RPY1RyfhaMl5
+rnnRJ8swm6H8xxh5W2mQwnX6jnvxpaFnNc76XbAUU8eOUrNoz8LMgY+/GfgH6MMT
+rIrBJxOYPDmPfv3MrR5ZAFBZJpY5xEiESILCCvhxQJQS7kwn6zQDuaUqMhUsIPmi
+N1TKNTvdDIYqeXpQug5+2PtcT/NctquR1Y/91aTE7lqQ90F9lyrSURZ2YcLGgqq7
+zbd15KxjZBcxNCB/Hfeoj2A/UvLiNJ6j67MwITVCiwkkMLhTDthmygULLHCyRx4j
+Gwu4U5ggQGQG0bRnlfpru58wXg8GnHUGsKpniKcQV7vxwJ+NabZoNx0K0KbtH+po
+VXoh9H0OJXp9iDSVqu/FgTIpqWkmzwMtTSHrdyfy+lUcmn/GEWT90DkpEvsvsk1K
+jdiCyBR1XULLQUvP4dJ3AhATfwypMuQ3UNyddTCrAc7jfZs3fKINcFwCkuCJYHwo
+FhVFKbjSidjoTcXVvLgpZjqcX2u1dyKJccE5FEExDel/DFPpZeQJnGThux1eU9LC
+1AigoJgOiB8P571OpN06URgmB7+jY8KRljcEk4HPUon9pKHAV6hOSBUHL3jzZ3LP
+sRjPVKoEcdAT4ScE5YDVyOSupCQEfqhy+vVq7AnYvxzJvGVBkTY=
+=OJMD
+-----END PGP SIGNATURE-----