You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by md...@apache.org on 2020/05/20 17:46:25 UTC

svn commit: r39710 [14/19] - in /dev/lucene/lucene-solr-8.5.2-RC1-rev384dadd9141cec3f848d8c416315dc2384749814: ./ 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.5.2-RC1-rev384dadd9141cec3f848d8c416315dc2384749814/solr/maven/org/apache/solr/solr-cell/8.5.2/solr-cell-8.5.2.pom
==============================================================================
--- dev/lucene/lucene-solr-8.5.2-RC1-rev384dadd9141cec3f848d8c416315dc2384749814/solr/maven/org/apache/solr/solr-cell/8.5.2/solr-cell-8.5.2.pom (added)
+++ dev/lucene/lucene-solr-8.5.2-RC1-rev384dadd9141cec3f848d8c416315dc2384749814/solr/maven/org/apache/solr/solr-cell/8.5.2/solr-cell-8.5.2.pom Wed May 20 17:46:21 2020
@@ -0,0 +1,764 @@
+<!--
+  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.5.2</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>
+    <relative-top-level>../../../..</relative-top-level>
+    <module-path>${relative-top-level}/${module-directory}</module-path>
+  </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>
+      <!-- lucene-test-framework dependency must be declared before lucene-core -->
+      <!-- This dependency cannot be put into solr-parent, because local        -->
+      <!-- dependencies are always ordered before inherited dependencies.       -->
+      <groupId>org.apache.lucene</groupId>
+      <artifactId>lucene-test-framework</artifactId>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.solr</groupId>
+      <artifactId>solr-test-framework</artifactId>
+      <scope>test</scope>
+    </dependency>
+    <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.adobe.xmp</groupId>
+      <artifactId>xmpcore</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.carrotsearch</groupId>
+      <artifactId>hppc</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.drewnoakes</groupId>
+      <artifactId>metadata-extractor</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.googlecode.mp4parser</groupId>
+      <artifactId>isoparser</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>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-fileupload</groupId>
+      <artifactId>commons-fileupload</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>commons-io</groupId>
+      <artifactId>commons-io</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.restlet.jee</groupId>
+      <artifactId>org.restlet</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.restlet.jee</groupId>
+      <artifactId>org.restlet.ext.servlet</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>jmatio</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.tukaani</groupId>
+      <artifactId>xz</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>xerces</groupId>
+      <artifactId>xercesImpl</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>xml-apis</groupId>
+      <artifactId>xml-apis</artifactId>
+    </dependency>
+
+
+  </dependencies>
+  <build>
+    <sourceDirectory>${module-path}/src/java</sourceDirectory>
+    <testSourceDirectory>${module-path}/src/test</testSourceDirectory>
+    <testResources>
+      <testResource>
+        <directory>${module-path}/src/test-files</directory>
+      </testResource>
+      <testResource>
+        <directory>${top-level}/dev-tools/maven/solr</directory>
+        <includes>
+          <include>maven.testlogging.properties</include>
+        </includes>
+      </testResource>
+    </testResources>
+  </build>
+</project>

Added: dev/lucene/lucene-solr-8.5.2-RC1-rev384dadd9141cec3f848d8c416315dc2384749814/solr/maven/org/apache/solr/solr-cell/8.5.2/solr-cell-8.5.2.pom.asc
==============================================================================
--- dev/lucene/lucene-solr-8.5.2-RC1-rev384dadd9141cec3f848d8c416315dc2384749814/solr/maven/org/apache/solr/solr-cell/8.5.2/solr-cell-8.5.2.pom.asc (added)
+++ dev/lucene/lucene-solr-8.5.2-RC1-rev384dadd9141cec3f848d8c416315dc2384749814/solr/maven/org/apache/solr/solr-cell/8.5.2/solr-cell-8.5.2.pom.asc Wed May 20 17:46:21 2020
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCAAdFiEEhu25wzuFFyKOiKj5PkjAxu82K54FAl7EJL0ACgkQPkjAxu82
+K57Riw/8C5KQUP4nCqv9nsoyIFrJlQiQPFipHOVgAneGx/dahAyWsikm5Q54fNuP
+DBcrer/XLjDuJsE+80oUXoPa60KISC9uzHZYjr1XZME5h08GGz5HXzCZNmSX+XiT
+gCaIrKzvU0LCvFOSL5IDpqsxjBDGpgoYrN3DJDwjJK+ck6gh4JBtFbYFfZVmrPTB
+TWeLe4yaDS8ifkUEz/eQv8rPvWURv8ufGfhTPRMd3R9n/KymJLjpsP3kAjM3Mhor
+A0yF421G2IVnUih9aimWdibODA/Y929ZGBoeHJE37wz77BDdRE121Px7ikR6TBcU
+jZ6a37X56dpakkZBC/7QTlVK5MmSawAglfu+qZrix49n1s4kvivazyl+PGeiWnIH
+klAsfxWBwrDraFO1xKOM15kQcj3MJKliAX5FKokbJcQJ0v0WJx7n+AbckKyzeN/1
+/QrJ4KUyNjIzLO2KE7G0lMOGMPW7QWo6aiDpH9XLocEx/hq2KUW5DYTI+c4kdr4/
+f6uOX+WcBeILb+JOPXukAvnaaIfvzbL6ShcjbWQ3Nzm6dRjq6olcY1nYemc8m29Z
+9VwSbz27W/gwafR7fr/t/a2jskjJOoaU3xTJiyU3fj+ua2x7ocPb/qk2MmTPc1Hl
+sTZtXuHaC0BTsA9EOXM9vJQaSU9ESgsuwr3UY2BQsVL6AzBd+go=
+=Tndw
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-8.5.2-RC1-rev384dadd9141cec3f848d8c416315dc2384749814/solr/maven/org/apache/solr/solr-cell/8.5.2/solr-cell-8.5.2.pom.md5
==============================================================================
--- dev/lucene/lucene-solr-8.5.2-RC1-rev384dadd9141cec3f848d8c416315dc2384749814/solr/maven/org/apache/solr/solr-cell/8.5.2/solr-cell-8.5.2.pom.md5 (added)
+++ dev/lucene/lucene-solr-8.5.2-RC1-rev384dadd9141cec3f848d8c416315dc2384749814/solr/maven/org/apache/solr/solr-cell/8.5.2/solr-cell-8.5.2.pom.md5 Wed May 20 17:46:21 2020
@@ -0,0 +1 @@
+55930a8c53388faac3fef6a6d6585e60
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.5.2-RC1-rev384dadd9141cec3f848d8c416315dc2384749814/solr/maven/org/apache/solr/solr-cell/8.5.2/solr-cell-8.5.2.pom.sha1
==============================================================================
--- dev/lucene/lucene-solr-8.5.2-RC1-rev384dadd9141cec3f848d8c416315dc2384749814/solr/maven/org/apache/solr/solr-cell/8.5.2/solr-cell-8.5.2.pom.sha1 (added)
+++ dev/lucene/lucene-solr-8.5.2-RC1-rev384dadd9141cec3f848d8c416315dc2384749814/solr/maven/org/apache/solr/solr-cell/8.5.2/solr-cell-8.5.2.pom.sha1 Wed May 20 17:46:21 2020
@@ -0,0 +1 @@
+99c4deaeb5b38661970c59a46a65793fd7111d9e
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.5.2-RC1-rev384dadd9141cec3f848d8c416315dc2384749814/solr/maven/org/apache/solr/solr-cell/maven-metadata.xml
==============================================================================
--- dev/lucene/lucene-solr-8.5.2-RC1-rev384dadd9141cec3f848d8c416315dc2384749814/solr/maven/org/apache/solr/solr-cell/maven-metadata.xml (added)
+++ dev/lucene/lucene-solr-8.5.2-RC1-rev384dadd9141cec3f848d8c416315dc2384749814/solr/maven/org/apache/solr/solr-cell/maven-metadata.xml Wed May 20 17:46:21 2020
@@ -0,0 +1,12 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<metadata>
+  <groupId>org.apache.solr</groupId>
+  <artifactId>solr-cell</artifactId>
+  <version>8.5.2</version>
+  <versioning>
+    <versions>
+      <version>8.5.2</version>
+    </versions>
+    <lastUpdated>20200519182547</lastUpdated>
+  </versioning>
+</metadata>

