You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by ma...@apache.org on 2021/06/11 01:17:00 UTC

svn commit: r48273 [13/18] - in /dev/lucene/lucene-solr-8.9.0-RC1-rev05c8a6f0163fe4c330e93775e8e91f3ab66a3f80: ./ lucene/ lucene/changes/ lucene/maven/ lucene/maven/org/ lucene/maven/org/apache/ lucene/maven/org/apache/lucene/ lucene/maven/org/apache/l...

Added: dev/lucene/lucene-solr-8.9.0-RC1-rev05c8a6f0163fe4c330e93775e8e91f3ab66a3f80/solr/maven/org/apache/solr/solr-cell/8.9.0/solr-cell-8.9.0.pom
==============================================================================
--- dev/lucene/lucene-solr-8.9.0-RC1-rev05c8a6f0163fe4c330e93775e8e91f3ab66a3f80/solr/maven/org/apache/solr/solr-cell/8.9.0/solr-cell-8.9.0.pom (added)
+++ dev/lucene/lucene-solr-8.9.0-RC1-rev05c8a6f0163fe4c330e93775e8e91f3ab66a3f80/solr/maven/org/apache/solr/solr-cell/8.9.0/solr-cell-8.9.0.pom Fri Jun 11 01:16:57 2021
@@ -0,0 +1,732 @@
+<!--
+  Licensed to the Apache Software Foundation (ASF) under one
+  or more contributor license agreements.  See the NOTICE file
+  distributed with this work for additional information
+  regarding copyright ownership.  The ASF licenses this file
+  to you under the Apache License, Version 2.0 (the
+  "License"); you may not use this file except in compliance
+  with the License.  You may obtain a copy of the License at
+  
+  http://www.apache.org/licenses/LICENSE-2.0
+  
+  Unless required by applicable law or agreed to in writing,
+  software distributed under the License is distributed on an
+  "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+  KIND, either express or implied.  See the License for the
+  specific language governing permissions and limitations
+  under the License.
+-->
+<project xmlns="http://maven.apache.org/POM/4.0.0"
+         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
+  <modelVersion>4.0.0</modelVersion>
+  <parent>
+    <groupId>org.apache.solr</groupId>
+    <artifactId>solr-parent</artifactId>
+    <version>8.9.0</version>
+    <relativePath>../../pom.xml</relativePath>
+  </parent>
+  <groupId>org.apache.solr</groupId>
+  <artifactId>solr-cell</artifactId>
+  <packaging>jar</packaging>
+  <name>Apache Solr Content Extraction Library</name>
+  <description>
+    Apache Solr Content Extraction Library integrates Apache Tika 
+    content extraction framework into Solr
+  </description>
+  <properties>
+    <module-directory>solr/contrib/extraction</module-directory>
+  </properties>
+  <scm>
+    <connection>scm:git:${vc-anonymous-base-url}</connection>
+    <developerConnection>scm:git:${vc-dev-base-url}</developerConnection>
+    <url>${vc-browse-base-url};f=${module-directory}</url>
+  </scm>
+  <dependencies>
+    <dependency>
+      <groupId>org.apache.lucene</groupId>
+      <artifactId>lucene-analyzers-common</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.lucene</groupId>
+      <artifactId>lucene-analyzers-kuromoji</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.lucene</groupId>
+      <artifactId>lucene-analyzers-nori</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.lucene</groupId>
+      <artifactId>lucene-analyzers-phonetic</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.lucene</groupId>
+      <artifactId>lucene-backward-codecs</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.lucene</groupId>
+      <artifactId>lucene-classification</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.lucene</groupId>
+      <artifactId>lucene-codecs</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.lucene</groupId>
+      <artifactId>lucene-core</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.lucene</groupId>
+      <artifactId>lucene-expressions</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.lucene</groupId>
+      <artifactId>lucene-grouping</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.lucene</groupId>
+      <artifactId>lucene-highlighter</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.lucene</groupId>
+      <artifactId>lucene-join</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.lucene</groupId>
+      <artifactId>lucene-memory</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.lucene</groupId>
+      <artifactId>lucene-misc</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.lucene</groupId>
+      <artifactId>lucene-queries</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.lucene</groupId>
+      <artifactId>lucene-queryparser</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.lucene</groupId>
+      <artifactId>lucene-sandbox</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.lucene</groupId>
+      <artifactId>lucene-spatial-extras</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.lucene</groupId>
+      <artifactId>lucene-spatial3d</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.lucene</groupId>
+      <artifactId>lucene-suggest</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.solr</groupId>
+      <artifactId>solr-core</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.solr</groupId>
+      <artifactId>solr-solrj</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.carrotsearch</groupId>
+      <artifactId>hppc</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.epam</groupId>
+      <artifactId>parso</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.fasterxml.jackson.core</groupId>
+      <artifactId>jackson-annotations</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.fasterxml.jackson.core</groupId>
+      <artifactId>jackson-core</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.fasterxml.jackson.core</groupId>
+      <artifactId>jackson-databind</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.fasterxml.jackson.dataformat</groupId>
+      <artifactId>jackson-dataformat-smile</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.github.ben-manes.caffeine</groupId>
+      <artifactId>caffeine</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.github.virtuald</groupId>
+      <artifactId>curvesapi</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.github.zafarkhaja</groupId>
+      <artifactId>java-semver</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.google.guava</groupId>
+      <artifactId>guava</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.google.protobuf</groupId>
+      <artifactId>protobuf-java</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.google.re2j</groupId>
+      <artifactId>re2j</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.googlecode.juniversalchardet</groupId>
+      <artifactId>juniversalchardet</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.healthmarketscience.jackcess</groupId>
+      <artifactId>jackcess</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.healthmarketscience.jackcess</groupId>
+      <artifactId>jackcess-encrypt</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.ibm.icu</groupId>
+      <artifactId>icu4j</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.jayway.jsonpath</groupId>
+      <artifactId>json-path</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.lmax</groupId>
+      <artifactId>disruptor</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.pff</groupId>
+      <artifactId>java-libpst</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.rometools</groupId>
+      <artifactId>rome</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.rometools</groupId>
+      <artifactId>rome-utils</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.tdunning</groupId>
+      <artifactId>t-digest</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.zaxxer</groupId>
+      <artifactId>SparseBitSet</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>commons-cli</groupId>
+      <artifactId>commons-cli</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>commons-codec</groupId>
+      <artifactId>commons-codec</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>commons-collections</groupId>
+      <artifactId>commons-collections</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>commons-io</groupId>
+      <artifactId>commons-io</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>commons-lang</groupId>
+      <artifactId>commons-lang</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>de.l3s.boilerpipe</groupId>
+      <artifactId>boilerpipe</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>io.dropwizard.metrics</groupId>
+      <artifactId>metrics-core</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>io.dropwizard.metrics</groupId>
+      <artifactId>metrics-graphite</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>io.dropwizard.metrics</groupId>
+      <artifactId>metrics-jetty9</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>io.dropwizard.metrics</groupId>
+      <artifactId>metrics-jmx</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>io.dropwizard.metrics</groupId>
+      <artifactId>metrics-jvm</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>io.netty</groupId>
+      <artifactId>netty-buffer</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>io.netty</groupId>
+      <artifactId>netty-codec</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>io.netty</groupId>
+      <artifactId>netty-common</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>io.netty</groupId>
+      <artifactId>netty-handler</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>io.netty</groupId>
+      <artifactId>netty-resolver</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>io.netty</groupId>
+      <artifactId>netty-transport</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>io.netty</groupId>
+      <artifactId>netty-transport-native-epoll</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>io.netty</groupId>
+      <artifactId>netty-transport-native-unix-common</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>io.opentracing</groupId>
+      <artifactId>opentracing-api</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>io.opentracing</groupId>
+      <artifactId>opentracing-noop</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>io.opentracing</groupId>
+      <artifactId>opentracing-util</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>io.sgr</groupId>
+      <artifactId>s2-geometry-library-java</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>javax.servlet</groupId>
+      <artifactId>javax.servlet-api</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>net.hydromatic</groupId>
+      <artifactId>eigenbase-properties</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.antlr</groupId>
+      <artifactId>antlr4-runtime</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.calcite</groupId>
+      <artifactId>calcite-core</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.calcite</groupId>
+      <artifactId>calcite-linq4j</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.calcite.avatica</groupId>
+      <artifactId>avatica-core</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.commons</groupId>
+      <artifactId>commons-collections4</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.commons</groupId>
+      <artifactId>commons-compress</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.commons</groupId>
+      <artifactId>commons-configuration2</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.commons</groupId>
+      <artifactId>commons-csv</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.commons</groupId>
+      <artifactId>commons-exec</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.commons</groupId>
+      <artifactId>commons-lang3</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.commons</groupId>
+      <artifactId>commons-math3</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.commons</groupId>
+      <artifactId>commons-text</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.curator</groupId>
+      <artifactId>curator-client</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.curator</groupId>
+      <artifactId>curator-framework</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.curator</groupId>
+      <artifactId>curator-recipes</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.hadoop</groupId>
+      <artifactId>hadoop-annotations</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.hadoop</groupId>
+      <artifactId>hadoop-auth</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.hadoop</groupId>
+      <artifactId>hadoop-common</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.hadoop</groupId>
+      <artifactId>hadoop-hdfs-client</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.htrace</groupId>
+      <artifactId>htrace-core4</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.httpcomponents</groupId>
+      <artifactId>httpclient</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.httpcomponents</groupId>
+      <artifactId>httpcore</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.httpcomponents</groupId>
+      <artifactId>httpmime</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.james</groupId>
+      <artifactId>apache-mime4j-core</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.james</groupId>
+      <artifactId>apache-mime4j-dom</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.kerby</groupId>
+      <artifactId>kerb-core</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.kerby</groupId>
+      <artifactId>kerb-util</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.kerby</groupId>
+      <artifactId>kerby-asn1</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.kerby</groupId>
+      <artifactId>kerby-pkix</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.logging.log4j</groupId>
+      <artifactId>log4j-1.2-api</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.logging.log4j</groupId>
+      <artifactId>log4j-api</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.logging.log4j</groupId>
+      <artifactId>log4j-core</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.logging.log4j</groupId>
+      <artifactId>log4j-slf4j-impl</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.logging.log4j</groupId>
+      <artifactId>log4j-web</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.pdfbox</groupId>
+      <artifactId>fontbox</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.pdfbox</groupId>
+      <artifactId>jempbox</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.pdfbox</groupId>
+      <artifactId>pdfbox</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.pdfbox</groupId>
+      <artifactId>pdfbox-tools</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.poi</groupId>
+      <artifactId>poi</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.poi</groupId>
+      <artifactId>poi-ooxml</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.poi</groupId>
+      <artifactId>poi-ooxml-schemas</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.poi</groupId>
+      <artifactId>poi-scratchpad</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.tika</groupId>
+      <artifactId>tika-core</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.tika</groupId>
+      <artifactId>tika-java7</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.tika</groupId>
+      <artifactId>tika-parsers</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.tika</groupId>
+      <artifactId>tika-xmp</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.xmlbeans</groupId>
+      <artifactId>xmlbeans</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.zookeeper</groupId>
+      <artifactId>zookeeper</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.zookeeper</groupId>
+      <artifactId>zookeeper-jute</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.aspectj</groupId>
+      <artifactId>aspectjrt</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.bitbucket.b_c</groupId>
+      <artifactId>jose4j</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.bouncycastle</groupId>
+      <artifactId>bcmail-jdk15on</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.bouncycastle</groupId>
+      <artifactId>bcpkix-jdk15on</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.bouncycastle</groupId>
+      <artifactId>bcprov-jdk15on</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.brotli</groupId>
+      <artifactId>dec</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.ccil.cowan.tagsoup</groupId>
+      <artifactId>tagsoup</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.codehaus.janino</groupId>
+      <artifactId>commons-compiler</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.codehaus.janino</groupId>
+      <artifactId>janino</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.codehaus.woodstox</groupId>
+      <artifactId>stax2-api</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.codehaus.woodstox</groupId>
+      <artifactId>woodstox-core-asl</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.eclipse.jetty</groupId>
+      <artifactId>jetty-alpn-client</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.eclipse.jetty</groupId>
+      <artifactId>jetty-alpn-java-client</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.eclipse.jetty</groupId>
+      <artifactId>jetty-alpn-java-server</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.eclipse.jetty</groupId>
+      <artifactId>jetty-alpn-server</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.eclipse.jetty</groupId>
+      <artifactId>jetty-client</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.eclipse.jetty</groupId>
+      <artifactId>jetty-continuation</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.eclipse.jetty</groupId>
+      <artifactId>jetty-deploy</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.eclipse.jetty</groupId>
+      <artifactId>jetty-http</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.eclipse.jetty</groupId>
+      <artifactId>jetty-io</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.eclipse.jetty</groupId>
+      <artifactId>jetty-jmx</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.eclipse.jetty</groupId>
+      <artifactId>jetty-rewrite</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.eclipse.jetty</groupId>
+      <artifactId>jetty-security</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.eclipse.jetty</groupId>
+      <artifactId>jetty-server</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.eclipse.jetty</groupId>
+      <artifactId>jetty-servlet</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.eclipse.jetty</groupId>
+      <artifactId>jetty-servlets</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.eclipse.jetty</groupId>
+      <artifactId>jetty-util</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.eclipse.jetty</groupId>
+      <artifactId>jetty-webapp</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.eclipse.jetty</groupId>
+      <artifactId>jetty-xml</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.eclipse.jetty.http2</groupId>
+      <artifactId>http2-client</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.eclipse.jetty.http2</groupId>
+      <artifactId>http2-common</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.eclipse.jetty.http2</groupId>
+      <artifactId>http2-hpack</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.eclipse.jetty.http2</groupId>
+      <artifactId>http2-http-client-transport</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.eclipse.jetty.http2</groupId>
+      <artifactId>http2-server</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.gagravarr</groupId>
+      <artifactId>vorbis-java-core</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.gagravarr</groupId>
+      <artifactId>vorbis-java-tika</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.jdom</groupId>
+      <artifactId>jdom2</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.locationtech.spatial4j</groupId>
+      <artifactId>spatial4j</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.ow2.asm</groupId>
+      <artifactId>asm</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.ow2.asm</groupId>
+      <artifactId>asm-commons</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.rrd4j</groupId>
+      <artifactId>rrd4j</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.slf4j</groupId>
+      <artifactId>jcl-over-slf4j</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.slf4j</groupId>
+      <artifactId>jul-to-slf4j</artifactId>
+      <optional>true</optional>
+    </dependency>
+    <dependency>
+      <groupId>org.slf4j</groupId>
+      <artifactId>slf4j-api</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.tallison</groupId>
+      <artifactId>isoparser</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.tallison</groupId>
+      <artifactId>jmatio</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.tallison</groupId>
+      <artifactId>metadata-extractor</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.tallison.xmp</groupId>
+      <artifactId>xmpcore-shaded</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.tukaani</groupId>
+      <artifactId>xz</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.xerial.snappy</groupId>
+      <artifactId>snappy-java</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>xerces</groupId>
+      <artifactId>xercesImpl</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>xml-apis</groupId>
+      <artifactId>xml-apis</artifactId>
+    </dependency>
+  </dependencies>
+</project>

