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 [17/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-langid/8.5.2/solr-langid-8.5.2.pom
==============================================================================
--- dev/lucene/lucene-solr-8.5.2-RC1-rev384dadd9141cec3f848d8c416315dc2384749814/solr/maven/org/apache/solr/solr-langid/8.5.2/solr-langid-8.5.2.pom (added)
+++ dev/lucene/lucene-solr-8.5.2-RC1-rev384dadd9141cec3f848d8c416315dc2384749814/solr/maven/org/apache/solr/solr-langid/8.5.2/solr-langid-8.5.2.pom Wed May 20 17:46:21 2020
@@ -0,0 +1,782 @@
+<!--
+  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-langid</artifactId>
+  <packaging>jar</packaging>
+  <name>Apache Solr Language Identifier</name>
+  <description>
+    This module is intended to be used while indexing documents.
+    It is implemented as an UpdateProcessor to be placed in an UpdateChain.
+    Its purpose is to identify language from documents and tag the document with language code.
+  </description>
+  <properties>
+    <module-directory>solr/contrib/langid</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.cybozu.labs</groupId>
+      <artifactId>langdetect</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.arnx</groupId>
+      <artifactId>jsonic</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.opennlp</groupId>
+      <artifactId>opennlp-tools</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>
+    <resources>
+      <resource>
+        <directory>${module-path}/src/resources</directory>
+      </resource>
+    </resources>
+    <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-langid/8.5.2/solr-langid-8.5.2.pom.asc
==============================================================================
--- dev/lucene/lucene-solr-8.5.2-RC1-rev384dadd9141cec3f848d8c416315dc2384749814/solr/maven/org/apache/solr/solr-langid/8.5.2/solr-langid-8.5.2.pom.asc (added)
+++ dev/lucene/lucene-solr-8.5.2-RC1-rev384dadd9141cec3f848d8c416315dc2384749814/solr/maven/org/apache/solr/solr-langid/8.5.2/solr-langid-8.5.2.pom.asc Wed May 20 17:46:21 2020
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCAAdFiEEhu25wzuFFyKOiKj5PkjAxu82K54FAl7EJMEACgkQPkjAxu82
+K56IfQ//f4jsOKGbKkbhkHkljq5Us1JKtFv3nRbyRVmyNLmia6WGl06Rz8yCumr/
+tZi+27c5ehVCfZm95NaJUISJbbCcnaE3lWZkqFUzDwxU8rkILnBqsEX6AVecKPbj
+1/cfawFawp1JbFadivS7ZHrHneetyqdyg8FZ0N24ya2zzpBeM89Dq2pDXue+B1xH
+fVGThm2O+lNp0aCUHnT9/mNv8MMFLGBiHuwkeLKT8BPtql37//w037yyfx4BWMZX
+1bwybMhxQ49rwMVzrs7E7AvuzSUEXAvhk/bfkl64yK6+folLFFbdgHELm2aIoTKJ
+ZZYCyeTaYbVzLYqLNOwW98Ve6fl25PY6KzVM7kYEAZ2/ihiW7/9iq8Mezb38Gx91
+da69YpNjkcn3lBeqDl0SVzP52DZmjSovvuWWT+AZ7EWY/3jfrwjp2thZeWSaJ9zp
+SOqOzRd/cAUpIwjJtouvpR08dcmCb6G7In84FPCPYOeAppEAZdEpZsmjtOwKrruA
+kwU7TnSXs7gGN6Xf8IrU/qYJysbaCWiXqN4zMTXFiPGATW21sVUmcitaBm8yXbty
+PLI1VGe+IcAIxhdXUzyWAdLS3HkC4Ye4vGQyfSaqj+GCrcUPgIVQZm+kBoBubqnP
+UOIHnAEpelF1zzbSx76AFNoB8HdtPYaUb6mnBlcBUIM9Sh46VN0=
+=PXvx
+-----END PGP SIGNATURE-----

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

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

Added: dev/lucene/lucene-solr-8.5.2-RC1-rev384dadd9141cec3f848d8c416315dc2384749814/solr/maven/org/apache/solr/solr-langid/maven-metadata.xml
==============================================================================
--- dev/lucene/lucene-solr-8.5.2-RC1-rev384dadd9141cec3f848d8c416315dc2384749814/solr/maven/org/apache/solr/solr-langid/maven-metadata.xml (added)
+++ dev/lucene/lucene-solr-8.5.2-RC1-rev384dadd9141cec3f848d8c416315dc2384749814/solr/maven/org/apache/solr/solr-langid/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-langid</artifactId>
+  <version>8.5.2</version>
+  <versioning>
+    <versions>
+      <version>8.5.2</version>
+    </versions>
+    <lastUpdated>20200519182553</lastUpdated>
+  </versioning>
+</metadata>

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

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

Added: dev/lucene/lucene-solr-8.5.2-RC1-rev384dadd9141cec3f848d8c416315dc2384749814/solr/maven/org/apache/solr/solr-ltr/8.5.2/solr-ltr-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-ltr/8.5.2/solr-ltr-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-ltr/8.5.2/solr-ltr-8.5.2-javadoc.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-8.5.2-RC1-rev384dadd9141cec3f848d8c416315dc2384749814/solr/maven/org/apache/solr/solr-ltr/8.5.2/solr-ltr-8.5.2-javadoc.jar.asc (added)
+++ dev/lucene/lucene-solr-8.5.2-RC1-rev384dadd9141cec3f848d8c416315dc2384749814/solr/maven/org/apache/solr/solr-ltr/8.5.2/solr-ltr-8.5.2-javadoc.jar.asc Wed May 20 17:46:21 2020
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCAAdFiEEhu25wzuFFyKOiKj5PkjAxu82K54FAl7EJMEACgkQPkjAxu82
+K54hphAAu7lFOTmJjFuATS06hFdzithC8jS1jSCfBGLqghUckKviJ+Vc69dMjHH7
+2W42+jdBL1ILDmEC8bdqOFJN3mEEYisq0l8bVBGKPKgdw7lG3n45/h/EJdvHI1sn
+nTnLN3SPb/IaGuukSTAWW6aSYOcwV5SHbh3g8Y6OC3lWLZ3XR/Xd1HR+MvtZjt8U
+hVt3hcDlwvhHv4Gzl66+XzUt2Wn7dDNxchuEViYSyu5lz1yIEBLCee1uCLXokzSo
+WUwvIMEyibN224y8NP8UtdX24ZhLsdUsNS4BAcOtsTIhPQvLERzYwYdpqCazPUrX
+jujhYk/CHBvqL5zkHIgj8ktC5ljaA+PTSr38B5Cgn1ryqKAfWAHBD4a4yYz+oaIh
+qwVLi5UTAF6WTYDgEbSFzpEzkrNyG7lNMViFUqYZ9EOoxrruYIZ305uqz6dX7dMF
+T+Rk4jLxWRdyY9ilIPsM6OJC/wSoHU6gITaA9EM+1CvsY7empF04gxZH/2BI1Etk
+O1pSWV1efZ6Cm5U9pfuEUvGCZx5iYx1GqjtXgnFudgubIJrvqYNKTJhA4yWIa2Br
+Ja5U5Tg5kg2A+TCoJbEMODoNTmlR8SSp69gT9YpT2nGXE/1+zqncU5CznZRuMDna
+1ERFC/PEn/93zkBexdc5+YGjmORYUsEW2Zr3sg2/ytgegoZKbqo=
+=tc6N
+-----END PGP SIGNATURE-----

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

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

Added: dev/lucene/lucene-solr-8.5.2-RC1-rev384dadd9141cec3f848d8c416315dc2384749814/solr/maven/org/apache/solr/solr-ltr/8.5.2/solr-ltr-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-ltr/8.5.2/solr-ltr-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-ltr/8.5.2/solr-ltr-8.5.2-sources.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-8.5.2-RC1-rev384dadd9141cec3f848d8c416315dc2384749814/solr/maven/org/apache/solr/solr-ltr/8.5.2/solr-ltr-8.5.2-sources.jar.asc (added)
+++ dev/lucene/lucene-solr-8.5.2-RC1-rev384dadd9141cec3f848d8c416315dc2384749814/solr/maven/org/apache/solr/solr-ltr/8.5.2/solr-ltr-8.5.2-sources.jar.asc Wed May 20 17:46:21 2020
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCAAdFiEEhu25wzuFFyKOiKj5PkjAxu82K54FAl7EJMEACgkQPkjAxu82
+K56WRRAAo7+nyKtAVNEShvhlBY82hM5p/w82dRKXEOWn7PzUQLQlHxYmFkkO2ZCM
+T2iIJ41fF5pej+EBDMO4x4QnRUQeQxFgWvCHHskwV1l6xvwE2F5GjZRZ0ft+5Igj
+vuAQXDcq3kouetn/JYohpt94EPYR//lTXo/Ymk7I6xDjT6R3a7Lx0w0pCIJhiU0V
+0GSrA0DkKshrcC4vTKeiMgf/Nqlw2oQC30spdrG0vzC9Gpcany3sXdw1VinCkxiT
+pGIvKrnOnpdzAexgpdH+g+c7ky65pilW7CePhYWVUcE/+7wZ697OqtHoohk53az7
+rwvJz6exqrzt+2fGQolKaz8+glP/0E3qMAnrtH6ygdX8wZ2eV5ubrjjksNqH0qff
+L+vIr4JZT5s5djrs8ecwUPqvne5x5JjkJKXT/Uk1rSJ5ozwHH8m7YJvZsSHsUbIL
+3miLU9YLl5Cpda2zdKQPH++2ondlUEZXR1MmCryRpB78WAKiwmwlYxABtmIoetPF
+wkTHNnzNt11oefi5Qk4+MVdi76CGUxRf8RcNomREDPHUnX4hUknBJVR06FK9JmPq
+LNIdseVSejKV6C3D8QpcOTZDPlvGbafh1ma5TLnxAKZT/4bEeCBbY+e5PqSiLH54
+VM8BP5GD3P+6vrII/Iqygk65VB99KBL8HkCN1zH0TC03RuQAU+8=
+=YXde
+-----END PGP SIGNATURE-----

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

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

Added: dev/lucene/lucene-solr-8.5.2-RC1-rev384dadd9141cec3f848d8c416315dc2384749814/solr/maven/org/apache/solr/solr-ltr/8.5.2/solr-ltr-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-ltr/8.5.2/solr-ltr-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-ltr/8.5.2/solr-ltr-8.5.2.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-8.5.2-RC1-rev384dadd9141cec3f848d8c416315dc2384749814/solr/maven/org/apache/solr/solr-ltr/8.5.2/solr-ltr-8.5.2.jar.asc (added)
+++ dev/lucene/lucene-solr-8.5.2-RC1-rev384dadd9141cec3f848d8c416315dc2384749814/solr/maven/org/apache/solr/solr-ltr/8.5.2/solr-ltr-8.5.2.jar.asc Wed May 20 17:46:21 2020
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCAAdFiEEhu25wzuFFyKOiKj5PkjAxu82K54FAl7EJMIACgkQPkjAxu82
+K56iJxAAuvlQl8yhoeVu2zyYd9z8qwKm1WDYmeMdCqUiQ+rRdsYGbZezbA+onjQo
+OyEx0/8V/JcvoxnfSJ4zsWBgq+s7wKo3ThG4IRCaYa+Cd3lgwUj8L0mmTQCFyPfj
++Nk/LdTjk/Z+NHQ493toEFcexMiOpt5fL5utBkocNgH9gPoULNqauQBrNzC9XyOU
+NLLgYNmelFI1PP2Zp30s40klED03yyo+64Bi9vOn84UlDbadV1kymacjqUQQ+msa
+hc9l3pOziKCURvUZxJXvx9d+HET6j88bT23JQSI26LNqN1hcdtfNVUjbJ5s66Yi9
+2uXIQUdHokCO6TWDKaNBJwUuHI2kMJ7mPhj9RU30FuJmwvPkUnes+s581QIwe3KM
+vyZWYzeZVnaqLsIXIhveKuPFQCJodHqHTRa04r+b/5aoApoHM3N3hZ50opzNntUi
+b3T+DB9/aJ8BATvNqxL+pjN+1m72MHrUf1+uinpEbmEHw0K84ZEUThjV1eRslJ0W
+Z2ur9oyZfW0Le73Z1ukeSFdyLUeIj9QD3TwZmCyOFqJM/K6RqYS73EWLwLj0iwVe
+KK8bo13wdlOrsBetL2gDgawVjdoHbcsw9I/y87fAL8nN76DWjRMAKbe8a4I3FT3G
+vGsjjop4u3E+1kDtS3qBu4tIH1W1Sn2Bzo5s6wZV+Cr//lhlVYA=
+=OmwG
+-----END PGP SIGNATURE-----

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

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

Added: dev/lucene/lucene-solr-8.5.2-RC1-rev384dadd9141cec3f848d8c416315dc2384749814/solr/maven/org/apache/solr/solr-ltr/8.5.2/solr-ltr-8.5.2.pom
==============================================================================
--- dev/lucene/lucene-solr-8.5.2-RC1-rev384dadd9141cec3f848d8c416315dc2384749814/solr/maven/org/apache/solr/solr-ltr/8.5.2/solr-ltr-8.5.2.pom (added)
+++ dev/lucene/lucene-solr-8.5.2-RC1-rev384dadd9141cec3f848d8c416315dc2384749814/solr/maven/org/apache/solr/solr-ltr/8.5.2/solr-ltr-8.5.2.pom Wed May 20 17:46:21 2020
@@ -0,0 +1,602 @@
+<!--
+  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-ltr</artifactId>
+  <packaging>jar</packaging>
+  <name>Apache Solr Learning to Rank Package</name>
+  <description>
+    Apache Solr Learning to Rank Package
+  </description>
+  <properties>
+    <module-directory>solr/contrib/ltr</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.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.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>jul-to-slf4j</artifactId>
+      <optional>true</optional>
+    </dependency>
+    <dependency>
+      <groupId>org.slf4j</groupId>
+      <artifactId>slf4j-api</artifactId>
+    </dependency>
+    
+        <dependency>
+      <groupId>net.bytebuddy</groupId>
+      <artifactId>byte-buddy</artifactId>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.mockito</groupId>
+      <artifactId>mockito-core</artifactId>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.objenesis</groupId>
+      <artifactId>objenesis</artifactId>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.slf4j</groupId>
+      <artifactId>jcl-over-slf4j</artifactId>
+      <scope>test</scope>
+    </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-ltr/8.5.2/solr-ltr-8.5.2.pom.asc
==============================================================================
--- dev/lucene/lucene-solr-8.5.2-RC1-rev384dadd9141cec3f848d8c416315dc2384749814/solr/maven/org/apache/solr/solr-ltr/8.5.2/solr-ltr-8.5.2.pom.asc (added)
+++ dev/lucene/lucene-solr-8.5.2-RC1-rev384dadd9141cec3f848d8c416315dc2384749814/solr/maven/org/apache/solr/solr-ltr/8.5.2/solr-ltr-8.5.2.pom.asc Wed May 20 17:46:21 2020
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCAAdFiEEhu25wzuFFyKOiKj5PkjAxu82K54FAl7EJMIACgkQPkjAxu82
+K54nJQ//ciqAZj03nkvE46I9jfeRSGIwV/kCL/lAtDexNgqMtsZtSEmfPxGqVGM0
++F1ckDoQmBjuf51n/Bai6ST3bFh7YOHhbeEN++sdJDOIOXzI5d6eEhFDOGkjeiyX
+RdjU+XDeAa3B6wMnrrWdNU+BLhZUuN8yfm3eOGmOjB8urubG93DsXbuBofensnwq
+nmdxaxbKo9f8XsUQ7OZFb9itxhENc0AJjpHuWb9Ez2u2V42PhLY/coDtvGrRWwMk
+6B827wUMfK/ZLKn/nuH6cEkcvaoh6eWiwIitQ/vMIJgIvkXN4JvUuQ+pofVev3//
+eLvGm9rqXT962k1jtDOBcAcjAM0Ho2Vv+p+dOk3zvOX1D5Q/7Gfx+It+GD9+MynP
+FKWXuFGtxykVEfOpBD5q2TYp2doMsFtkpSX37sZntYTusn9z1t5ZrhrAD4luECdd
+dQTNCQ5rahl8Dv6Z8Xbz3tGMC2dGyU2Ek5NfjGgf6sj2u/Jw0K6rC4z0yleoZJJw
+XJUKX6j+4X1e6JqTLCE2KJeuz7x3iDWbdntvcT/zZloOWX9cEo71xaa31GyY9lce
+51DBiShfc7i7IWQIXaBJEPBZlFKd8PyoxkgjFajhAx2bC3+r23f9s2UbQxVPvlGW
+En6BH1ql+TzgulhbuKu91FW9c0zKDa9GaPP8MrRw4bDMRssjCCk=
+=+ln6
+-----END PGP SIGNATURE-----

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

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

Added: dev/lucene/lucene-solr-8.5.2-RC1-rev384dadd9141cec3f848d8c416315dc2384749814/solr/maven/org/apache/solr/solr-ltr/maven-metadata.xml
==============================================================================
--- dev/lucene/lucene-solr-8.5.2-RC1-rev384dadd9141cec3f848d8c416315dc2384749814/solr/maven/org/apache/solr/solr-ltr/maven-metadata.xml (added)
+++ dev/lucene/lucene-solr-8.5.2-RC1-rev384dadd9141cec3f848d8c416315dc2384749814/solr/maven/org/apache/solr/solr-ltr/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-ltr</artifactId>
+  <version>8.5.2</version>
+  <versioning>
+    <versions>
+      <version>8.5.2</version>
+    </versions>
+    <lastUpdated>20200519182556</lastUpdated>
+  </versioning>
+</metadata>

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

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

Added: dev/lucene/lucene-solr-8.5.2-RC1-rev384dadd9141cec3f848d8c416315dc2384749814/solr/maven/org/apache/solr/solr-parent/8.5.2/solr-parent-8.5.2.pom
==============================================================================
--- dev/lucene/lucene-solr-8.5.2-RC1-rev384dadd9141cec3f848d8c416315dc2384749814/solr/maven/org/apache/solr/solr-parent/8.5.2/solr-parent-8.5.2.pom (added)
+++ dev/lucene/lucene-solr-8.5.2-RC1-rev384dadd9141cec3f848d8c416315dc2384749814/solr/maven/org/apache/solr/solr-parent/8.5.2/solr-parent-8.5.2.pom Wed May 20 17:46:21 2020
@@ -0,0 +1,186 @@
+<!--
+  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.lucene</groupId>
+    <artifactId>lucene-solr-grandparent</artifactId>
+    <version>8.5.2</version>
+    <relativePath>../pom.xml</relativePath>
+  </parent>
+  <groupId>org.apache.solr</groupId>
+  <artifactId>solr-parent</artifactId>
+  <packaging>pom</packaging>
+  <name>Apache Solr parent POM</name>
+  <description>Apache Solr parent POM</description>
+  <modules>
+    <module>core</module>
+    <module>solrj</module>
+    <module>test-framework</module>
+    <module>contrib</module>
+  </modules>
+  <properties>
+    <module-directory>solr</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>
+  <issueManagement>
+    <system>JIRA</system>
+    <url>https://issues.apache.org/jira/browse/SOLR</url>
+  </issueManagement>
+  <mailingLists>
+    <mailingList>
+      <name>Solr User List</name>
+      <subscribe>solr-user-subscribe@lucene.apache.org</subscribe>
+      <unsubscribe>solr-user-unsubscribe@lucene.apache.org</unsubscribe>
+      <archive>
+        https://mail-archives.apache.org/mod_mbox/solr-user/
+      </archive>
+    </mailingList>
+    <mailingList>
+      <name>Java Developer List</name>
+      <subscribe>dev-subscribe@lucene.apache.org</subscribe>
+      <unsubscribe>dev-unsubscribe@lucene.apache.org</unsubscribe>
+      <archive>https://mail-archives.apache.org/mod_mbox/lucene-dev/</archive>
+    </mailingList>
+    <mailingList>
+      <name>Java Commits List</name>
+      <subscribe>commits-subscribe@lucene.apache.org</subscribe>
+      <unsubscribe>commits-unsubscribe@lucene.apache.org</unsubscribe>
+      <archive>
+        https://mail-archives.apache.org/mod_mbox/lucene-java-commits/
+      </archive>
+    </mailingList>
+  </mailingLists>
+  <inceptionYear>2006</inceptionYear>
+  <repositories>
+    <repository>
+      <id>maven-restlet</id>
+      <name>Public online Restlet repository</name>
+      <url>https://maven.restlet.com</url>
+    </repository>
+    <repository>
+      <id>releases.cloudera.com</id>
+      <name>Cloudera Releases</name>
+      <url>https://repository.cloudera.com/artifactory/libs-release-local/</url>
+    </repository>
+  </repositories>
+  <build>
+    <pluginManagement>
+      <plugins>
+        <plugin>
+          <groupId>org.apache.maven.plugins</groupId>
+          <artifactId>maven-javadoc-plugin</artifactId>
+          <configuration>
+            <overview/>
+            <windowtitle>${project.name} ${project.version} API (${now.version})</windowtitle>
+            <doctitle>${project.name} ${project.version} API (${now.version})</doctitle>
+          </configuration>
+        </plugin>
+        <plugin>
+          <groupId>org.apache.maven.plugins</groupId>
+          <artifactId>maven-surefire-plugin</artifactId>
+          <configuration>
+            <systemPropertyVariables>
+              <tests.disableHdfs>${tests.disableHdfs}</tests.disableHdfs>
+            </systemPropertyVariables>
+          </configuration>
+        </plugin>
+      </plugins>
+    </pluginManagement>
+    <plugins>
+      <plugin>
+        <groupId>de.thetaphi</groupId>
+        <artifactId>forbiddenapis</artifactId>
+        <executions>
+          <execution>
+            <id>solr-shared-check-forbidden-apis</id>
+            <configuration>
+              <!-- for simplicty with servlet-api and commons-io checks, disable this: -->
+              <failOnUnresolvableSignatures>false</failOnUnresolvableSignatures>
+              <bundledSignatures>
+                <bundledSignature>jdk-unsafe</bundledSignature>
+                <bundledSignature>jdk-deprecated</bundledSignature>
+                <bundledSignature>jdk-non-portable</bundledSignature>
+                <bundledSignature>jdk-reflection</bundledSignature>
+                <bundledSignature>commons-io-unsafe-2.6</bundledSignature>
+              </bundledSignatures>
+              <signaturesFiles>
+                <signaturesFile>${top-level}/lucene/tools/forbiddenApis/base.txt</signaturesFile>
+                <signaturesFile>${top-level}/lucene/tools/forbiddenApis/servlet-api.txt</signaturesFile>
+                <signaturesFile>${top-level}/lucene/tools/forbiddenApis/solr.txt</signaturesFile>
+              </signaturesFiles>
+            </configuration>
+            <goals>
+              <goal>check</goal>
+            </goals>
+          </execution>
+          <execution>
+            <id>solr-shared-test-check-forbidden-apis</id>
+            <configuration>
+              <!-- for simplicty with servlet-api and commons-io checks, disable this: -->
+              <failOnUnresolvableSignatures>false</failOnUnresolvableSignatures>
+              <bundledSignatures>
+                <bundledSignature>jdk-unsafe</bundledSignature>
+                <bundledSignature>jdk-deprecated</bundledSignature>
+                <bundledSignature>jdk-non-portable</bundledSignature>
+                <bundledSignature>jdk-reflection</bundledSignature>
+                <bundledSignature>commons-io-unsafe-2.6</bundledSignature>
+              </bundledSignatures>
+              <signaturesFiles>
+                <signaturesFile>${top-level}/lucene/tools/forbiddenApis/base.txt</signaturesFile>
+                <signaturesFile>${top-level}/lucene/tools/forbiddenApis/servlet-api.txt</signaturesFile>
+                <signaturesFile>${top-level}/lucene/tools/forbiddenApis/solr.txt</signaturesFile>
+                <signaturesFile>${top-level}/lucene/tools/forbiddenApis/tests.txt</signaturesFile>
+              </signaturesFiles>
+            </configuration>
+            <goals>
+              <goal>testCheck</goal>
+            </goals>
+          </execution>
+        </executions>
+      </plugin>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-surefire-plugin</artifactId>
+        <configuration>
+          <systemPropertyVariables>
+            <java.util.logging.config.file>${top-level}/solr/testlogging.properties</java.util.logging.config.file>
+          </systemPropertyVariables>
+        </configuration>
+      </plugin>
+    </plugins>
+  </build>
+  <profiles>
+    <profile>
+      <id>windows-tests-disableHdfs</id>
+      <activation>
+        <os><family>windows</family></os>
+      </activation>
+      <properties>
+        <tests.disableHdfs>true</tests.disableHdfs>
+      </properties>
+    </profile>
+  </profiles>
+</project>

Added: dev/lucene/lucene-solr-8.5.2-RC1-rev384dadd9141cec3f848d8c416315dc2384749814/solr/maven/org/apache/solr/solr-parent/8.5.2/solr-parent-8.5.2.pom.asc
==============================================================================
--- dev/lucene/lucene-solr-8.5.2-RC1-rev384dadd9141cec3f848d8c416315dc2384749814/solr/maven/org/apache/solr/solr-parent/8.5.2/solr-parent-8.5.2.pom.asc (added)
+++ dev/lucene/lucene-solr-8.5.2-RC1-rev384dadd9141cec3f848d8c416315dc2384749814/solr/maven/org/apache/solr/solr-parent/8.5.2/solr-parent-8.5.2.pom.asc Wed May 20 17:46:21 2020
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCAAdFiEEhu25wzuFFyKOiKj5PkjAxu82K54FAl7EJMIACgkQPkjAxu82
+K55YBBAAwbOBbZWvDfQF3r53g1C7HkxoV4oYI1I9DRg2PDvvsbpinWlgskQskV0u
+DcjAiRQe585fyfdpgFaqOJ56Abf8OLCKnrp98suvXjYCsR1sTvj94TijCyzhYr2g
++dhO5mXwFZFfUBfkugn6BKE3uWfWpKJu5WvDyYIBFx99jYv1UfU5guiOCR1IZbOf
+EkNGYAd8mQAyc6R/R7vvCybA9+lODPcCtI3EIO71gToxrdIVSjG+hE4eG/2vBHMB
+J6lzDRE6/dBD+TkF7yUvtPmITigRHArbUmSk18VIlXu9G2BzpuQb7buQwjLbGuda
+KYzPBRPhC+dqDh2bLTKqKyuAtamTTnXck29Idnlc3cXXfnbLnT0cUYcMfFn8AYLz
+wUYIhFw3PunlRMBoE05jQxvZ9F04bcZ7k32z+/s6hNdHILA6Xehm2jSXSCnniGAA
+Pn2fq/Lb95JMxGV2JN7bwQmVFIjbvaofqShA3pP5+w6PnHFrgYct/TsHY3rPtGj3
+xjA+UeYuT9pIQM+lnhSO+VqwY6QryFWxYGjJfr21haZHkdegSqjd5kI6lc8vZ6Dh
+QsUzyeTvz+PK7UkZSZ70H7lptQBRWAZpQR6Mv+oNC57PnJvqR1Xi1pNsJpUPR799
+t4ZgUAQj3vDzxdqp94eQjDXttrldEd5jW4ilVV87jTidqVDC+cU=
+=GSry
+-----END PGP SIGNATURE-----

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

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

Added: dev/lucene/lucene-solr-8.5.2-RC1-rev384dadd9141cec3f848d8c416315dc2384749814/solr/maven/org/apache/solr/solr-parent/maven-metadata.xml
==============================================================================
--- dev/lucene/lucene-solr-8.5.2-RC1-rev384dadd9141cec3f848d8c416315dc2384749814/solr/maven/org/apache/solr/solr-parent/maven-metadata.xml (added)
+++ dev/lucene/lucene-solr-8.5.2-RC1-rev384dadd9141cec3f848d8c416315dc2384749814/solr/maven/org/apache/solr/solr-parent/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-parent</artifactId>
+  <version>8.5.2</version>
+  <versioning>
+    <versions>
+      <version>8.5.2</version>
+    </versions>
+    <lastUpdated>20200519182523</lastUpdated>
+  </versioning>
+</metadata>

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

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

Added: dev/lucene/lucene-solr-8.5.2-RC1-rev384dadd9141cec3f848d8c416315dc2384749814/solr/maven/org/apache/solr/solr-prometheus-exporter/8.5.2/solr-prometheus-exporter-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-prometheus-exporter/8.5.2/solr-prometheus-exporter-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-prometheus-exporter/8.5.2/solr-prometheus-exporter-8.5.2-javadoc.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-8.5.2-RC1-rev384dadd9141cec3f848d8c416315dc2384749814/solr/maven/org/apache/solr/solr-prometheus-exporter/8.5.2/solr-prometheus-exporter-8.5.2-javadoc.jar.asc (added)
+++ dev/lucene/lucene-solr-8.5.2-RC1-rev384dadd9141cec3f848d8c416315dc2384749814/solr/maven/org/apache/solr/solr-prometheus-exporter/8.5.2/solr-prometheus-exporter-8.5.2-javadoc.jar.asc Wed May 20 17:46:21 2020
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCAAdFiEEhu25wzuFFyKOiKj5PkjAxu82K54FAl7EJMIACgkQPkjAxu82
+K57hQg//XVsuAFTUYzwsG1je1pd16aEXxafOFk42GRrDGCyObIhN5PK8KpusYx2H
+b/W8Y+53d4+j1kwXCswbHyfRoCt9vUbrdvU8vrO2brJlGP7yphdIrubW9grb+1a1
+UaOI/G4rHQsIKpeAI5z4lgmz5dStL/ME11Mbn4cvjH+0eJifrOruW/DLPPrTdVLv
+dHrzak54MkVVpA9E17eOMGnzCDMSvfbPooUdfm8IONkPc55Zyizq0KQ7a75T9LKn
+usMv3naVoYh7F8LrMW801fmnJO5ZdFT3Q4mdsWB+TRU+os94BZVae46JjUDgQ212
+o6N7k1K6iMPht7jfP5DkQsErehHkp+fasmD80vu2io5PUd2f1eGieqmoynWV/PCU
+RMbrLRrqEUVdlfHQYjO6OyRqnDJTwjr23/IwO/7qBOczgbelXGE6fIecV9URtGV2
+tojBUJAFefJgwhxSc8/qDt3aviqUL2+0AF5ZtZAXuyryXntKVg+KdqwI67rMwmcs
+CDV24md6yUuIQyCWqFBmJPTYj3TFdfc9kGFAi0VC6FXsWE7X3zKytZERlCYimm17
+MFgrOdl0RK/tP/+zzZTujxl9mXiEvKTkelLcQJfDRvYjHLwQKhHAsTU8wyZV9XHp
+fMzjS2a8NmMJuakoJ9zEH7FNRBayushHxdfhi09WB/KNE5pFZWs=
+=F01k
+-----END PGP SIGNATURE-----

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

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

Added: dev/lucene/lucene-solr-8.5.2-RC1-rev384dadd9141cec3f848d8c416315dc2384749814/solr/maven/org/apache/solr/solr-prometheus-exporter/8.5.2/solr-prometheus-exporter-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-prometheus-exporter/8.5.2/solr-prometheus-exporter-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-prometheus-exporter/8.5.2/solr-prometheus-exporter-8.5.2-sources.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-8.5.2-RC1-rev384dadd9141cec3f848d8c416315dc2384749814/solr/maven/org/apache/solr/solr-prometheus-exporter/8.5.2/solr-prometheus-exporter-8.5.2-sources.jar.asc (added)
+++ dev/lucene/lucene-solr-8.5.2-RC1-rev384dadd9141cec3f848d8c416315dc2384749814/solr/maven/org/apache/solr/solr-prometheus-exporter/8.5.2/solr-prometheus-exporter-8.5.2-sources.jar.asc Wed May 20 17:46:21 2020
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCAAdFiEEhu25wzuFFyKOiKj5PkjAxu82K54FAl7EJMIACgkQPkjAxu82
+K55U4A//eTPKLJTH0/3Bw20K1NhxS/VSDrxsLdfPBH8ilgGN4ATamYkzSqvbPReT
+hY/0cS1yohzY1NeiF9lsbzeOvQcXz9dVjxXvt4OMtwkAhyviY4E/ft1g0qF1dzhA
+PTzkMVutQwldzmPv9/+5LGZVLp/m9Izdh8LWICqopsgFi55hbx822di3clvNL9og
+lm38dgfbtFgMsSPaErjyXrcR6WHJgbUPOJb/BzuzFx+V/2F7uPCct1isxRza2n8I
+fIH9cXGCrUTJ1hZqcBuNvZxFLzE0AtF161vX7DPL72/usF9sRyKqnjZO3/X/Vjqp
+lEyDbOOkwazu7QIPKzDNPW/dOpcusFmgZceDVpn8lRCWl7VtXDm3aZ++x2Vjxg+G
+sicUm1r7MhI1SYAhTD5pIOiO8VeSD8yqfkGyQIsGrlTiXSTXswq+ksUrsY9HNaav
+yujYGPQZe6Wl0SJa5PAaWK/GkamWLhZ876Fbw/yV9J7GRVzYpj+a2gsO2vTq01ee
+r1SYEOnAfeCNDSTAaDSmWM+P89t97WUnnU6yNX8N4TAbi3zocjzjs7oDa7Kqjk3U
+DrSkC7gXmy2hw/Q9hCtRXVnHFXXnQ1ugPdc/doPZUzNFyINrWKMBxj8Xrp+SCNUs
+DWNfGx8wzhw+Ad1RpO4rF8Ht7nVcvQmukdin2f3fcFxRSmxVAwU=
+=D1SX
+-----END PGP SIGNATURE-----

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

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

Added: dev/lucene/lucene-solr-8.5.2-RC1-rev384dadd9141cec3f848d8c416315dc2384749814/solr/maven/org/apache/solr/solr-prometheus-exporter/8.5.2/solr-prometheus-exporter-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-prometheus-exporter/8.5.2/solr-prometheus-exporter-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-prometheus-exporter/8.5.2/solr-prometheus-exporter-8.5.2.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-8.5.2-RC1-rev384dadd9141cec3f848d8c416315dc2384749814/solr/maven/org/apache/solr/solr-prometheus-exporter/8.5.2/solr-prometheus-exporter-8.5.2.jar.asc (added)
+++ dev/lucene/lucene-solr-8.5.2-RC1-rev384dadd9141cec3f848d8c416315dc2384749814/solr/maven/org/apache/solr/solr-prometheus-exporter/8.5.2/solr-prometheus-exporter-8.5.2.jar.asc Wed May 20 17:46:21 2020
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCAAdFiEEhu25wzuFFyKOiKj5PkjAxu82K54FAl7EJMIACgkQPkjAxu82
+K56WFg/9FvTwLHalUSfHsdTHUL9Vz7T/gsVSdLgHK8goBR18auVF2BrRK/Bb7QYl
+4qi6ulvhpbo/7L5KiCkad4wY+wRnaNqmqUKS6cGdIH8E2RvAP//lVX1qnVMgIjTj
+dY5zTDMySSb+/UooLw2MXqJZ7PJQo27aD+9urNmjxcOazfXPJ1hnuGhVyxPwM2o2
+K0U3Vyf8FbQouA8oywpc/iI9uHxvHr1QVEZ2KoCFr/zIVBPODNq3gTQNl7KgEOGG
++QBweFXudSRDxPEaDRMFKE5eWzpCOeOCy+TgxsmoObwy3Sad1zWVDiUvT5FFToXG
+Xp9V3LEadjfHjIsYf3oDYCPPhE0oYnqfw9QXPGrhNRkc6o7S7NQauYO/n/0N0xRw
+JHQ2pmsG5YqKOYUI6n2nkTCeNdo1i7hizUuw0DiUc6E5vYjrA/Vg6zmpR9dWHTYk
+WraCfeVQZcSwMz06rZhYRMo8vNcOqH0JKRivBz2QK2x2MDovlrA0oIeAVwum9Isw
+rhUnrKDOXp5RCvwGA7d9+Op+tIuAqm/FQXcb+VbyaOojVZNJ4QOR4ljSvbE50Ir/
+SmPWy0kBaFH8xGwlkJsNbHTMCmhfnrag40A1f9ZZRNzFfiNQH7owUHfRCkKzIpkf
+0Qn0mm+sxaRwbgzR8waHZYWDNENdJSbUkDRWYfxBWv88NfSyxow=
+=JBlJ
+-----END PGP SIGNATURE-----

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

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