Added: dev/lucene/lucene-solr-8.5.2-RC1-rev384dadd9141cec3f848d8c416315dc2384749814/solr/maven/org/apache/solr/solr-cell/maven-metadata.xml.md5
==============================================================================
--- dev/lucene/lucene-solr-8.5.2-RC1-rev384dadd9141cec3f848d8c416315dc2384749814/solr/maven/org/apache/solr/solr-cell/maven-metadata.xml.md5 (added)
+++ dev/lucene/lucene-solr-8.5.2-RC1-rev384dadd9141cec3f848d8c416315dc2384749814/solr/maven/org/apache/solr/solr-cell/maven-metadata.xml.md5 Wed May 20 17:46:21 2020
@@ -0,0 +1 @@
+a8d21d2fb2c930023e3647632bfca14a
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.5.2-RC1-rev384dadd9141cec3f848d8c416315dc2384749814/solr/maven/org/apache/solr/solr-cell/maven-metadata.xml.sha1
==============================================================================
--- dev/lucene/lucene-solr-8.5.2-RC1-rev384dadd9141cec3f848d8c416315dc2384749814/solr/maven/org/apache/solr/solr-cell/maven-metadata.xml.sha1 (added)
+++ dev/lucene/lucene-solr-8.5.2-RC1-rev384dadd9141cec3f848d8c416315dc2384749814/solr/maven/org/apache/solr/solr-cell/maven-metadata.xml.sha1 Wed May 20 17:46:21 2020
@@ -0,0 +1 @@
+52e71c8bb558e0dc1dbbb68e78ea520cc4793b90
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.5.2-RC1-rev384dadd9141cec3f848d8c416315dc2384749814/solr/maven/org/apache/solr/solr-clustering/8.5.2/solr-clustering-8.5.2-javadoc.jar
==============================================================================
Binary file - no diff available.