Added: dev/lucene/lucene-solr-8.9.0-RC1-rev05c8a6f0163fe4c330e93775e8e91f3ab66a3f80/solr/maven/org/apache/solr/solr-cell/8.9.0/solr-cell-8.9.0.pom.asc
==============================================================================
--- dev/lucene/lucene-solr-8.9.0-RC1-rev05c8a6f0163fe4c330e93775e8e91f3ab66a3f80/solr/maven/org/apache/solr/solr-cell/8.9.0/solr-cell-8.9.0.pom.asc (added)
+++ dev/lucene/lucene-solr-8.9.0-RC1-rev05c8a6f0163fe4c330e93775e8e91f3ab66a3f80/solr/maven/org/apache/solr/solr-cell/8.9.0/solr-cell-8.9.0.pom.asc Fri Jun 11 01:16:57 2021
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEElyLyX2UAV+JsgDtgptBk2DOzqWkFAmDCisAACgkQptBk2DOz
+qWn1CA//SAmG22W5PVEvo9l8w1TcBl3qWu5gF2V3enORldL9cfbmAv/i2sua2OAw
+4Q2sxiJh6jXwKoaLZPQds35/0qBLooys7pz1HlOvATckL1Age3R2Xhh/OpIwMaYO
+ZFR5mzIUQjBYOE0uKJyPQTf36kMB1EpAPa+M4E4IFGlzHXwqnw/BxNpILsNlVDD3
++I26Iw+8ZaWiRT4V91S5o4oDk2bk2LCicjHkdyck79NVk01/ypLKsdgIKm/5sphu
+6TQvAplG5sq/6Wg5FVuF/RMFP6RvSC207D51jf21MnubLEpZDTcth02basEYBA05
+W3JbYxveP6w8VZM3/HpOZRa4wkZFB4pSPVs0Iad9essgkiCjgI+tSiriHUEN8Lle
+VsODvrzfQSQkRcR2Gn0i5kIY304pArNmUSPm6DQUkuxLruBNtam1ZNC5mTJv572w
+eI96qm1tho8CG03HvvFef0IbK3q0BXT4W9gr5gHQCn96zbDGFsBBDR7VO7b+nnn3
+uVxmWWjGJAD/FVNZFPzGEq+a3+TNheIpUF2MArTcP6aLhk3EW8zVXXeY+Uy5Jstn
+BSRSPDkNZjnGpYiyZHfQJkdgpZWSfN5uXZRCLiQ3ILaNgMj5Awla/wJnK/x21P6e
+6vyw46/wZYLGgJcC9ejoLIMiH+XRQnSQ+4ZixzSRyuEKDTTbQAo=
+=9cPH
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-8.9.0-RC1-rev05c8a6f0163fe4c330e93775e8e91f3ab66a3f80/solr/maven/org/apache/solr/solr-cell/8.9.0/solr-cell-8.9.0.pom.md5
==============================================================================
--- dev/lucene/lucene-solr-8.9.0-RC1-rev05c8a6f0163fe4c330e93775e8e91f3ab66a3f80/solr/maven/org/apache/solr/solr-cell/8.9.0/solr-cell-8.9.0.pom.md5 (added)
+++ dev/lucene/lucene-solr-8.9.0-RC1-rev05c8a6f0163fe4c330e93775e8e91f3ab66a3f80/solr/maven/org/apache/solr/solr-cell/8.9.0/solr-cell-8.9.0.pom.md5 Fri Jun 11 01:16:57 2021
@@ -0,0 +1 @@
+64d13522eaabafd784dcf9eb93afd754
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.9.0-RC1-rev05c8a6f0163fe4c330e93775e8e91f3ab66a3f80/solr/maven/org/apache/solr/solr-cell/8.9.0/solr-cell-8.9.0.pom.sha1
==============================================================================
--- dev/lucene/lucene-solr-8.9.0-RC1-rev05c8a6f0163fe4c330e93775e8e91f3ab66a3f80/solr/maven/org/apache/solr/solr-cell/8.9.0/solr-cell-8.9.0.pom.sha1 (added)
+++ dev/lucene/lucene-solr-8.9.0-RC1-rev05c8a6f0163fe4c330e93775e8e91f3ab66a3f80/solr/maven/org/apache/solr/solr-cell/8.9.0/solr-cell-8.9.0.pom.sha1 Fri Jun 11 01:16:57 2021
@@ -0,0 +1 @@
+86e33f45ad60fd0be730fc66c9ba5f17f2e3a4d3
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.9.0-RC1-rev05c8a6f0163fe4c330e93775e8e91f3ab66a3f80/solr/maven/org/apache/solr/solr-cell/maven-metadata.xml
==============================================================================
--- dev/lucene/lucene-solr-8.9.0-RC1-rev05c8a6f0163fe4c330e93775e8e91f3ab66a3f80/solr/maven/org/apache/solr/solr-cell/maven-metadata.xml (added)
+++ dev/lucene/lucene-solr-8.9.0-RC1-rev05c8a6f0163fe4c330e93775e8e91f3ab66a3f80/solr/maven/org/apache/solr/solr-cell/maven-metadata.xml Fri Jun 11 01:16:57 2021
@@ -0,0 +1,12 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<metadata>
+  <groupId>org.apache.solr</groupId>
+  <artifactId>solr-cell</artifactId>
+  <version>8.9.0</version>
+  <versioning>
+    <versions>
+      <version>8.9.0</version>
+    </versions>
+    <lastUpdated>20210610215700</lastUpdated>
+  </versioning>
+</metadata>