Propchange: dev/lucene/lucene-solr-8.5.2-RC1-rev384dadd9141cec3f848d8c416315dc2384749814/solr/maven/org/apache/solr/solr-clustering/8.5.2/solr-clustering-8.5.2-javadoc.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: dev/lucene/lucene-solr-8.5.2-RC1-rev384dadd9141cec3f848d8c416315dc2384749814/solr/maven/org/apache/solr/solr-clustering/8.5.2/solr-clustering-8.5.2-javadoc.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-8.5.2-RC1-rev384dadd9141cec3f848d8c416315dc2384749814/solr/maven/org/apache/solr/solr-clustering/8.5.2/solr-clustering-8.5.2-javadoc.jar.asc (added)
+++ dev/lucene/lucene-solr-8.5.2-RC1-rev384dadd9141cec3f848d8c416315dc2384749814/solr/maven/org/apache/solr/solr-clustering/8.5.2/solr-clustering-8.5.2-javadoc.jar.asc Wed May 20 17:46:21 2020
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCAAdFiEEhu25wzuFFyKOiKj5PkjAxu82K54FAl7EJL0ACgkQPkjAxu82
+K562XxAAjYpe8BAwvzISQ0/RDkaJi+7JMWYWtok8PFSi9jFDCnkbTe2BnslVMJU/
+/CSErbi7zAcK41tJ4F0Hg3nmEiQukF+KIWOKwp8kqvuHacPfIorpiDyDyyVVCOeH
+h1NtF6P8hUYuCq7Dq8RkkQ0m01KOBgtaV6hbd1zrZ6C36wwACMl2baVlsze2Wj6A
+c2kd0oBcwcFFp9dMb5MipBhOJnLSzDMfXDBWrQxXUsG2VCfap//WLwm0fC4x7RA5
+1SAtDUzvhNrp+k0upLPeEUlFG4kSAYWiP4E8uIf02b16iOuVA35Blg12dtOC+Usd
+iGYY87fVvt9fp6vv7Eb3CBkbt3DkJ3VSqNweuEirA5WqpOiq2PMWxbx+9+O0Vm1g
+iTgjhc/lxtxSm/S+0MV27H3ByK/x5HHS7IwwySUCMMj/AiAK9ohBg2DrbP1/5xkK
+yalZanEtShilAemmV9O3IM6zrMjHpaNBP691c7u3U4PXGBZiqpYKG4vrYIlkudIa
+5GCzp8dPzX6dOVQIyxbYBYiMz1nL4fKRuH0QieLPqzIYx+6mC8HPL+pdgLHxh7E2
+KLtDdwBOPvpQWNmAYw7lpR8YZ9YI8qJmPt8qH/oCKSfM3Tn1m/HWNQvZTiNyD+QL
+pRAFqH58tzDUezYhyTM15p2RqXPINPXQ9MGTmCe3lteXjrj9P7s=
+=uOOk
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-8.5.2-RC1-rev384dadd9141cec3f848d8c416315dc2384749814/solr/maven/org/apache/solr/solr-clustering/8.5.2/solr-clustering-8.5.2-javadoc.jar.md5
==============================================================================
--- dev/lucene/lucene-solr-8.5.2-RC1-rev384dadd9141cec3f848d8c416315dc2384749814/solr/maven/org/apache/solr/solr-clustering/8.5.2/solr-clustering-8.5.2-javadoc.jar.md5 (added)
+++ dev/lucene/lucene-solr-8.5.2-RC1-rev384dadd9141cec3f848d8c416315dc2384749814/solr/maven/org/apache/solr/solr-clustering/8.5.2/solr-clustering-8.5.2-javadoc.jar.md5 Wed May 20 17:46:21 2020
@@ -0,0 +1 @@
+7841044b28f609c67abe848e07bbe347
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.5.2-RC1-rev384dadd9141cec3f848d8c416315dc2384749814/solr/maven/org/apache/solr/solr-clustering/8.5.2/solr-clustering-8.5.2-javadoc.jar.sha1
==============================================================================
--- dev/lucene/lucene-solr-8.5.2-RC1-rev384dadd9141cec3f848d8c416315dc2384749814/solr/maven/org/apache/solr/solr-clustering/8.5.2/solr-clustering-8.5.2-javadoc.jar.sha1 (added)
+++ dev/lucene/lucene-solr-8.5.2-RC1-rev384dadd9141cec3f848d8c416315dc2384749814/solr/maven/org/apache/solr/solr-clustering/8.5.2/solr-clustering-8.5.2-javadoc.jar.sha1 Wed May 20 17:46:21 2020
@@ -0,0 +1 @@
+45a501d9e30a51eb6ec69edaea1483870d5191b6
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.5.2-RC1-rev384dadd9141cec3f848d8c416315dc2384749814/solr/maven/org/apache/solr/solr-clustering/8.5.2/solr-clustering-8.5.2-sources.jar
==============================================================================
Binary file - no diff available.

Propchange: dev/lucene/lucene-solr-8.5.2-RC1-rev384dadd9141cec3f848d8c416315dc2384749814/solr/maven/org/apache/solr/solr-clustering/8.5.2/solr-clustering-8.5.2-sources.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: dev/lucene/lucene-solr-8.5.2-RC1-rev384dadd9141cec3f848d8c416315dc2384749814/solr/maven/org/apache/solr/solr-clustering/8.5.2/solr-clustering-8.5.2-sources.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-8.5.2-RC1-rev384dadd9141cec3f848d8c416315dc2384749814/solr/maven/org/apache/solr/solr-clustering/8.5.2/solr-clustering-8.5.2-sources.jar.asc (added)
+++ dev/lucene/lucene-solr-8.5.2-RC1-rev384dadd9141cec3f848d8c416315dc2384749814/solr/maven/org/apache/solr/solr-clustering/8.5.2/solr-clustering-8.5.2-sources.jar.asc Wed May 20 17:46:21 2020
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCAAdFiEEhu25wzuFFyKOiKj5PkjAxu82K54FAl7EJL0ACgkQPkjAxu82
+K54vJBAAos4SlprVuheJPfg6sDglOCV26iPvv+vGJ9DX/jQM45Nxpidoa9u8bB6Q
+b+hKyyI87ypV4X9sRGS+9Ati9oZs7LjuzthH5+9XfFFN0jtswIwYvyw+Mr+qUjOq
+ifh/Nvn5vDzrGvMebLEdf2tl+5IYnZhjkE1vH3k6jVI3RcsL4AylrzFJEqbG2yDr
+B65DraxWsal2icKEqsl5kzWqRiSKTyTMh+1bWQeBZIZ2x5mf7KUupbKjmOvtzsQ7
+FRf9n+VKLf0jSeit/D3KdRsyvzAdX+HVkPrCfJSpK8dCSFITVZLaCk6vycChfaix
+/IQ1hGNNs639wjY0JY5ITc/BNYmvRxck1nZYQySSoCDxA0tz/y/sX0Lx6D92TsnE
+aZtR1x8ByG+R4hVwXzTx20ur9bFJBc3KjS52HlXc4qj6QbXlRIfJng/8zPuHNe+8
+jk1uKoYLL5wqSOByH0YhHR1/6HWbavv6+/4/+Lw7J5lN0CQjG05DPCdaRx7/Y1Ty
+UxrlMByLwQ/N/Am+Z8FOSspCrU4mHPq5pdcBtELcfkAqlFFKEd3VGHrQsPajFOzr
+QW55syGi30c8PkPmSRprzxOQJzHsODfIYkiItnxxKiahuV+WLFET2QjF0vWPfFrE
+Z81DyIT2iCedLe3eOZ0xnTfBFIUwNFipAE7F8oyaQiNEqH3cbYQ=
+=F8cx
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-8.5.2-RC1-rev384dadd9141cec3f848d8c416315dc2384749814/solr/maven/org/apache/solr/solr-clustering/8.5.2/solr-clustering-8.5.2-sources.jar.md5
==============================================================================
--- dev/lucene/lucene-solr-8.5.2-RC1-rev384dadd9141cec3f848d8c416315dc2384749814/solr/maven/org/apache/solr/solr-clustering/8.5.2/solr-clustering-8.5.2-sources.jar.md5 (added)
+++ dev/lucene/lucene-solr-8.5.2-RC1-rev384dadd9141cec3f848d8c416315dc2384749814/solr/maven/org/apache/solr/solr-clustering/8.5.2/solr-clustering-8.5.2-sources.jar.md5 Wed May 20 17:46:21 2020
@@ -0,0 +1 @@
+09d13f731ed5fb2a52ddf7511da60ca2
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.5.2-RC1-rev384dadd9141cec3f848d8c416315dc2384749814/solr/maven/org/apache/solr/solr-clustering/8.5.2/solr-clustering-8.5.2-sources.jar.sha1
==============================================================================
--- dev/lucene/lucene-solr-8.5.2-RC1-rev384dadd9141cec3f848d8c416315dc2384749814/solr/maven/org/apache/solr/solr-clustering/8.5.2/solr-clustering-8.5.2-sources.jar.sha1 (added)
+++ dev/lucene/lucene-solr-8.5.2-RC1-rev384dadd9141cec3f848d8c416315dc2384749814/solr/maven/org/apache/solr/solr-clustering/8.5.2/solr-clustering-8.5.2-sources.jar.sha1 Wed May 20 17:46:21 2020
@@ -0,0 +1 @@
+39a0fafe494a66e782b5269454cc26b59502764f
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.5.2-RC1-rev384dadd9141cec3f848d8c416315dc2384749814/solr/maven/org/apache/solr/solr-clustering/8.5.2/solr-clustering-8.5.2.jar
==============================================================================
Binary file - no diff available.