Added: dev/lucene/lucene-solr-8.9.0-RC1-rev05c8a6f0163fe4c330e93775e8e91f3ab66a3f80/solr/maven/org/apache/solr/solr-cell/maven-metadata.xml.md5
==============================================================================
--- dev/lucene/lucene-solr-8.9.0-RC1-rev05c8a6f0163fe4c330e93775e8e91f3ab66a3f80/solr/maven/org/apache/solr/solr-cell/maven-metadata.xml.md5 (added)
+++ dev/lucene/lucene-solr-8.9.0-RC1-rev05c8a6f0163fe4c330e93775e8e91f3ab66a3f80/solr/maven/org/apache/solr/solr-cell/maven-metadata.xml.md5 Fri Jun 11 01:16:57 2021
@@ -0,0 +1 @@
+b1326e7537dee9f6d555a1e6c8be9106
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.9.0-RC1-rev05c8a6f0163fe4c330e93775e8e91f3ab66a3f80/solr/maven/org/apache/solr/solr-cell/maven-metadata.xml.sha1
==============================================================================
--- dev/lucene/lucene-solr-8.9.0-RC1-rev05c8a6f0163fe4c330e93775e8e91f3ab66a3f80/solr/maven/org/apache/solr/solr-cell/maven-metadata.xml.sha1 (added)
+++ dev/lucene/lucene-solr-8.9.0-RC1-rev05c8a6f0163fe4c330e93775e8e91f3ab66a3f80/solr/maven/org/apache/solr/solr-cell/maven-metadata.xml.sha1 Fri Jun 11 01:16:57 2021
@@ -0,0 +1 @@
+21050e51bc2aab76b5e40dc8514d860bea7b3d89
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.9.0-RC1-rev05c8a6f0163fe4c330e93775e8e91f3ab66a3f80/solr/maven/org/apache/solr/solr-core/8.9.0/solr-core-8.9.0-javadoc.jar
==============================================================================
Binary file - no diff available.

Propchange: dev/lucene/lucene-solr-8.9.0-RC1-rev05c8a6f0163fe4c330e93775e8e91f3ab66a3f80/solr/maven/org/apache/solr/solr-core/8.9.0/solr-core-8.9.0-javadoc.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: dev/lucene/lucene-solr-8.9.0-RC1-rev05c8a6f0163fe4c330e93775e8e91f3ab66a3f80/solr/maven/org/apache/solr/solr-core/8.9.0/solr-core-8.9.0-javadoc.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-8.9.0-RC1-rev05c8a6f0163fe4c330e93775e8e91f3ab66a3f80/solr/maven/org/apache/solr/solr-core/8.9.0/solr-core-8.9.0-javadoc.jar.asc (added)
+++ dev/lucene/lucene-solr-8.9.0-RC1-rev05c8a6f0163fe4c330e93775e8e91f3ab66a3f80/solr/maven/org/apache/solr/solr-core/8.9.0/solr-core-8.9.0-javadoc.jar.asc Fri Jun 11 01:16:57 2021
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEElyLyX2UAV+JsgDtgptBk2DOzqWkFAmDCisAACgkQptBk2DOz
+qWnK9A//Q6UPRhXCxsKFBDqlrI8gIACTyhrT1OjGaar+a4RWEeN+ogxOfbgvyHAR
+HcyS2oauPAj7Z41DloDSEgO/f5H0jr/3mEV6h6zZrhI1njNFOvER28lt3buCvHe9
+i6FpX56rh3sfvlnXefo7VbnZMCgYeAiTcyisDnqv7dJ0jGTKED0dfBy0v7tMi3zW
+oXQkve1M9bix+QrzkOQP9VnAlRFY1OwBhLrEPq2ULiZNv/X42VdThaFfmfyPK6SY
+ud5UgTXfxe2qW8p5hLh2fCS3MA75NXG/F0bwET56XENaqbMKZq0fROTlMcFsR2zX
+LjzDKd/7zr62mstw2d6FfKnvY0SFIgdnfOxOGy9LIFu9o1stH101PouX2BBb+FCz
+LY44f59iW8+BHuESoHbBX0TTxjEDm0zTzTOKzmLSTeyk+letDws3tTcXoGMkNmRN
+nqAWHDKYR4WL3T+R3QrK+yTQhooKEQwtrFg5ok1/giSJbDKUtJLhGvmlYiD0Mck0
++yCJaGrpZkCqzptRyEpL4fOyaRbzOEz0J4MLY3x0dQ2HNnGLOhN61EGLSCPlk058
+CsZoi1cY0G1jdAWWIh/Xn9cjdqZCeLDOiwlgjePgJLk1JTCQvzSAQ0qxK3uMnT+3
+Id+Gneqy38qcgg1mitYzKm3IKGuPL/D5IgAmM0mhmJsqgCEWa/w=
+=pmq8
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-8.9.0-RC1-rev05c8a6f0163fe4c330e93775e8e91f3ab66a3f80/solr/maven/org/apache/solr/solr-core/8.9.0/solr-core-8.9.0-javadoc.jar.md5
==============================================================================
--- dev/lucene/lucene-solr-8.9.0-RC1-rev05c8a6f0163fe4c330e93775e8e91f3ab66a3f80/solr/maven/org/apache/solr/solr-core/8.9.0/solr-core-8.9.0-javadoc.jar.md5 (added)
+++ dev/lucene/lucene-solr-8.9.0-RC1-rev05c8a6f0163fe4c330e93775e8e91f3ab66a3f80/solr/maven/org/apache/solr/solr-core/8.9.0/solr-core-8.9.0-javadoc.jar.md5 Fri Jun 11 01:16:57 2021
@@ -0,0 +1 @@
+cfa5caf1c720b9cf930462a5c9ef50a3
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.9.0-RC1-rev05c8a6f0163fe4c330e93775e8e91f3ab66a3f80/solr/maven/org/apache/solr/solr-core/8.9.0/solr-core-8.9.0-javadoc.jar.sha1
==============================================================================
--- dev/lucene/lucene-solr-8.9.0-RC1-rev05c8a6f0163fe4c330e93775e8e91f3ab66a3f80/solr/maven/org/apache/solr/solr-core/8.9.0/solr-core-8.9.0-javadoc.jar.sha1 (added)
+++ dev/lucene/lucene-solr-8.9.0-RC1-rev05c8a6f0163fe4c330e93775e8e91f3ab66a3f80/solr/maven/org/apache/solr/solr-core/8.9.0/solr-core-8.9.0-javadoc.jar.sha1 Fri Jun 11 01:16:57 2021
@@ -0,0 +1 @@
+4f28d222097cef49b7d2e44fcce75f01f740af4c
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.9.0-RC1-rev05c8a6f0163fe4c330e93775e8e91f3ab66a3f80/solr/maven/org/apache/solr/solr-core/8.9.0/solr-core-8.9.0-sources.jar
==============================================================================
Binary file - no diff available.

Propchange: dev/lucene/lucene-solr-8.9.0-RC1-rev05c8a6f0163fe4c330e93775e8e91f3ab66a3f80/solr/maven/org/apache/solr/solr-core/8.9.0/solr-core-8.9.0-sources.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: dev/lucene/lucene-solr-8.9.0-RC1-rev05c8a6f0163fe4c330e93775e8e91f3ab66a3f80/solr/maven/org/apache/solr/solr-core/8.9.0/solr-core-8.9.0-sources.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-8.9.0-RC1-rev05c8a6f0163fe4c330e93775e8e91f3ab66a3f80/solr/maven/org/apache/solr/solr-core/8.9.0/solr-core-8.9.0-sources.jar.asc (added)
+++ dev/lucene/lucene-solr-8.9.0-RC1-rev05c8a6f0163fe4c330e93775e8e91f3ab66a3f80/solr/maven/org/apache/solr/solr-core/8.9.0/solr-core-8.9.0-sources.jar.asc Fri Jun 11 01:16:57 2021
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEElyLyX2UAV+JsgDtgptBk2DOzqWkFAmDCisAACgkQptBk2DOz
+qWmw8BAAnJ6abAdXwO3ypMnRzaDkHYVYqc8HYGQHgYdAy1o1jKP7bzQE5Jmn2wQC
+eFFrfEMTgTbcBfsKHHHJThAqySWfxxch4eRU+KhMvVb3W4c2hOZ6yh0XhCwJzYuR
+YweCdVFkbS42NgOMMC9gOU0XeTtcU1rtI67uQlSfHXHOmNyds2TV87BKQF6aqA+W
+arU7cIvsfNaki8h46AjPnBydOMbRmcVQAxqrAilOvRWXEh06y/iZJF1AZ35/jrK8
+2H5qBdhz0GTVnddaVUkhCkZZFIt9ACBXcvaGOjtSQ/8iTsZG6Dvsfme0+009PYKh
+b2sfp1l1Uv/LxX+lXmcAV01F8JHII/K0qqM4JtVrUKwPp+Ww1WDUtNt7oPpdvKIn
+INahRnEqMI79wJx8a8dchyBbuvCVuFIoB+KTpmgZVP8ms0OtLdidRuUIBtjA5OC5
+V3duyAkBkNLtZgEK2c10JQhrqtxqEst3G3SoMchb0M1zCEk84tPdcDVS+vHELvZW
+pSIZTxDaoqFMGODbT9i9xvjaSL8R+CWfZgkkL7uo9YcWcgNnY6lnwhqzpyS68T5t
+7lCL4Q1Y9SeNhuUAIDYAv53S8Kdp+1Er73WXuGCtj43G8t37YvuMfGqHxWfiBkg1
+CXmUGNknrtUlFWKNoRAWRmZgxFrtGXxoiA/sH4aCd/w502JjxdY=
+=9iTo
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-8.9.0-RC1-rev05c8a6f0163fe4c330e93775e8e91f3ab66a3f80/solr/maven/org/apache/solr/solr-core/8.9.0/solr-core-8.9.0-sources.jar.md5
==============================================================================
--- dev/lucene/lucene-solr-8.9.0-RC1-rev05c8a6f0163fe4c330e93775e8e91f3ab66a3f80/solr/maven/org/apache/solr/solr-core/8.9.0/solr-core-8.9.0-sources.jar.md5 (added)
+++ dev/lucene/lucene-solr-8.9.0-RC1-rev05c8a6f0163fe4c330e93775e8e91f3ab66a3f80/solr/maven/org/apache/solr/solr-core/8.9.0/solr-core-8.9.0-sources.jar.md5 Fri Jun 11 01:16:57 2021
@@ -0,0 +1 @@
+0d954ca2da4599452781c2489dca7594
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.9.0-RC1-rev05c8a6f0163fe4c330e93775e8e91f3ab66a3f80/solr/maven/org/apache/solr/solr-core/8.9.0/solr-core-8.9.0-sources.jar.sha1
==============================================================================
--- dev/lucene/lucene-solr-8.9.0-RC1-rev05c8a6f0163fe4c330e93775e8e91f3ab66a3f80/solr/maven/org/apache/solr/solr-core/8.9.0/solr-core-8.9.0-sources.jar.sha1 (added)
+++ dev/lucene/lucene-solr-8.9.0-RC1-rev05c8a6f0163fe4c330e93775e8e91f3ab66a3f80/solr/maven/org/apache/solr/solr-core/8.9.0/solr-core-8.9.0-sources.jar.sha1 Fri Jun 11 01:16:57 2021
@@ -0,0 +1 @@
+7e3d9dc7c5599fb970029d9b7a7c7e4a837e6e3f
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.9.0-RC1-rev05c8a6f0163fe4c330e93775e8e91f3ab66a3f80/solr/maven/org/apache/solr/solr-core/8.9.0/solr-core-8.9.0.jar
==============================================================================
Binary file - no diff available.