Propchange: dev/lucene/lucene-solr-8.5.2-RC1-rev384dadd9141cec3f848d8c416315dc2384749814/solr/maven/org/apache/solr/solr-clustering/8.5.2/solr-clustering-8.5.2.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: dev/lucene/lucene-solr-8.5.2-RC1-rev384dadd9141cec3f848d8c416315dc2384749814/solr/maven/org/apache/solr/solr-clustering/8.5.2/solr-clustering-8.5.2.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-8.5.2-RC1-rev384dadd9141cec3f848d8c416315dc2384749814/solr/maven/org/apache/solr/solr-clustering/8.5.2/solr-clustering-8.5.2.jar.asc (added)
+++ dev/lucene/lucene-solr-8.5.2-RC1-rev384dadd9141cec3f848d8c416315dc2384749814/solr/maven/org/apache/solr/solr-clustering/8.5.2/solr-clustering-8.5.2.jar.asc Wed May 20 17:46:21 2020
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCAAdFiEEhu25wzuFFyKOiKj5PkjAxu82K54FAl7EJL0ACgkQPkjAxu82
+K57gsQ//cJahhkTG39FHred9iXXq5YiR2mDF2Y6ZmPefeoGqHdVbIrON0D7uKGbx
+qdtq13vx49a9XD3m9cJioRIsI0zu5Y79yKWPxLUVWYrqqGaBQr9jSzdyq1uqwmP4
+CYi3WjTv+vfF8rapeuh/RJVIffKsGmxIiLTE5KycTCAglRoVjs6GdLVk4lP2QYlz
+/OkkjeXFauRg6T3Y+hzf7GicjKI4YtTuws2vIP5MLwPdbR7WD94+Kq16t23lErD1
+HYd7RD2i1IMRjTUv3EeCki500HQTw/l0VDaIVoczjbsgfo+7EmsjHGnLPFxsWiPy
+Esnhy5NR+bnNnzDe8rXNTFyxPeYXr7mMiSOLZ5qK6gyV+cbCwux8QYOf1D4kHjsQ
+cR15n581dvai/F/1uI8rHMvOw+8oRCJZ7YMzCWl/v7pc2wXG3EWS9y7rBK7jag/U
+mvn3KW5mo7/6Bhr7SB0kEx8+Eifu/7gQ93ljSLjWXXwmQgSq2mgtVnXQSbxvZvhx
+PlCkGzrHv/XgArQgFlBNwN3q5KM/N9ARAKBb4rO6BTugecb/oJz5yBWkFsSC8yKy
+c2BFLG9i5V0n8O1+3DNVYQIiWTI8/6GuLYt3kw36EBRnTiKwGQMzZfVtHky017od
+tqQ52dgPar92yUxFYo2XIKBoyeGY1i4vohfQhbvK67DrgRq1l2E=
+=tToP
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-8.5.2-RC1-rev384dadd9141cec3f848d8c416315dc2384749814/solr/maven/org/apache/solr/solr-clustering/8.5.2/solr-clustering-8.5.2.jar.md5
==============================================================================
--- dev/lucene/lucene-solr-8.5.2-RC1-rev384dadd9141cec3f848d8c416315dc2384749814/solr/maven/org/apache/solr/solr-clustering/8.5.2/solr-clustering-8.5.2.jar.md5 (added)
+++ dev/lucene/lucene-solr-8.5.2-RC1-rev384dadd9141cec3f848d8c416315dc2384749814/solr/maven/org/apache/solr/solr-clustering/8.5.2/solr-clustering-8.5.2.jar.md5 Wed May 20 17:46:21 2020
@@ -0,0 +1 @@
+a8743f391e3342f816d26e90e1017f12
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.5.2-RC1-rev384dadd9141cec3f848d8c416315dc2384749814/solr/maven/org/apache/solr/solr-clustering/8.5.2/solr-clustering-8.5.2.jar.sha1
==============================================================================
--- dev/lucene/lucene-solr-8.5.2-RC1-rev384dadd9141cec3f848d8c416315dc2384749814/solr/maven/org/apache/solr/solr-clustering/8.5.2/solr-clustering-8.5.2.jar.sha1 (added)
+++ dev/lucene/lucene-solr-8.5.2-RC1-rev384dadd9141cec3f848d8c416315dc2384749814/solr/maven/org/apache/solr/solr-clustering/8.5.2/solr-clustering-8.5.2.jar.sha1 Wed May 20 17:46:21 2020
@@ -0,0 +1 @@
+0ec429cba04a1f4b264386df2c2a2711705703d1
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.5.2-RC1-rev384dadd9141cec3f848d8c416315dc2384749814/solr/maven/org/apache/solr/solr-clustering/8.5.2/solr-clustering-8.5.2.pom
==============================================================================
--- dev/lucene/lucene-solr-8.5.2-RC1-rev384dadd9141cec3f848d8c416315dc2384749814/solr/maven/org/apache/solr/solr-clustering/8.5.2/solr-clustering-8.5.2.pom (added)
+++ dev/lucene/lucene-solr-8.5.2-RC1-rev384dadd9141cec3f848d8c416315dc2384749814/solr/maven/org/apache/solr/solr-clustering/8.5.2/solr-clustering-8.5.2.pom Wed May 20 17:46:21 2020
@@ -0,0 +1,601 @@
+<!--
+  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.5.2</version>
+    <relativePath>../../pom.xml</relativePath>
+  </parent>
+  <groupId>org.apache.solr</groupId>
+  <artifactId>solr-clustering</artifactId>
+  <packaging>jar</packaging>
+  <name>Apache Solr Clustering</name>
+  <description>Apache Solr Clustering</description>
+  <properties>
+    <module-directory>solr/contrib/clustering</module-directory>
+    <relative-top-level>../../../..</relative-top-level>
+    <module-path>${relative-top-level}/${module-directory}</module-path>
+  </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>
+      <!-- lucene-test-framework dependency must be declared before lucene-core -->
+      <!-- This dependency cannot be put into solr-parent, because local        -->
+      <!-- dependencies are always ordered before inherited dependencies.       -->
+      <groupId>org.apache.lucene</groupId>
+      <artifactId>lucene-test-framework</artifactId>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.solr</groupId>
+      <artifactId>solr-test-framework</artifactId>
+      <scope>test</scope>
+    </dependency>
+    <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.carrotsearch.thirdparty</groupId>
+      <artifactId>simple-xml-safe</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-fileupload</groupId>
+      <artifactId>commons-fileupload</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>commons-io</groupId>
+      <artifactId>commons-io</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-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.carrot2</groupId>
+      <artifactId>carrot2-mini</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.carrot2.attributes</groupId>
+      <artifactId>attributes-binder</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.carrot2.shaded</groupId>
+      <artifactId>carrot2-guava</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.restlet.jee</groupId>
+      <artifactId>org.restlet</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.restlet.jee</groupId>
+      <artifactId>org.restlet.ext.servlet</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>
+
+
+  </dependencies>
+  <build>
+    <sourceDirectory>${module-path}/src/java</sourceDirectory>
+    <testSourceDirectory>${module-path}/src/test</testSourceDirectory>
+    <testResources>
+      <testResource>
+        <directory>${module-path}/src/test-files</directory>
+      </testResource>
+      <testResource>
+        <directory>${top-level}/dev-tools/maven/solr</directory>
+        <includes>
+          <include>maven.testlogging.properties</include>
+        </includes>
+      </testResource>
+    </testResources>
+  </build>
+</project>