Propchange: dev/lucene/lucene-solr-8.9.0-RC1-rev05c8a6f0163fe4c330e93775e8e91f3ab66a3f80/solr/maven/org/apache/solr/solr-core/8.9.0/solr-core-8.9.0.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: dev/lucene/lucene-solr-8.9.0-RC1-rev05c8a6f0163fe4c330e93775e8e91f3ab66a3f80/solr/maven/org/apache/solr/solr-core/8.9.0/solr-core-8.9.0.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-8.9.0-RC1-rev05c8a6f0163fe4c330e93775e8e91f3ab66a3f80/solr/maven/org/apache/solr/solr-core/8.9.0/solr-core-8.9.0.jar.asc (added)
+++ dev/lucene/lucene-solr-8.9.0-RC1-rev05c8a6f0163fe4c330e93775e8e91f3ab66a3f80/solr/maven/org/apache/solr/solr-core/8.9.0/solr-core-8.9.0.jar.asc Fri Jun 11 01:16:57 2021
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEElyLyX2UAV+JsgDtgptBk2DOzqWkFAmDCisAACgkQptBk2DOz
+qWlNiBAAjze6/rvI9a34Ig42+NjQgGTdg777GHilxNDi22dUJiHSEmdN1AypP/6A
+AV07GywYAFAIKBA/yvkBp5Dpn98FoMr4e+b+UpJ0fBU4Xxi9oUCnXRAZ5U8RXCie
+Khd9NorCJP6/NeINGR5nMPKREGNsCni5CJ7GM7xaatbEb+KkqDvFiQdGd5UZZwpM
+SWegqu0dGYCH7KtHF4mqPaKf/lagxf9yRCCtQfDmEWhhQ0j2VukKIcsjuWzSDlQG
+ZdlXNtIZbHuyBFuMc83NRTR96+IPaqs0RaeyY6bHoPoRUpAa59WZWYtYm84WLZY1
+WlixPXdtsI+lhxmv4raEd/Aq3wE8d5Z7Dj5h6IDsdO64buBL5JSHUEYM0mj25/rH
+eB4bWQ1Oq5Wb/ynasrF8YjI/h6qF7s57q75BZdS4HVbNQ4STs6AxMj6WPkLLY/8t
+3KhGPqeCPahwz4LUoYfMDEsF9kTUUCXl3i5rMeaxDsTTStx6o6+9bgFsNUTnskl/
+GDrWvB9vfSnlDSpv7TtkhHrnRByt5c0bW4fSYBJ8Aab3xw6zCpMQOWA+SQAiTwQP
+cG+ERyP8bGg4ShUIXE0c7+S3n64DGw4YoG8/pTFWyyXbYjTBpQ2AW3WPqTj1kGYF
+3akgH+mT8dvx7GQGsZDvaLpAkNYqAu4A/4qltfiifmNXiQ0k080=
+=RLEo
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-8.9.0-RC1-rev05c8a6f0163fe4c330e93775e8e91f3ab66a3f80/solr/maven/org/apache/solr/solr-core/8.9.0/solr-core-8.9.0.jar.md5
==============================================================================
--- dev/lucene/lucene-solr-8.9.0-RC1-rev05c8a6f0163fe4c330e93775e8e91f3ab66a3f80/solr/maven/org/apache/solr/solr-core/8.9.0/solr-core-8.9.0.jar.md5 (added)
+++ dev/lucene/lucene-solr-8.9.0-RC1-rev05c8a6f0163fe4c330e93775e8e91f3ab66a3f80/solr/maven/org/apache/solr/solr-core/8.9.0/solr-core-8.9.0.jar.md5 Fri Jun 11 01:16:57 2021
@@ -0,0 +1 @@
+6893740bdceace27ab2fae7f5f127730
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.9.0-RC1-rev05c8a6f0163fe4c330e93775e8e91f3ab66a3f80/solr/maven/org/apache/solr/solr-core/8.9.0/solr-core-8.9.0.jar.sha1
==============================================================================
--- dev/lucene/lucene-solr-8.9.0-RC1-rev05c8a6f0163fe4c330e93775e8e91f3ab66a3f80/solr/maven/org/apache/solr/solr-core/8.9.0/solr-core-8.9.0.jar.sha1 (added)
+++ dev/lucene/lucene-solr-8.9.0-RC1-rev05c8a6f0163fe4c330e93775e8e91f3ab66a3f80/solr/maven/org/apache/solr/solr-core/8.9.0/solr-core-8.9.0.jar.sha1 Fri Jun 11 01:16:57 2021
@@ -0,0 +1 @@
+50e342e9296d329dd93ec336811d8fe27d241069
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.9.0-RC1-rev05c8a6f0163fe4c330e93775e8e91f3ab66a3f80/solr/maven/org/apache/solr/solr-core/8.9.0/solr-core-8.9.0.pom
==============================================================================
--- dev/lucene/lucene-solr-8.9.0-RC1-rev05c8a6f0163fe4c330e93775e8e91f3ab66a3f80/solr/maven/org/apache/solr/solr-core/8.9.0/solr-core-8.9.0.pom (added)
+++ dev/lucene/lucene-solr-8.9.0-RC1-rev05c8a6f0163fe4c330e93775e8e91f3ab66a3f80/solr/maven/org/apache/solr/solr-core/8.9.0/solr-core-8.9.0.pom Fri Jun 11 01:16:57 2021
@@ -0,0 +1,549 @@
+<!--
+  Licensed to the Apache Software Foundation (ASF) under one
+  or more contributor license agreements.  See the NOTICE file
+  distributed with this work for additional information
+  regarding copyright ownership.  The ASF licenses this file
+  to you under the Apache License, Version 2.0 (the
+  "License"); you may not use this file except in compliance
+  with the License.  You may obtain a copy of the License at
+  
+  http://www.apache.org/licenses/LICENSE-2.0
+  
+  Unless required by applicable law or agreed to in writing,
+  software distributed under the License is distributed on an
+  "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+  KIND, either express or implied.  See the License for the
+  specific language governing permissions and limitations
+  under the License.
+-->
+<project xmlns="http://maven.apache.org/POM/4.0.0"
+         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
+  <modelVersion>4.0.0</modelVersion>
+  <parent>
+    <groupId>org.apache.solr</groupId>
+    <artifactId>solr-parent</artifactId>
+    <version>8.9.0</version>
+    <relativePath>../pom.xml</relativePath>
+  </parent>
+  <groupId>org.apache.solr</groupId>
+  <artifactId>solr-core</artifactId>
+  <packaging>jar</packaging>
+  <name>Apache Solr Core</name>
+  <description>Apache Solr Core</description>
+  <properties>
+    <module-directory>solr/core</module-directory>
+  </properties>
+  <scm>
+    <connection>scm:git:${vc-anonymous-base-url}</connection>
+    <developerConnection>scm:git:${vc-dev-base-url}</developerConnection>
+    <url>${vc-browse-base-url};f=${module-directory}</url>
+  </scm>
+  <dependencies>
+    <dependency>
+      <groupId>org.apache.lucene</groupId>
+      <artifactId>lucene-analyzers-common</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.lucene</groupId>
+      <artifactId>lucene-analyzers-kuromoji</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.lucene</groupId>
+      <artifactId>lucene-analyzers-nori</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.lucene</groupId>
+      <artifactId>lucene-analyzers-phonetic</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.lucene</groupId>
+      <artifactId>lucene-backward-codecs</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.lucene</groupId>
+      <artifactId>lucene-classification</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.lucene</groupId>
+      <artifactId>lucene-codecs</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.lucene</groupId>
+      <artifactId>lucene-core</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.lucene</groupId>
+      <artifactId>lucene-expressions</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.lucene</groupId>
+      <artifactId>lucene-grouping</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.lucene</groupId>
+      <artifactId>lucene-highlighter</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.lucene</groupId>
+      <artifactId>lucene-join</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.lucene</groupId>
+      <artifactId>lucene-memory</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.lucene</groupId>
+      <artifactId>lucene-misc</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.lucene</groupId>
+      <artifactId>lucene-queries</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.lucene</groupId>
+      <artifactId>lucene-queryparser</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.lucene</groupId>
+      <artifactId>lucene-sandbox</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.lucene</groupId>
+      <artifactId>lucene-spatial-extras</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.lucene</groupId>
+      <artifactId>lucene-spatial3d</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.lucene</groupId>
+      <artifactId>lucene-suggest</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.solr</groupId>
+      <artifactId>solr-solrj</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.carrotsearch</groupId>
+      <artifactId>hppc</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.fasterxml.jackson.core</groupId>
+      <artifactId>jackson-annotations</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.fasterxml.jackson.core</groupId>
+      <artifactId>jackson-core</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.fasterxml.jackson.core</groupId>
+      <artifactId>jackson-databind</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.fasterxml.jackson.dataformat</groupId>
+      <artifactId>jackson-dataformat-smile</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.github.ben-manes.caffeine</groupId>
+      <artifactId>caffeine</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.github.zafarkhaja</groupId>
+      <artifactId>java-semver</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.google.guava</groupId>
+      <artifactId>guava</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.google.protobuf</groupId>
+      <artifactId>protobuf-java</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.google.re2j</groupId>
+      <artifactId>re2j</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.jayway.jsonpath</groupId>
+      <artifactId>json-path</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.lmax</groupId>
+      <artifactId>disruptor</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.tdunning</groupId>
+      <artifactId>t-digest</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>commons-cli</groupId>
+      <artifactId>commons-cli</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>commons-codec</groupId>
+      <artifactId>commons-codec</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>commons-collections</groupId>
+      <artifactId>commons-collections</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>commons-io</groupId>
+      <artifactId>commons-io</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>commons-lang</groupId>
+      <artifactId>commons-lang</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>io.dropwizard.metrics</groupId>
+      <artifactId>metrics-core</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>io.dropwizard.metrics</groupId>
+      <artifactId>metrics-graphite</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>io.dropwizard.metrics</groupId>
+      <artifactId>metrics-jetty9</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>io.dropwizard.metrics</groupId>
+      <artifactId>metrics-jmx</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>io.dropwizard.metrics</groupId>
+      <artifactId>metrics-jvm</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>io.netty</groupId>
+      <artifactId>netty-buffer</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>io.netty</groupId>
+      <artifactId>netty-codec</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>io.netty</groupId>
+      <artifactId>netty-common</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>io.netty</groupId>
+      <artifactId>netty-handler</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>io.netty</groupId>
+      <artifactId>netty-resolver</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>io.netty</groupId>
+      <artifactId>netty-transport</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>io.netty</groupId>
+      <artifactId>netty-transport-native-epoll</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>io.netty</groupId>
+      <artifactId>netty-transport-native-unix-common</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>io.opentracing</groupId>
+      <artifactId>opentracing-api</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>io.opentracing</groupId>
+      <artifactId>opentracing-noop</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>io.opentracing</groupId>
+      <artifactId>opentracing-util</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>io.sgr</groupId>
+      <artifactId>s2-geometry-library-java</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>javax.servlet</groupId>
+      <artifactId>javax.servlet-api</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>net.hydromatic</groupId>
+      <artifactId>eigenbase-properties</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.antlr</groupId>
+      <artifactId>antlr4-runtime</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.calcite</groupId>
+      <artifactId>calcite-core</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.calcite</groupId>
+      <artifactId>calcite-linq4j</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.calcite.avatica</groupId>
+      <artifactId>avatica-core</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.commons</groupId>
+      <artifactId>commons-collections4</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.commons</groupId>
+      <artifactId>commons-configuration2</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.commons</groupId>
+      <artifactId>commons-exec</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.commons</groupId>
+      <artifactId>commons-lang3</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.commons</groupId>
+      <artifactId>commons-math3</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.commons</groupId>
+      <artifactId>commons-text</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.curator</groupId>
+      <artifactId>curator-client</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.curator</groupId>
+      <artifactId>curator-framework</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.curator</groupId>
+      <artifactId>curator-recipes</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.hadoop</groupId>
+      <artifactId>hadoop-annotations</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.hadoop</groupId>
+      <artifactId>hadoop-auth</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.hadoop</groupId>
+      <artifactId>hadoop-common</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.hadoop</groupId>
+      <artifactId>hadoop-hdfs-client</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.htrace</groupId>
+      <artifactId>htrace-core4</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.httpcomponents</groupId>
+      <artifactId>httpclient</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.httpcomponents</groupId>
+      <artifactId>httpcore</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.httpcomponents</groupId>
+      <artifactId>httpmime</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.kerby</groupId>
+      <artifactId>kerb-core</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.kerby</groupId>
+      <artifactId>kerb-util</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.kerby</groupId>
+      <artifactId>kerby-asn1</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.kerby</groupId>
+      <artifactId>kerby-pkix</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.logging.log4j</groupId>
+      <artifactId>log4j-1.2-api</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.logging.log4j</groupId>
+      <artifactId>log4j-api</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.logging.log4j</groupId>
+      <artifactId>log4j-core</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.logging.log4j</groupId>
+      <artifactId>log4j-slf4j-impl</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.logging.log4j</groupId>
+      <artifactId>log4j-web</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.zookeeper</groupId>
+      <artifactId>zookeeper</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.zookeeper</groupId>
+      <artifactId>zookeeper-jute</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.bitbucket.b_c</groupId>
+      <artifactId>jose4j</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.codehaus.janino</groupId>
+      <artifactId>commons-compiler</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.codehaus.janino</groupId>
+      <artifactId>janino</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.codehaus.woodstox</groupId>
+      <artifactId>stax2-api</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.codehaus.woodstox</groupId>
+      <artifactId>woodstox-core-asl</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.eclipse.jetty</groupId>
+      <artifactId>jetty-alpn-client</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.eclipse.jetty</groupId>
+      <artifactId>jetty-alpn-java-client</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.eclipse.jetty</groupId>
+      <artifactId>jetty-alpn-java-server</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.eclipse.jetty</groupId>
+      <artifactId>jetty-alpn-server</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.eclipse.jetty</groupId>
+      <artifactId>jetty-client</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.eclipse.jetty</groupId>
+      <artifactId>jetty-continuation</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.eclipse.jetty</groupId>
+      <artifactId>jetty-deploy</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.eclipse.jetty</groupId>
+      <artifactId>jetty-http</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.eclipse.jetty</groupId>
+      <artifactId>jetty-io</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.eclipse.jetty</groupId>
+      <artifactId>jetty-jmx</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.eclipse.jetty</groupId>
+      <artifactId>jetty-rewrite</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.eclipse.jetty</groupId>
+      <artifactId>jetty-security</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.eclipse.jetty</groupId>
+      <artifactId>jetty-server</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.eclipse.jetty</groupId>
+      <artifactId>jetty-servlet</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.eclipse.jetty</groupId>
+      <artifactId>jetty-servlets</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.eclipse.jetty</groupId>
+      <artifactId>jetty-util</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.eclipse.jetty</groupId>
+      <artifactId>jetty-webapp</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.eclipse.jetty</groupId>
+      <artifactId>jetty-xml</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.eclipse.jetty.http2</groupId>
+      <artifactId>http2-client</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.eclipse.jetty.http2</groupId>
+      <artifactId>http2-common</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.eclipse.jetty.http2</groupId>
+      <artifactId>http2-hpack</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.eclipse.jetty.http2</groupId>
+      <artifactId>http2-http-client-transport</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.eclipse.jetty.http2</groupId>
+      <artifactId>http2-server</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.locationtech.spatial4j</groupId>
+      <artifactId>spatial4j</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.ow2.asm</groupId>
+      <artifactId>asm</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.ow2.asm</groupId>
+      <artifactId>asm-commons</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.rrd4j</groupId>
+      <artifactId>rrd4j</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.slf4j</groupId>
+      <artifactId>jcl-over-slf4j</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.slf4j</groupId>
+      <artifactId>jul-to-slf4j</artifactId>
+      <optional>true</optional>
+    </dependency>
+    <dependency>
+      <groupId>org.slf4j</groupId>
+      <artifactId>slf4j-api</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.xerial.snappy</groupId>
+      <artifactId>snappy-java</artifactId>
+    </dependency>
+  </dependencies>
+</project>