Added: dev/lucene/lucene-solr-8.5.2-RC1-rev384dadd9141cec3f848d8c416315dc2384749814/solr/maven/org/apache/solr/solr-clustering/8.5.2/solr-clustering-8.5.2.pom.asc
==============================================================================
--- dev/lucene/lucene-solr-8.5.2-RC1-rev384dadd9141cec3f848d8c416315dc2384749814/solr/maven/org/apache/solr/solr-clustering/8.5.2/solr-clustering-8.5.2.pom.asc (added)
+++ dev/lucene/lucene-solr-8.5.2-RC1-rev384dadd9141cec3f848d8c416315dc2384749814/solr/maven/org/apache/solr/solr-clustering/8.5.2/solr-clustering-8.5.2.pom.asc Wed May 20 17:46:21 2020
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCAAdFiEEhu25wzuFFyKOiKj5PkjAxu82K54FAl7EJL4ACgkQPkjAxu82
+K55QfRAAtfzJ+DjMVbXFQSEeKamg6GIHYmpNURTiU9KT2f2RNY4Mc7d9wnbM3Ytb
+9JH0PMOFJOSog00knoirCy8VJI9BJ9lQGV/JysBQgZqQtGyfO41AXyWWfZ2puukn
+xAIqtdp+ei4tFs8wuyi9/NOH/ORQOG+mPDWclUY1xURwPl+K0e/9nAmfSURCH7sE
+TlCAX681tEBESvXTxvC3KaGxfQEPLi8USvRAFa33nw6k9BBQ0nf4/DkHxKMqP1mK
+d8NGArUC7xTELIwNRkMT3gRXafQxoNZykTSE+OOl7HScDnovODAufjaur/m7RiB9
+CZ2yhkCMkynhbHB0oIGuFOUEOhYLgT96+kY0tR8n8wemslAAObTV6GaNRh8DQ9Ot
+S2m0BXiALTPRAEypfao6jd+3NJsuFnpm0eX5svmidUjAd81e6tVsad81/9b/80So
+ky3W4itGWNMU5tggEcpGSCB13TC/4OrEKK4T78eix/o7qEJ9Rl9GWMDZuxv8QyEw
+HL4G9Pgitv0Z3c1cL1IwHLOztKx0fec/y1x4GyqhT9S6xE51+KRzDriP1wqgljq9
+kwIvPO3BueYQx8z5tARfuC7LnlkoW9h3sxIqLxuEfs07IPd4VXkkVZx9hTyUkyD6
+Gbv6poY7MLl66FnNE7EySxEJFhpyAFzOJVJzXUOjt7z5VTCZ8ws=
+=fCnj
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-8.5.2-RC1-rev384dadd9141cec3f848d8c416315dc2384749814/solr/maven/org/apache/solr/solr-clustering/8.5.2/solr-clustering-8.5.2.pom.md5
==============================================================================
--- dev/lucene/lucene-solr-8.5.2-RC1-rev384dadd9141cec3f848d8c416315dc2384749814/solr/maven/org/apache/solr/solr-clustering/8.5.2/solr-clustering-8.5.2.pom.md5 (added)
+++ dev/lucene/lucene-solr-8.5.2-RC1-rev384dadd9141cec3f848d8c416315dc2384749814/solr/maven/org/apache/solr/solr-clustering/8.5.2/solr-clustering-8.5.2.pom.md5 Wed May 20 17:46:21 2020
@@ -0,0 +1 @@
+bb659a7b11fd179c1401c700a345cef7
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.5.2-RC1-rev384dadd9141cec3f848d8c416315dc2384749814/solr/maven/org/apache/solr/solr-clustering/8.5.2/solr-clustering-8.5.2.pom.sha1
==============================================================================
--- dev/lucene/lucene-solr-8.5.2-RC1-rev384dadd9141cec3f848d8c416315dc2384749814/solr/maven/org/apache/solr/solr-clustering/8.5.2/solr-clustering-8.5.2.pom.sha1 (added)
+++ dev/lucene/lucene-solr-8.5.2-RC1-rev384dadd9141cec3f848d8c416315dc2384749814/solr/maven/org/apache/solr/solr-clustering/8.5.2/solr-clustering-8.5.2.pom.sha1 Wed May 20 17:46:21 2020
@@ -0,0 +1 @@
+704d5f35bf8a783ce0c66d4ed303f51b07097083
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.5.2-RC1-rev384dadd9141cec3f848d8c416315dc2384749814/solr/maven/org/apache/solr/solr-clustering/maven-metadata.xml
==============================================================================
--- dev/lucene/lucene-solr-8.5.2-RC1-rev384dadd9141cec3f848d8c416315dc2384749814/solr/maven/org/apache/solr/solr-clustering/maven-metadata.xml (added)
+++ dev/lucene/lucene-solr-8.5.2-RC1-rev384dadd9141cec3f848d8c416315dc2384749814/solr/maven/org/apache/solr/solr-clustering/maven-metadata.xml Wed May 20 17:46:21 2020
@@ -0,0 +1,12 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<metadata>
+  <groupId>org.apache.solr</groupId>
+  <artifactId>solr-clustering</artifactId>
+  <version>8.5.2</version>
+  <versioning>
+    <versions>
+      <version>8.5.2</version>
+    </versions>
+    <lastUpdated>20200519182538</lastUpdated>
+  </versioning>
+</metadata>