Added: dev/lucene/lucene-solr-8.9.0-RC1-rev05c8a6f0163fe4c330e93775e8e91f3ab66a3f80/solr/maven/org/apache/solr/solr-core/8.9.0/solr-core-8.9.0.pom.asc
==============================================================================
--- dev/lucene/lucene-solr-8.9.0-RC1-rev05c8a6f0163fe4c330e93775e8e91f3ab66a3f80/solr/maven/org/apache/solr/solr-core/8.9.0/solr-core-8.9.0.pom.asc (added)
+++ dev/lucene/lucene-solr-8.9.0-RC1-rev05c8a6f0163fe4c330e93775e8e91f3ab66a3f80/solr/maven/org/apache/solr/solr-core/8.9.0/solr-core-8.9.0.pom.asc Fri Jun 11 01:16:57 2021
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEElyLyX2UAV+JsgDtgptBk2DOzqWkFAmDCisAACgkQptBk2DOz
+qWnSMA/+PMGJBjmCzKxwAF4UOsgCvVKo4VD1xWK3qu1m+hwDbNPxhx52TPjC5FtR
+RHPem3Xd8f3tjMT55GnzSXuZrwiELojCcxi17ums1fbEcVBlK3t/E0mxwNulJbKn
+5Zz2qiuABqycHfkNaE9hUNKUTIY4B8p742yu0DK8Ge9kPj8JNMB2zHKjJLGFs0Qf
+j6ULmArE/9qWC65iyXIst5z4Xmbl+SUZSjitKKHUukP7ijuCun1y56r6IPaYhzJO
+vWDSMXDfJi9wqvIh4X5R+yb+P22fmB0k9KDGhghSRhD1CjhSYzg1Jv8uQQWXAR73
+ANtWb1HF6ND9CkRgaKIl27sDFC5dN16jssHWXvqbxjo1t4SJ/1uZzEwXM0WXiv6R
+4WvDmhhM1NrqSx5yyFshPzrX7qRLGXGFClC2/5t9UnhC+QVgFL0igpA3OKdD1uWm
+ViDVhU4xjetL4QB4XhMdYBsKhwnDrm2yBE/w++xiZArPEMey57wFpWt7pK1t5LJ8
+rrJx7xslJiF9FRZ9Y6QYSBQDKHHM3ldvac98WC1PqJV2CERc7kSPGtjunILvC+XQ
+5BpraW7Vnp5QHvQQGpSayD0KWXIdHmwrsBYO4K7M6BHE/nu+JHmsZeRDN64nt9Zf
+cIyXr3sVs0Ei0qn5sEPHAdRpsezSMSdA0VbZWBMzrbHkxtKQMvc=
+=rzIr
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-8.9.0-RC1-rev05c8a6f0163fe4c330e93775e8e91f3ab66a3f80/solr/maven/org/apache/solr/solr-core/8.9.0/solr-core-8.9.0.pom.md5
==============================================================================
--- dev/lucene/lucene-solr-8.9.0-RC1-rev05c8a6f0163fe4c330e93775e8e91f3ab66a3f80/solr/maven/org/apache/solr/solr-core/8.9.0/solr-core-8.9.0.pom.md5 (added)
+++ dev/lucene/lucene-solr-8.9.0-RC1-rev05c8a6f0163fe4c330e93775e8e91f3ab66a3f80/solr/maven/org/apache/solr/solr-core/8.9.0/solr-core-8.9.0.pom.md5 Fri Jun 11 01:16:57 2021
@@ -0,0 +1 @@
+14e5e635be7068451c4f09f58b1a9b15
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.9.0-RC1-rev05c8a6f0163fe4c330e93775e8e91f3ab66a3f80/solr/maven/org/apache/solr/solr-core/8.9.0/solr-core-8.9.0.pom.sha1
==============================================================================
--- dev/lucene/lucene-solr-8.9.0-RC1-rev05c8a6f0163fe4c330e93775e8e91f3ab66a3f80/solr/maven/org/apache/solr/solr-core/8.9.0/solr-core-8.9.0.pom.sha1 (added)
+++ dev/lucene/lucene-solr-8.9.0-RC1-rev05c8a6f0163fe4c330e93775e8e91f3ab66a3f80/solr/maven/org/apache/solr/solr-core/8.9.0/solr-core-8.9.0.pom.sha1 Fri Jun 11 01:16:57 2021
@@ -0,0 +1 @@
+29cabf0255c7e0fbcf6104520833905b5fc41290
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.9.0-RC1-rev05c8a6f0163fe4c330e93775e8e91f3ab66a3f80/solr/maven/org/apache/solr/solr-core/maven-metadata.xml
==============================================================================
--- dev/lucene/lucene-solr-8.9.0-RC1-rev05c8a6f0163fe4c330e93775e8e91f3ab66a3f80/solr/maven/org/apache/solr/solr-core/maven-metadata.xml (added)
+++ dev/lucene/lucene-solr-8.9.0-RC1-rev05c8a6f0163fe4c330e93775e8e91f3ab66a3f80/solr/maven/org/apache/solr/solr-core/maven-metadata.xml Fri Jun 11 01:16:57 2021
@@ -0,0 +1,12 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<metadata>
+  <groupId>org.apache.solr</groupId>
+  <artifactId>solr-core</artifactId>
+  <version>8.9.0</version>
+  <versioning>
+    <versions>
+      <version>8.9.0</version>
+    </versions>
+    <lastUpdated>20210610215643</lastUpdated>
+  </versioning>
+</metadata>

Added: dev/lucene/lucene-solr-8.9.0-RC1-rev05c8a6f0163fe4c330e93775e8e91f3ab66a3f80/solr/maven/org/apache/solr/solr-core/maven-metadata.xml.md5
==============================================================================
--- dev/lucene/lucene-solr-8.9.0-RC1-rev05c8a6f0163fe4c330e93775e8e91f3ab66a3f80/solr/maven/org/apache/solr/solr-core/maven-metadata.xml.md5 (added)
+++ dev/lucene/lucene-solr-8.9.0-RC1-rev05c8a6f0163fe4c330e93775e8e91f3ab66a3f80/solr/maven/org/apache/solr/solr-core/maven-metadata.xml.md5 Fri Jun 11 01:16:57 2021
@@ -0,0 +1 @@
+2f56c0730b588ff80d7057a549abb187
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.9.0-RC1-rev05c8a6f0163fe4c330e93775e8e91f3ab66a3f80/solr/maven/org/apache/solr/solr-core/maven-metadata.xml.sha1
==============================================================================
--- dev/lucene/lucene-solr-8.9.0-RC1-rev05c8a6f0163fe4c330e93775e8e91f3ab66a3f80/solr/maven/org/apache/solr/solr-core/maven-metadata.xml.sha1 (added)
+++ dev/lucene/lucene-solr-8.9.0-RC1-rev05c8a6f0163fe4c330e93775e8e91f3ab66a3f80/solr/maven/org/apache/solr/solr-core/maven-metadata.xml.sha1 Fri Jun 11 01:16:57 2021
@@ -0,0 +1 @@
+652ad1ee182b478a64f4f765aae9a9d771ba971a
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.9.0-RC1-rev05c8a6f0163fe4c330e93775e8e91f3ab66a3f80/solr/maven/org/apache/solr/solr-dataimporthandler-extras/8.9.0/solr-dataimporthandler-extras-8.9.0-javadoc.jar
==============================================================================
Binary file - no diff available.

Propchange: dev/lucene/lucene-solr-8.9.0-RC1-rev05c8a6f0163fe4c330e93775e8e91f3ab66a3f80/solr/maven/org/apache/solr/solr-dataimporthandler-extras/8.9.0/solr-dataimporthandler-extras-8.9.0-javadoc.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: dev/lucene/lucene-solr-8.9.0-RC1-rev05c8a6f0163fe4c330e93775e8e91f3ab66a3f80/solr/maven/org/apache/solr/solr-dataimporthandler-extras/8.9.0/solr-dataimporthandler-extras-8.9.0-javadoc.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-8.9.0-RC1-rev05c8a6f0163fe4c330e93775e8e91f3ab66a3f80/solr/maven/org/apache/solr/solr-dataimporthandler-extras/8.9.0/solr-dataimporthandler-extras-8.9.0-javadoc.jar.asc (added)
+++ dev/lucene/lucene-solr-8.9.0-RC1-rev05c8a6f0163fe4c330e93775e8e91f3ab66a3f80/solr/maven/org/apache/solr/solr-dataimporthandler-extras/8.9.0/solr-dataimporthandler-extras-8.9.0-javadoc.jar.asc Fri Jun 11 01:16:57 2021
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEElyLyX2UAV+JsgDtgptBk2DOzqWkFAmDCisEACgkQptBk2DOz
+qWlp0hAAgIsLu3fGEHrMdE2+hdSvwF0ro3yYd0CRNBoiKpeomU9mrT8KK6soYIhH
+1gL+1wjd6guvwCGrseg5gR5AiUYxLayISUr7epoP7C7JBknSlUfhEo71480F0gGM
+gnR85PU9+1s/bnP8Ei+BMBTSNvLBAkL77bEs1VnrRk8FEBfQ4Ihbmg3EVNBysy2t
+7CsOet45mMvL6yUwiLo0d/NOBqFyPKe4mNTF/ParTT+gdaztbbtfFw47I2mDu48y
+66JWL4NgDMGihtY3+SkLq4TkyXPEzYOzlVOAHNacKJOJO+W44mPTa6n33Y1Fi3NW
+BaQ/qJVoT8I+ZeqyXhHUaJCZnisl21GP9MxlhBcI3g71X86hwmRIlaBYwzy1JO9t
+dKnDFFb/a1v7cXqL3QF/96x46T2unT/I5OzklDiMzn2EGTEiyx+X2pVvmh7rlEin
+5dJklrKkfp3DTcWJJhj/EPMkV9GhSy5ihXl9jZzglDr1cmUWfInQJyxBHxdkvq7z
+ept6I1R09vAkyr3hSixVlAhKnTbxzorOqaxypqZ42vMyI7xdMb44rts5owK7X7/L
+oPgRI47uBlGJ0ryqb4QK+GZwbG30kAQyLfR2MlLaYiPWiE2T2KOWClcMhk5aS41/
+ganIYMzF6FbYTsCBOKdrt56AYbRYvw5pqSsQUhJSDR1btq9UY58=
+=6yPJ
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-8.9.0-RC1-rev05c8a6f0163fe4c330e93775e8e91f3ab66a3f80/solr/maven/org/apache/solr/solr-dataimporthandler-extras/8.9.0/solr-dataimporthandler-extras-8.9.0-javadoc.jar.md5
==============================================================================
--- dev/lucene/lucene-solr-8.9.0-RC1-rev05c8a6f0163fe4c330e93775e8e91f3ab66a3f80/solr/maven/org/apache/solr/solr-dataimporthandler-extras/8.9.0/solr-dataimporthandler-extras-8.9.0-javadoc.jar.md5 (added)
+++ dev/lucene/lucene-solr-8.9.0-RC1-rev05c8a6f0163fe4c330e93775e8e91f3ab66a3f80/solr/maven/org/apache/solr/solr-dataimporthandler-extras/8.9.0/solr-dataimporthandler-extras-8.9.0-javadoc.jar.md5 Fri Jun 11 01:16:57 2021
@@ -0,0 +1 @@
+657f7abce10f9cca12e276f9560d09e7
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.9.0-RC1-rev05c8a6f0163fe4c330e93775e8e91f3ab66a3f80/solr/maven/org/apache/solr/solr-dataimporthandler-extras/8.9.0/solr-dataimporthandler-extras-8.9.0-javadoc.jar.sha1
==============================================================================
--- dev/lucene/lucene-solr-8.9.0-RC1-rev05c8a6f0163fe4c330e93775e8e91f3ab66a3f80/solr/maven/org/apache/solr/solr-dataimporthandler-extras/8.9.0/solr-dataimporthandler-extras-8.9.0-javadoc.jar.sha1 (added)
+++ dev/lucene/lucene-solr-8.9.0-RC1-rev05c8a6f0163fe4c330e93775e8e91f3ab66a3f80/solr/maven/org/apache/solr/solr-dataimporthandler-extras/8.9.0/solr-dataimporthandler-extras-8.9.0-javadoc.jar.sha1 Fri Jun 11 01:16:57 2021
@@ -0,0 +1 @@
+e78e294846f4747d4f015e79f5d61575c3ac7d6f
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.9.0-RC1-rev05c8a6f0163fe4c330e93775e8e91f3ab66a3f80/solr/maven/org/apache/solr/solr-dataimporthandler-extras/8.9.0/solr-dataimporthandler-extras-8.9.0-sources.jar
==============================================================================
Binary file - no diff available.