Added: dev/lucene/lucene-solr-8.5.2-RC1-rev384dadd9141cec3f848d8c416315dc2384749814/solr/maven/org/apache/solr/solr-clustering/maven-metadata.xml.md5
==============================================================================
--- dev/lucene/lucene-solr-8.5.2-RC1-rev384dadd9141cec3f848d8c416315dc2384749814/solr/maven/org/apache/solr/solr-clustering/maven-metadata.xml.md5 (added)
+++ dev/lucene/lucene-solr-8.5.2-RC1-rev384dadd9141cec3f848d8c416315dc2384749814/solr/maven/org/apache/solr/solr-clustering/maven-metadata.xml.md5 Wed May 20 17:46:21 2020
@@ -0,0 +1 @@
+5dea3d5006a2a8bf8695378d9393a957
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.5.2-RC1-rev384dadd9141cec3f848d8c416315dc2384749814/solr/maven/org/apache/solr/solr-clustering/maven-metadata.xml.sha1
==============================================================================
--- dev/lucene/lucene-solr-8.5.2-RC1-rev384dadd9141cec3f848d8c416315dc2384749814/solr/maven/org/apache/solr/solr-clustering/maven-metadata.xml.sha1 (added)
+++ dev/lucene/lucene-solr-8.5.2-RC1-rev384dadd9141cec3f848d8c416315dc2384749814/solr/maven/org/apache/solr/solr-clustering/maven-metadata.xml.sha1 Wed May 20 17:46:21 2020
@@ -0,0 +1 @@
+8a8a17aec6f02882dca948a0edae8fd45878987b
\ No newline at end of file

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

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

Added: dev/lucene/lucene-solr-8.5.2-RC1-rev384dadd9141cec3f848d8c416315dc2384749814/solr/maven/org/apache/solr/solr-core/8.5.2/solr-core-8.5.2-javadoc.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-8.5.2-RC1-rev384dadd9141cec3f848d8c416315dc2384749814/solr/maven/org/apache/solr/solr-core/8.5.2/solr-core-8.5.2-javadoc.jar.asc (added)
+++ dev/lucene/lucene-solr-8.5.2-RC1-rev384dadd9141cec3f848d8c416315dc2384749814/solr/maven/org/apache/solr/solr-core/8.5.2/solr-core-8.5.2-javadoc.jar.asc Wed May 20 17:46:21 2020
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCAAdFiEEhu25wzuFFyKOiKj5PkjAxu82K54FAl7EJL4ACgkQPkjAxu82
+K564Hg/+Ng/aV47J5+A+5iVBwGWGoOji4BlX9ixvxUZvbyMLOUZCm16F3L9N5llO
+5xpZrAMsPasEwAjI7tEvDNd29NeHSUh8EjkTZBruax82JSey7SGE+Ruy69l0V8rR
+A66cFN5SPN6CJkHd81lBUEa+ZqfRCz6m/MwJ8g6iP48rAqDFlumYHO/gMeBtzc4f
+KJhMDdAPKCHeAhDqRWIK0NsXjLsC1DmYpaHzzBdjqLu3IvbVI+jJLE5WHAYvPJql
+0jcr6arg9gfvXYWP2HoqX4gsLeGXtUGxB8llM2GA3BW1ThZRN24bQdDiM4G3s0MB
+6eC6/kWejtrR7iI3xZEaqWG0dgQGE6H/RFUwJwpwazzcDxCV7fveCVOgYVz2UWny
+pq+4c80muAEeIMQJsNaYjI0C2hPEgH6dZJ37+nV/0aZk+rzUfOxbO3jfkdk308oj
+aywD1chAeH8LTMsV8Zy2E+4rjZWePEVOlGjV5nhPs52RrsKTZ6QL+EdQ4O1SqR2Z
+SlIlDnsbhAKapQCynj2wGs0XMxyz4a3SR4F4cyqx+PR2jwTFqzM/y6bz4nplfq9v
+l5BMi/qObRPpRkk9KHGHprnIeRmsLtzrn58p2YME5szZwEIDoKsrkt5y491R7Q7a
+D+kkSPsbpI3kdBUJZe+x81SowdFgwgQ9rQTTMryjvJupcdGr3Y4=
+=aB6X
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-8.5.2-RC1-rev384dadd9141cec3f848d8c416315dc2384749814/solr/maven/org/apache/solr/solr-core/8.5.2/solr-core-8.5.2-javadoc.jar.md5
==============================================================================
--- dev/lucene/lucene-solr-8.5.2-RC1-rev384dadd9141cec3f848d8c416315dc2384749814/solr/maven/org/apache/solr/solr-core/8.5.2/solr-core-8.5.2-javadoc.jar.md5 (added)
+++ dev/lucene/lucene-solr-8.5.2-RC1-rev384dadd9141cec3f848d8c416315dc2384749814/solr/maven/org/apache/solr/solr-core/8.5.2/solr-core-8.5.2-javadoc.jar.md5 Wed May 20 17:46:21 2020
@@ -0,0 +1 @@
+baad61d45affc63f41b78deb1c0c9966
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.5.2-RC1-rev384dadd9141cec3f848d8c416315dc2384749814/solr/maven/org/apache/solr/solr-core/8.5.2/solr-core-8.5.2-javadoc.jar.sha1
==============================================================================
--- dev/lucene/lucene-solr-8.5.2-RC1-rev384dadd9141cec3f848d8c416315dc2384749814/solr/maven/org/apache/solr/solr-core/8.5.2/solr-core-8.5.2-javadoc.jar.sha1 (added)
+++ dev/lucene/lucene-solr-8.5.2-RC1-rev384dadd9141cec3f848d8c416315dc2384749814/solr/maven/org/apache/solr/solr-core/8.5.2/solr-core-8.5.2-javadoc.jar.sha1 Wed May 20 17:46:21 2020
@@ -0,0 +1 @@
+d81e7c6fdb3ee1adc622c26a87c03e72c7e56fcc
\ No newline at end of file

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

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

Added: dev/lucene/lucene-solr-8.5.2-RC1-rev384dadd9141cec3f848d8c416315dc2384749814/solr/maven/org/apache/solr/solr-core/8.5.2/solr-core-8.5.2-sources.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-8.5.2-RC1-rev384dadd9141cec3f848d8c416315dc2384749814/solr/maven/org/apache/solr/solr-core/8.5.2/solr-core-8.5.2-sources.jar.asc (added)
+++ dev/lucene/lucene-solr-8.5.2-RC1-rev384dadd9141cec3f848d8c416315dc2384749814/solr/maven/org/apache/solr/solr-core/8.5.2/solr-core-8.5.2-sources.jar.asc Wed May 20 17:46:21 2020
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCAAdFiEEhu25wzuFFyKOiKj5PkjAxu82K54FAl7EJL4ACgkQPkjAxu82
+K559bxAAlmYEERpB0Pza8gucRVQtJusd+MLNSswnK3eBz+r+Cys24RepFwYdS7v+
+3t/xiDm+47ZaRU8uvgA7pIwKvtPSNX4mwwJxPCvLol8m7jM1mLtMq0vwvSuo/ViW
++vPSHa25RJclDaqArOzVQdpSQNeeH34niCNpIBn5fDupVYws0MxRoJSi8uTyca8h
+6SCoRBQFGSNsPHy8legysAgnJ88ent2hU/ul0L+7+tp8FAyyHZeMXhJQ6G83BHZx
+18bts+2RHCNiaM/tsdYJ5vtJERtyp5mmavJ9B+1gK6oqZQVKljN+OIZuQJEiRbOQ
+Nw53oMcY/04At1Wru0utYZC9qWS0e4cvkpEUexWquCX/6eH/ZdkzT/xBfWp31FfF
+eRB5s9rhbAQELNaDxUIANK7jpHnVr1Ee2xCZzcUvPeQcOPlzmCtjSecb6q2Ki30O
+HC0sLyk3ZLntYDmo0Ar48BA5FRSz9isVMTeDG4ZTuU7vQacCXNfAMT5mpQ2gXmte
+Iz+6BCunJPJ2HIPrqFnvWO6hwg0Y2bmp4JvPSEu6wZJoZknR2Ebir9cYmDWJuMHc
+B3BPp5sagfXgAcmjOFd6h0ECD+X/bbAB4LRfHgXOog90O4YuAmxLC6nsgTi3mv+p
+hHAvYjkzQsMm18eBr1gAoXuZriovTp6JAFAr5jFL1Y1UZ1PYd40=
+=ly5z
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-8.5.2-RC1-rev384dadd9141cec3f848d8c416315dc2384749814/solr/maven/org/apache/solr/solr-core/8.5.2/solr-core-8.5.2-sources.jar.md5
==============================================================================
--- dev/lucene/lucene-solr-8.5.2-RC1-rev384dadd9141cec3f848d8c416315dc2384749814/solr/maven/org/apache/solr/solr-core/8.5.2/solr-core-8.5.2-sources.jar.md5 (added)
+++ dev/lucene/lucene-solr-8.5.2-RC1-rev384dadd9141cec3f848d8c416315dc2384749814/solr/maven/org/apache/solr/solr-core/8.5.2/solr-core-8.5.2-sources.jar.md5 Wed May 20 17:46:21 2020
@@ -0,0 +1 @@
+6ba8ccc3f6ae752e6f63bfdf7ae56c34
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.5.2-RC1-rev384dadd9141cec3f848d8c416315dc2384749814/solr/maven/org/apache/solr/solr-core/8.5.2/solr-core-8.5.2-sources.jar.sha1
==============================================================================
--- dev/lucene/lucene-solr-8.5.2-RC1-rev384dadd9141cec3f848d8c416315dc2384749814/solr/maven/org/apache/solr/solr-core/8.5.2/solr-core-8.5.2-sources.jar.sha1 (added)
+++ dev/lucene/lucene-solr-8.5.2-RC1-rev384dadd9141cec3f848d8c416315dc2384749814/solr/maven/org/apache/solr/solr-core/8.5.2/solr-core-8.5.2-sources.jar.sha1 Wed May 20 17:46:21 2020
@@ -0,0 +1 @@
+b6613be9dbdf07f4d0b922b7bb1f21d88690ac66
\ No newline at end of file

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

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