Propchange: dev/lucene/lucene-solr-8.9.0-RC1-rev05c8a6f0163fe4c330e93775e8e91f3ab66a3f80/solr/maven/org/apache/solr/solr-dataimporthandler-extras/8.9.0/solr-dataimporthandler-extras-8.9.0-sources.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: dev/lucene/lucene-solr-8.9.0-RC1-rev05c8a6f0163fe4c330e93775e8e91f3ab66a3f80/solr/maven/org/apache/solr/solr-dataimporthandler-extras/8.9.0/solr-dataimporthandler-extras-8.9.0-sources.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-8.9.0-RC1-rev05c8a6f0163fe4c330e93775e8e91f3ab66a3f80/solr/maven/org/apache/solr/solr-dataimporthandler-extras/8.9.0/solr-dataimporthandler-extras-8.9.0-sources.jar.asc (added)
+++ dev/lucene/lucene-solr-8.9.0-RC1-rev05c8a6f0163fe4c330e93775e8e91f3ab66a3f80/solr/maven/org/apache/solr/solr-dataimporthandler-extras/8.9.0/solr-dataimporthandler-extras-8.9.0-sources.jar.asc Fri Jun 11 01:16:57 2021
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEElyLyX2UAV+JsgDtgptBk2DOzqWkFAmDCisEACgkQptBk2DOz
+qWn7LQ//WLK9LmuAAyYCptuDEAay+fhdnf3z47J7PBc/EVp9coRrtXoZoWx+v7kC
+0IZJu+VBPXxX9d93vE8WcXBKg2oInk5MbAnVsGnakLmOM2qhQ+SgN1JPAVEfvQuW
+Lk1WC3fOZSF6CPiZdmB1nXWe4fSptCCFkqXat4SGmYmCrGJtrChSvw6xowJkqqix
+ioOS0sxBeoLxEzJk4GiMX8PghnCwto92MIZKsrvJib9Xy4+4zAzfsaoKmKT4+b3j
+7ZMvb1uuVMIQn8xL7z269hUglhnG/yQlsflI0pcSKIlz6uO5ysmx9hdQT8/idfmp
+vk92lQMnbR3+g636mjPnvgA6j8KdO5753iqU75GGhRQK6rv0apJv6KhkQMZFrjW8
+l9792Cxc3FwVAjkPVrnzXoqBlW1F+ITQUj9MCuuvmRofZHB8cMNe7Q7uyStlgNT+
+QbR0DdFoQj9RuQgLlqXvJZLE+qb43/02LgGID2aeSOEi2Osw7WOyvlKmN2V33Xi1
+8vqz0gbeH1Puq7fuwc3IN3xxzf76zNsx5pDIcvSn/16lvUGF0hlY2NLIuUwIePgY
+xEcOZpcnZ4JiuFKiJ5wMjbgwwCWy93n2by+qpwFGrTPTcd54jwwh9NABepcHspna
++mO9mdWRyXw1QNSwpFTinWslJMW9VHff9/uVubSjqUwzgxqKEoA=
+=OPWW
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-8.9.0-RC1-rev05c8a6f0163fe4c330e93775e8e91f3ab66a3f80/solr/maven/org/apache/solr/solr-dataimporthandler-extras/8.9.0/solr-dataimporthandler-extras-8.9.0-sources.jar.md5
==============================================================================
--- dev/lucene/lucene-solr-8.9.0-RC1-rev05c8a6f0163fe4c330e93775e8e91f3ab66a3f80/solr/maven/org/apache/solr/solr-dataimporthandler-extras/8.9.0/solr-dataimporthandler-extras-8.9.0-sources.jar.md5 (added)
+++ dev/lucene/lucene-solr-8.9.0-RC1-rev05c8a6f0163fe4c330e93775e8e91f3ab66a3f80/solr/maven/org/apache/solr/solr-dataimporthandler-extras/8.9.0/solr-dataimporthandler-extras-8.9.0-sources.jar.md5 Fri Jun 11 01:16:57 2021
@@ -0,0 +1 @@
+32afa6e03744d5773b5312808ab7c9b7
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.9.0-RC1-rev05c8a6f0163fe4c330e93775e8e91f3ab66a3f80/solr/maven/org/apache/solr/solr-dataimporthandler-extras/8.9.0/solr-dataimporthandler-extras-8.9.0-sources.jar.sha1
==============================================================================
--- dev/lucene/lucene-solr-8.9.0-RC1-rev05c8a6f0163fe4c330e93775e8e91f3ab66a3f80/solr/maven/org/apache/solr/solr-dataimporthandler-extras/8.9.0/solr-dataimporthandler-extras-8.9.0-sources.jar.sha1 (added)
+++ dev/lucene/lucene-solr-8.9.0-RC1-rev05c8a6f0163fe4c330e93775e8e91f3ab66a3f80/solr/maven/org/apache/solr/solr-dataimporthandler-extras/8.9.0/solr-dataimporthandler-extras-8.9.0-sources.jar.sha1 Fri Jun 11 01:16:57 2021
@@ -0,0 +1 @@
+03c022c7a94c2b8ae6d08bd9dcaf764556e64580
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.9.0-RC1-rev05c8a6f0163fe4c330e93775e8e91f3ab66a3f80/solr/maven/org/apache/solr/solr-dataimporthandler-extras/8.9.0/solr-dataimporthandler-extras-8.9.0.jar
==============================================================================
Binary file - no diff available.

Propchange: dev/lucene/lucene-solr-8.9.0-RC1-rev05c8a6f0163fe4c330e93775e8e91f3ab66a3f80/solr/maven/org/apache/solr/solr-dataimporthandler-extras/8.9.0/solr-dataimporthandler-extras-8.9.0.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: dev/lucene/lucene-solr-8.9.0-RC1-rev05c8a6f0163fe4c330e93775e8e91f3ab66a3f80/solr/maven/org/apache/solr/solr-dataimporthandler-extras/8.9.0/solr-dataimporthandler-extras-8.9.0.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-8.9.0-RC1-rev05c8a6f0163fe4c330e93775e8e91f3ab66a3f80/solr/maven/org/apache/solr/solr-dataimporthandler-extras/8.9.0/solr-dataimporthandler-extras-8.9.0.jar.asc (added)
+++ dev/lucene/lucene-solr-8.9.0-RC1-rev05c8a6f0163fe4c330e93775e8e91f3ab66a3f80/solr/maven/org/apache/solr/solr-dataimporthandler-extras/8.9.0/solr-dataimporthandler-extras-8.9.0.jar.asc Fri Jun 11 01:16:57 2021
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEElyLyX2UAV+JsgDtgptBk2DOzqWkFAmDCisEACgkQptBk2DOz
+qWkRQg/+Iytff8GfwBkIHxd9lYMiIChnoUd1WMLAa3SiODGt9IlmLIAlAv1vExYU
+PrzBY8rzHdrx1l/NZvboQuOc6sqrk8rRUb6H5RLvp5M7qfYAL4VL40+LNElhBcRk
+TqUUHLpUwP3J9bi9vrNxOJgPo3ipaMwaiWWNfzQAhqLZs7bLIX7Ov7GV6qwfK4OJ
+sxd8WBbWDBJL3QUfhLPbYVVxwMdhvE0Zr0z+aLyc3xCGHbDHSMvvd5b/BIGvb76R
+ewEZnAk//XL0JI/pk/2kp6Jdwb6zBL77jtrZjYD6uzBTAzhaJE+RMKPgPneCSAk3
+Xu7XPlrCytnoQaERSF7L1tFKF5pMa2+kdZNa8ZmfK71P4XOMFozOFqSq4KjYiTm9
+0+XyC0Hs5uQukOHxiSY8ls0uklxeADQ0cl2Zru55OqUzHMPz3iz5ElCcKM4ZD/fG
+ByP6QCHr8hIu5f6e1cQaoNUiTsBb9Da53SkPNTSPjxdDzfL24A68Wn3oop8v+Y0t
+GmjItebL21LsakIrnNjcUQRPh0B4RnnRodvMsFl7nB+KDBKociy2HeasAL32nTuA
+/A1nrFzVTpH0JDHOz9ivGtYQcj/G8VrHwCY9yOioXrfUwjousVkt3Tqrfs3LAY4T
+TuHgmsgS2cxTZTDmSPABbXpiSsV6mvHKJdRtVQC37vMKW+wKHyc=
+=4gat
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-8.9.0-RC1-rev05c8a6f0163fe4c330e93775e8e91f3ab66a3f80/solr/maven/org/apache/solr/solr-dataimporthandler-extras/8.9.0/solr-dataimporthandler-extras-8.9.0.jar.md5
==============================================================================
--- dev/lucene/lucene-solr-8.9.0-RC1-rev05c8a6f0163fe4c330e93775e8e91f3ab66a3f80/solr/maven/org/apache/solr/solr-dataimporthandler-extras/8.9.0/solr-dataimporthandler-extras-8.9.0.jar.md5 (added)
+++ dev/lucene/lucene-solr-8.9.0-RC1-rev05c8a6f0163fe4c330e93775e8e91f3ab66a3f80/solr/maven/org/apache/solr/solr-dataimporthandler-extras/8.9.0/solr-dataimporthandler-extras-8.9.0.jar.md5 Fri Jun 11 01:16:57 2021
@@ -0,0 +1 @@
+d776f954759d103a839125fd3a670870
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.9.0-RC1-rev05c8a6f0163fe4c330e93775e8e91f3ab66a3f80/solr/maven/org/apache/solr/solr-dataimporthandler-extras/8.9.0/solr-dataimporthandler-extras-8.9.0.jar.sha1
==============================================================================
--- dev/lucene/lucene-solr-8.9.0-RC1-rev05c8a6f0163fe4c330e93775e8e91f3ab66a3f80/solr/maven/org/apache/solr/solr-dataimporthandler-extras/8.9.0/solr-dataimporthandler-extras-8.9.0.jar.sha1 (added)
+++ dev/lucene/lucene-solr-8.9.0-RC1-rev05c8a6f0163fe4c330e93775e8e91f3ab66a3f80/solr/maven/org/apache/solr/solr-dataimporthandler-extras/8.9.0/solr-dataimporthandler-extras-8.9.0.jar.sha1 Fri Jun 11 01:16:57 2021
@@ -0,0 +1 @@
+cac5981fd550bf32efc10133ffca827bff66cb92
\ No newline at end of file