Added: dev/lucene/lucene-solr-8.5.2-RC1-rev384dadd9141cec3f848d8c416315dc2384749814/solr/maven/org/apache/solr/solr-core/8.5.2/solr-core-8.5.2.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-8.5.2-RC1-rev384dadd9141cec3f848d8c416315dc2384749814/solr/maven/org/apache/solr/solr-core/8.5.2/solr-core-8.5.2.jar.asc (added)
+++ dev/lucene/lucene-solr-8.5.2-RC1-rev384dadd9141cec3f848d8c416315dc2384749814/solr/maven/org/apache/solr/solr-core/8.5.2/solr-core-8.5.2.jar.asc Wed May 20 17:46:21 2020
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCAAdFiEEhu25wzuFFyKOiKj5PkjAxu82K54FAl7EJL4ACgkQPkjAxu82
+K54djxAArtNBULpqCUszHKLEbNM1FQFF6s+ubFn5cNH4ltY/RK3hHjWsN6SQL2q/
+dpJ1B8QOcchO9cG/1d4d07kAzPCqnhAX1w00STXS/owlnIiwzh0O/zuOLnrQyuKS
+yPtWDWCQmhCpp+uWkyVXC4j8KqfyrEkLS1fAgzXJfSG7Ir9BKZ4sH9H5X1P2PrAu
+HSSGFUd+pu738Xnq2EzI3GIDI+d75h3aMnxKZfvsywNcvHS1vH+jbGAuKU0qbn/H
+UwixiXGlqYc1ElSBTfArTDO6vR2OMsGvDrMZuzvtMejqJYtc5Nt/ArxIBpsrT1vH
+x7tUpoNW5JYb3vtXm8FbuORgm7jDHhkoxYJBZt6s2tnhl50m0b0z2pHTN39PZm6Z
+63PVR0kNcKPalYXNq6RwIJhI+dY1XL8r8QR+mUKzW6bPsKBYoQCYw+Vu/eZRZudJ
+L2yITdzS0VvzvkNuZhV8npYjPRY/ZMKd1OuiZMxXyUJl10YBfLPk11Oymldqr0Nz
+EqMoYCaGRDISquP5JGkP3oIWlV1mPll/HYk5r7freND4NMFwtbXo3/FfKFW23b7J
+LxCNQkG84bPeuqmDYx023ksggT3RhYG8M35/1EnRfECXnpCvuSu+SqTbgXJRXgwu
+1JEA7W/AjNQXKpE+WhdIPWBPUmrSmmr8eLpOF7ZwUin23fXQ7tQ=
+=Adt+
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-8.5.2-RC1-rev384dadd9141cec3f848d8c416315dc2384749814/solr/maven/org/apache/solr/solr-core/8.5.2/solr-core-8.5.2.jar.md5
==============================================================================
--- dev/lucene/lucene-solr-8.5.2-RC1-rev384dadd9141cec3f848d8c416315dc2384749814/solr/maven/org/apache/solr/solr-core/8.5.2/solr-core-8.5.2.jar.md5 (added)
+++ dev/lucene/lucene-solr-8.5.2-RC1-rev384dadd9141cec3f848d8c416315dc2384749814/solr/maven/org/apache/solr/solr-core/8.5.2/solr-core-8.5.2.jar.md5 Wed May 20 17:46:21 2020
@@ -0,0 +1 @@
+d7db751359870e9f98080d86ab6c9a8c
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.5.2-RC1-rev384dadd9141cec3f848d8c416315dc2384749814/solr/maven/org/apache/solr/solr-core/8.5.2/solr-core-8.5.2.jar.sha1
==============================================================================
--- dev/lucene/lucene-solr-8.5.2-RC1-rev384dadd9141cec3f848d8c416315dc2384749814/solr/maven/org/apache/solr/solr-core/8.5.2/solr-core-8.5.2.jar.sha1 (added)
+++ dev/lucene/lucene-solr-8.5.2-RC1-rev384dadd9141cec3f848d8c416315dc2384749814/solr/maven/org/apache/solr/solr-core/8.5.2/solr-core-8.5.2.jar.sha1 Wed May 20 17:46:21 2020
@@ -0,0 +1 @@
+a8d80ffe0f316573d79f0de711809ddc5b9b52e8
\ No newline at end of file