You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by iv...@apache.org on 2020/04/08 10:16:05 UTC

svn commit: r38855 [17/19] - in /dev/lucene/lucene-solr-8.5.1-RC1-revedb9fc409398f2c3446883f9f80595c884d245d0: ./ 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.1-RC1-revedb9fc409398f2c3446883f9f80595c884d245d0/solr/maven/org/apache/solr/solr-langid/8.5.1/solr-langid-8.5.1.pom
==============================================================================
--- dev/lucene/lucene-solr-8.5.1-RC1-revedb9fc409398f2c3446883f9f80595c884d245d0/solr/maven/org/apache/solr/solr-langid/8.5.1/solr-langid-8.5.1.pom (added)
+++ dev/lucene/lucene-solr-8.5.1-RC1-revedb9fc409398f2c3446883f9f80595c884d245d0/solr/maven/org/apache/solr/solr-langid/8.5.1/solr-langid-8.5.1.pom Wed Apr  8 10:16:00 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.1</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.1-RC1-revedb9fc409398f2c3446883f9f80595c884d245d0/solr/maven/org/apache/solr/solr-langid/8.5.1/solr-langid-8.5.1.pom.asc
==============================================================================
--- dev/lucene/lucene-solr-8.5.1-RC1-revedb9fc409398f2c3446883f9f80595c884d245d0/solr/maven/org/apache/solr/solr-langid/8.5.1/solr-langid-8.5.1.pom.asc (added)
+++ dev/lucene/lucene-solr-8.5.1-RC1-revedb9fc409398f2c3446883f9f80595c884d245d0/solr/maven/org/apache/solr/solr-langid/8.5.1/solr-langid-8.5.1.pom.asc Wed Apr  8 10:16:00 2020
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCAAdFiEE5YpvTVsrSKxm1eU71PGBiBpC+eYFAl6Nd5sACgkQ1PGBiBpC
++eZoBA//czP1gR6SWy00GusK62UV7oJyfKdhHqRr0sE9AZenCSVGZ6g76aPlHeqp
+wTs/5Uc3n3RqLIzupPvZSiReRBbGZ7imTwRDnccf109Iggf3B26Ek1+d5ISjWghH
+gjp7LT5yNEJnNWoEWO4lw4aTLiDG1zgH/J9hgeYOf3P3V/LX2rG3JJA0yUpUU1bM
+BB18VWVJjf8LnvslhY46xa5f9isQv6H1p+zwmVyjddF7ApN/iVZV7RHv/r7M7R/f
+nOiQe/om84eP4kFW3+iHzuJEYLo1CdO2YyW+FuFOKUKuVFcNlfbLJM3xO1cvEmA2
+ppRUDMPy7aB+R9RypH4bjDEhWPPNrBCk6UC5Ev61pnNU5bVeP9jdTiU12lpZwW3I
++elf5U6fLDtSye5ox8vlEiC/8ADEa/L0s1D+GnoHNqkzzbyEPDy4DrpeuYaOcE3l
+qodqp1+3mlNXWMrUS3SgT4CI4D0cyA6kcmtOZpeDuMJJJ+PxuiPTv3pR63krvmLe
+LhqRXVX1BA3QLHURdnBa/dZUJy+PgF0rJ2Ee8h783et/FByiHBnZEa26Xw1qVDpa
+dJJ3JaxUX60eCgjeRk5R1Nkq8Viiig4+pd15bc5i6dM27/wW5Ggx07OSln1VPssf
+AKfJKw/I2L7XX/pCQdBII03cS82FWuM2r0fcOG5lSjL3efIhpx0=
+=gQpp
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-8.5.1-RC1-revedb9fc409398f2c3446883f9f80595c884d245d0/solr/maven/org/apache/solr/solr-langid/8.5.1/solr-langid-8.5.1.pom.md5
==============================================================================
--- dev/lucene/lucene-solr-8.5.1-RC1-revedb9fc409398f2c3446883f9f80595c884d245d0/solr/maven/org/apache/solr/solr-langid/8.5.1/solr-langid-8.5.1.pom.md5 (added)
+++ dev/lucene/lucene-solr-8.5.1-RC1-revedb9fc409398f2c3446883f9f80595c884d245d0/solr/maven/org/apache/solr/solr-langid/8.5.1/solr-langid-8.5.1.pom.md5 Wed Apr  8 10:16:00 2020
@@ -0,0 +1 @@
+04284aac46c9cc5c801875137a2dc2a0
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.5.1-RC1-revedb9fc409398f2c3446883f9f80595c884d245d0/solr/maven/org/apache/solr/solr-langid/8.5.1/solr-langid-8.5.1.pom.sha1
==============================================================================
--- dev/lucene/lucene-solr-8.5.1-RC1-revedb9fc409398f2c3446883f9f80595c884d245d0/solr/maven/org/apache/solr/solr-langid/8.5.1/solr-langid-8.5.1.pom.sha1 (added)
+++ dev/lucene/lucene-solr-8.5.1-RC1-revedb9fc409398f2c3446883f9f80595c884d245d0/solr/maven/org/apache/solr/solr-langid/8.5.1/solr-langid-8.5.1.pom.sha1 Wed Apr  8 10:16:00 2020
@@ -0,0 +1 @@
+fc932b9453ae536d9e9a04dac95998057c8d5ffd
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.5.1-RC1-revedb9fc409398f2c3446883f9f80595c884d245d0/solr/maven/org/apache/solr/solr-langid/maven-metadata.xml
==============================================================================
--- dev/lucene/lucene-solr-8.5.1-RC1-revedb9fc409398f2c3446883f9f80595c884d245d0/solr/maven/org/apache/solr/solr-langid/maven-metadata.xml (added)
+++ dev/lucene/lucene-solr-8.5.1-RC1-revedb9fc409398f2c3446883f9f80595c884d245d0/solr/maven/org/apache/solr/solr-langid/maven-metadata.xml Wed Apr  8 10:16:00 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.1</version>
+  <versioning>
+    <versions>
+      <version>8.5.1</version>
+    </versions>
+    <lastUpdated>20200408070429</lastUpdated>
+  </versioning>
+</metadata>

Added: dev/lucene/lucene-solr-8.5.1-RC1-revedb9fc409398f2c3446883f9f80595c884d245d0/solr/maven/org/apache/solr/solr-langid/maven-metadata.xml.md5
==============================================================================
--- dev/lucene/lucene-solr-8.5.1-RC1-revedb9fc409398f2c3446883f9f80595c884d245d0/solr/maven/org/apache/solr/solr-langid/maven-metadata.xml.md5 (added)
+++ dev/lucene/lucene-solr-8.5.1-RC1-revedb9fc409398f2c3446883f9f80595c884d245d0/solr/maven/org/apache/solr/solr-langid/maven-metadata.xml.md5 Wed Apr  8 10:16:00 2020
@@ -0,0 +1 @@
+00af0084c74706ce05c906cf2ad6facc
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.5.1-RC1-revedb9fc409398f2c3446883f9f80595c884d245d0/solr/maven/org/apache/solr/solr-langid/maven-metadata.xml.sha1
==============================================================================
--- dev/lucene/lucene-solr-8.5.1-RC1-revedb9fc409398f2c3446883f9f80595c884d245d0/solr/maven/org/apache/solr/solr-langid/maven-metadata.xml.sha1 (added)
+++ dev/lucene/lucene-solr-8.5.1-RC1-revedb9fc409398f2c3446883f9f80595c884d245d0/solr/maven/org/apache/solr/solr-langid/maven-metadata.xml.sha1 Wed Apr  8 10:16:00 2020
@@ -0,0 +1 @@
+0bcda16ca466835938e716d53aad3467dde9b05c
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.5.1-RC1-revedb9fc409398f2c3446883f9f80595c884d245d0/solr/maven/org/apache/solr/solr-ltr/8.5.1/solr-ltr-8.5.1-javadoc.jar
==============================================================================
Binary file - no diff available.

Propchange: dev/lucene/lucene-solr-8.5.1-RC1-revedb9fc409398f2c3446883f9f80595c884d245d0/solr/maven/org/apache/solr/solr-ltr/8.5.1/solr-ltr-8.5.1-javadoc.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: dev/lucene/lucene-solr-8.5.1-RC1-revedb9fc409398f2c3446883f9f80595c884d245d0/solr/maven/org/apache/solr/solr-ltr/8.5.1/solr-ltr-8.5.1-javadoc.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-8.5.1-RC1-revedb9fc409398f2c3446883f9f80595c884d245d0/solr/maven/org/apache/solr/solr-ltr/8.5.1/solr-ltr-8.5.1-javadoc.jar.asc (added)
+++ dev/lucene/lucene-solr-8.5.1-RC1-revedb9fc409398f2c3446883f9f80595c884d245d0/solr/maven/org/apache/solr/solr-ltr/8.5.1/solr-ltr-8.5.1-javadoc.jar.asc Wed Apr  8 10:16:00 2020
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCAAdFiEE5YpvTVsrSKxm1eU71PGBiBpC+eYFAl6Nd5sACgkQ1PGBiBpC
++eav0Q/+OqhE0unlov9X1osD0ykIzsC+dol+RrKpWfBnOeYT7pWJiHGdYms4+iBu
+NLbuXAyNe4/yI69fycedeH7vJeDtagrHnzK9ulXBACZGFN7kKfc1ZUqv0rqJpK9d
+Z6PcDojuNIkFIbDTUmsCmhrtWFBl4gwbVRwC3S80OdTZ7OKHlsqs0KUcMZfWlR7H
+Gfaofeai507BMOUx40g22zNPrmLk6RF4v6FDi1bf4q13bHgYBWj9GOMriQ6hcEm8
+FLLCHPEHC1VPJO73KD6mQ/YsrvuLqwfavOBtWkF5wAXUUJYtt+ReMMGhyiHmy73V
+mQ6TAhzXtmg3aTwI/o0Xuk64imbzlut0wG5MfLYxyXGjJ/KQQ60d9SUdrw98Ln7t
+R5NTHNqnhb1TiYvB46i1W0f/sxrlH/LFlegMZr96+y0qJHrlkK9NmpSQ4pB54yBY
+QXLbVonZz8Mdj1BMFMXEw6UbZ9Qv/pUdoI5NO9Y0IBPIPUFVpjZ2gJtaROMij07h
+j9E0XpM9s/Ax5LieSkn11q67Scz+/e3B/Moi74RK4J8tnh4w/TZGRB6d1DJ66PbK
+zrCDIvr0GxsRAqrWS2+j8tU4orKV+Wi3WTk9Axmt9GrYTwM087ED9tfudfgjlzzl
+Blhb8BxMIJtI06NnO+wah02DuYPdXgM/Gnhm1AXFn2gW2yrVlcg=
+=pWfj
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-8.5.1-RC1-revedb9fc409398f2c3446883f9f80595c884d245d0/solr/maven/org/apache/solr/solr-ltr/8.5.1/solr-ltr-8.5.1-javadoc.jar.md5
==============================================================================
--- dev/lucene/lucene-solr-8.5.1-RC1-revedb9fc409398f2c3446883f9f80595c884d245d0/solr/maven/org/apache/solr/solr-ltr/8.5.1/solr-ltr-8.5.1-javadoc.jar.md5 (added)
+++ dev/lucene/lucene-solr-8.5.1-RC1-revedb9fc409398f2c3446883f9f80595c884d245d0/solr/maven/org/apache/solr/solr-ltr/8.5.1/solr-ltr-8.5.1-javadoc.jar.md5 Wed Apr  8 10:16:00 2020
@@ -0,0 +1 @@
+8932d9812c624f813245787bb92870e3
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.5.1-RC1-revedb9fc409398f2c3446883f9f80595c884d245d0/solr/maven/org/apache/solr/solr-ltr/8.5.1/solr-ltr-8.5.1-javadoc.jar.sha1
==============================================================================
--- dev/lucene/lucene-solr-8.5.1-RC1-revedb9fc409398f2c3446883f9f80595c884d245d0/solr/maven/org/apache/solr/solr-ltr/8.5.1/solr-ltr-8.5.1-javadoc.jar.sha1 (added)
+++ dev/lucene/lucene-solr-8.5.1-RC1-revedb9fc409398f2c3446883f9f80595c884d245d0/solr/maven/org/apache/solr/solr-ltr/8.5.1/solr-ltr-8.5.1-javadoc.jar.sha1 Wed Apr  8 10:16:00 2020
@@ -0,0 +1 @@
+d8fab4adc8f80cd049aca7b745e2cedc36d6e41e
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.5.1-RC1-revedb9fc409398f2c3446883f9f80595c884d245d0/solr/maven/org/apache/solr/solr-ltr/8.5.1/solr-ltr-8.5.1-sources.jar
==============================================================================
Binary file - no diff available.

Propchange: dev/lucene/lucene-solr-8.5.1-RC1-revedb9fc409398f2c3446883f9f80595c884d245d0/solr/maven/org/apache/solr/solr-ltr/8.5.1/solr-ltr-8.5.1-sources.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: dev/lucene/lucene-solr-8.5.1-RC1-revedb9fc409398f2c3446883f9f80595c884d245d0/solr/maven/org/apache/solr/solr-ltr/8.5.1/solr-ltr-8.5.1-sources.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-8.5.1-RC1-revedb9fc409398f2c3446883f9f80595c884d245d0/solr/maven/org/apache/solr/solr-ltr/8.5.1/solr-ltr-8.5.1-sources.jar.asc (added)
+++ dev/lucene/lucene-solr-8.5.1-RC1-revedb9fc409398f2c3446883f9f80595c884d245d0/solr/maven/org/apache/solr/solr-ltr/8.5.1/solr-ltr-8.5.1-sources.jar.asc Wed Apr  8 10:16:00 2020
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCAAdFiEE5YpvTVsrSKxm1eU71PGBiBpC+eYFAl6Nd5wACgkQ1PGBiBpC
++eZnlBAAtnB3TdONwoJ0VjMRHOIUj8SqVN8L58DiqP9mpivML+W+hp1jtbhipnhF
+Ax8PMhlZElqRa1slnfMvBccW/Ay2BW9c2fpIG/5NtzDZuuwwqtwuJPLB/2StMYkh
+NLxT32OFSoMthDfxXEArFutqh7kTpfBKCiPaT6fD1XDaNS4vxidaJGxncY3gpW20
+c8rE5ZMebNfcbGrLFFRDHmA0SCfq8wMB22h3q9TyBfg3jMbXMKTAGd7dXe4MQbkd
+7KDZ7BOgJR3DS8dvCHWQiEO7J9zoPihwNK2Pb3B8zprEPcFnk8SqBQFdEgF06907
+ibm1qYOowKQ0kf1SLqIPTL8TZRLIpJPZbIP92Bbb6TZImrVLpVtlnF1YCEnWs9PK
+E7s4sVpEDWQhrUYiiUlNn4nnTcbIk26Pp5mBWVyqZpGQGxUlW2StJSsjVEPHhyn8
+8GKw9EuwQvi+r1GHPMcZkqHtTfaH/xt2rVx1Rs5zvHVojakDSOQkZbO9erPm4zYF
+KbnBbRqSyejjxFc+pOF2rPI4MveSrGEkmZm9tZtl6u/QP5cHDhToyqkN24TFzf3M
+NzgE1rzIbeJIizP3eS0Cick4G8aJIvWt34FwPnzlqNZoADw78eTT+cV4bt3XVhTd
+FqwclkjdZxSoJBr0k6/C+k/wgTdHQzXAYq8WJghEL6P94s+7W7o=
+=66o5
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-8.5.1-RC1-revedb9fc409398f2c3446883f9f80595c884d245d0/solr/maven/org/apache/solr/solr-ltr/8.5.1/solr-ltr-8.5.1-sources.jar.md5
==============================================================================
--- dev/lucene/lucene-solr-8.5.1-RC1-revedb9fc409398f2c3446883f9f80595c884d245d0/solr/maven/org/apache/solr/solr-ltr/8.5.1/solr-ltr-8.5.1-sources.jar.md5 (added)
+++ dev/lucene/lucene-solr-8.5.1-RC1-revedb9fc409398f2c3446883f9f80595c884d245d0/solr/maven/org/apache/solr/solr-ltr/8.5.1/solr-ltr-8.5.1-sources.jar.md5 Wed Apr  8 10:16:00 2020
@@ -0,0 +1 @@
+8f8c638436f1fae556cb5a71824e35c6
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.5.1-RC1-revedb9fc409398f2c3446883f9f80595c884d245d0/solr/maven/org/apache/solr/solr-ltr/8.5.1/solr-ltr-8.5.1-sources.jar.sha1
==============================================================================
--- dev/lucene/lucene-solr-8.5.1-RC1-revedb9fc409398f2c3446883f9f80595c884d245d0/solr/maven/org/apache/solr/solr-ltr/8.5.1/solr-ltr-8.5.1-sources.jar.sha1 (added)
+++ dev/lucene/lucene-solr-8.5.1-RC1-revedb9fc409398f2c3446883f9f80595c884d245d0/solr/maven/org/apache/solr/solr-ltr/8.5.1/solr-ltr-8.5.1-sources.jar.sha1 Wed Apr  8 10:16:00 2020
@@ -0,0 +1 @@
+e807c4eaf3c1e2c009651d555bf800130b16cbb6
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.5.1-RC1-revedb9fc409398f2c3446883f9f80595c884d245d0/solr/maven/org/apache/solr/solr-ltr/8.5.1/solr-ltr-8.5.1.jar
==============================================================================
Binary file - no diff available.

Propchange: dev/lucene/lucene-solr-8.5.1-RC1-revedb9fc409398f2c3446883f9f80595c884d245d0/solr/maven/org/apache/solr/solr-ltr/8.5.1/solr-ltr-8.5.1.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: dev/lucene/lucene-solr-8.5.1-RC1-revedb9fc409398f2c3446883f9f80595c884d245d0/solr/maven/org/apache/solr/solr-ltr/8.5.1/solr-ltr-8.5.1.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-8.5.1-RC1-revedb9fc409398f2c3446883f9f80595c884d245d0/solr/maven/org/apache/solr/solr-ltr/8.5.1/solr-ltr-8.5.1.jar.asc (added)
+++ dev/lucene/lucene-solr-8.5.1-RC1-revedb9fc409398f2c3446883f9f80595c884d245d0/solr/maven/org/apache/solr/solr-ltr/8.5.1/solr-ltr-8.5.1.jar.asc Wed Apr  8 10:16:00 2020
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCAAdFiEE5YpvTVsrSKxm1eU71PGBiBpC+eYFAl6Nd5wACgkQ1PGBiBpC
++eZmHRAAgMTenXDBwn8B4eO4KKrEr+idMRLcLnXAMJkWQjcoLZLevPoA4/+CgOuB
+jvw3YjEtpMGSg0vpXvOOOH47Rbdssa4Skv07GrEFtKRA1TXPmb4gfvJR01IgFB4a
+BfNK+q6GozFzDv2Rbp4huQo1qWXy0kxkmRDG3bqMkrGKx2e+HHYsCF+zygS3WA1c
+gUR3VSx16OGbPNloosk8dk2ojY6uQ3E2NDWVpiK0wXrx1KoaZn5ywaZH2NfQRqV6
+fcMbhiDX1BxVyth25kIUmsgnv2kR5huTYb80KLM6ZpWEJIxe2jueQ1T64PrEyJVI
+GN5d8NIDt2FwafVMXwLBnuC8YtdMGXUrunD/57Uf9aV44NeaOeoidCtzn9czz6dG
++f4Z10skDxfdrBHmMlA1rGsEtLipSH8x/vwcGSg580laCzYpJU/F8N2Yb1O6vXxC
+ArJ2OzBY5S/0fz9fEK9UPJB09G7Vaw+CbMVDO55JQXbTWv8Ub4YX/ZyrZmwrWpr8
+2Et1/4TV0flDPfSmKTaWoSlbL6cQTNX6jsKOGb+oYsAvaEprhOHaIFSuu1ob7XA9
+uHaJhASxd25NefSEZwTlM5QUVEntWA1zEvE71CEyQnhehV5xkH2kL6sbCi+VCUm8
+8sTVGM4z3w8d71XA0k5b/OxQyQq9p3XDptSJ3kaVhdr+6VLFCeE=
+=2xas
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-8.5.1-RC1-revedb9fc409398f2c3446883f9f80595c884d245d0/solr/maven/org/apache/solr/solr-ltr/8.5.1/solr-ltr-8.5.1.jar.md5
==============================================================================
--- dev/lucene/lucene-solr-8.5.1-RC1-revedb9fc409398f2c3446883f9f80595c884d245d0/solr/maven/org/apache/solr/solr-ltr/8.5.1/solr-ltr-8.5.1.jar.md5 (added)
+++ dev/lucene/lucene-solr-8.5.1-RC1-revedb9fc409398f2c3446883f9f80595c884d245d0/solr/maven/org/apache/solr/solr-ltr/8.5.1/solr-ltr-8.5.1.jar.md5 Wed Apr  8 10:16:00 2020
@@ -0,0 +1 @@
+38850d2f3dd095cca51d4585afda3178
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.5.1-RC1-revedb9fc409398f2c3446883f9f80595c884d245d0/solr/maven/org/apache/solr/solr-ltr/8.5.1/solr-ltr-8.5.1.jar.sha1
==============================================================================
--- dev/lucene/lucene-solr-8.5.1-RC1-revedb9fc409398f2c3446883f9f80595c884d245d0/solr/maven/org/apache/solr/solr-ltr/8.5.1/solr-ltr-8.5.1.jar.sha1 (added)
+++ dev/lucene/lucene-solr-8.5.1-RC1-revedb9fc409398f2c3446883f9f80595c884d245d0/solr/maven/org/apache/solr/solr-ltr/8.5.1/solr-ltr-8.5.1.jar.sha1 Wed Apr  8 10:16:00 2020
@@ -0,0 +1 @@
+f37d3fe48ed719acb85a33fde90306aea8caa731
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.5.1-RC1-revedb9fc409398f2c3446883f9f80595c884d245d0/solr/maven/org/apache/solr/solr-ltr/8.5.1/solr-ltr-8.5.1.pom
==============================================================================
--- dev/lucene/lucene-solr-8.5.1-RC1-revedb9fc409398f2c3446883f9f80595c884d245d0/solr/maven/org/apache/solr/solr-ltr/8.5.1/solr-ltr-8.5.1.pom (added)
+++ dev/lucene/lucene-solr-8.5.1-RC1-revedb9fc409398f2c3446883f9f80595c884d245d0/solr/maven/org/apache/solr/solr-ltr/8.5.1/solr-ltr-8.5.1.pom Wed Apr  8 10:16:00 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.1</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.1-RC1-revedb9fc409398f2c3446883f9f80595c884d245d0/solr/maven/org/apache/solr/solr-ltr/8.5.1/solr-ltr-8.5.1.pom.asc
==============================================================================
--- dev/lucene/lucene-solr-8.5.1-RC1-revedb9fc409398f2c3446883f9f80595c884d245d0/solr/maven/org/apache/solr/solr-ltr/8.5.1/solr-ltr-8.5.1.pom.asc (added)
+++ dev/lucene/lucene-solr-8.5.1-RC1-revedb9fc409398f2c3446883f9f80595c884d245d0/solr/maven/org/apache/solr/solr-ltr/8.5.1/solr-ltr-8.5.1.pom.asc Wed Apr  8 10:16:00 2020
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCAAdFiEE5YpvTVsrSKxm1eU71PGBiBpC+eYFAl6Nd50ACgkQ1PGBiBpC
++eaoAA//dDp1yrjZH+PL7H/AXoqiYue/yCl8ANBx5QTWyA1AYphcPLo7uwe0Ocur
+iFoTRetLgii9iK0JY4gGxz0ZJRYQURAgp7V7PNMPc9LYJuUWNkVWhCBUTxpt3cQm
+/AQt0ZwiwAX10Ly3RSd4uH9MtLJLzSenhq9ihEu7hf3SZI3WWEerLBEmtBbtK3dm
+DPkVhzF3tdX6zYX88mPQtszPVrLPDIyzKr4id7Z33de2BVFMJhD1eVhhrpe/+BBj
+EyX7imHxYY+svgImcmyvU9vjycovquLMpqTucaHNGPoIM5pV20shQ3vPBE0aELdw
+6BKWmb/4Als6MXmecK33h6piQCE5nr8v3fkhjAr6ZlR4Adaum1FSvjUTWrypCY16
+4/bS1T+Itkk8hfjTT1klxAfUWdxELotBwNck2D47IeNMCz15podd2hR2DjcyvEPI
+HTDH/HNMYproFwRoXosMfL/5fS33jo+TeACEL5SYySBJlCIYuC2RrDp81IOGJt8R
+73HwYL1ZVXdO21dtIIo1IcgeEOcLrkPKC5YeMHbDgTxDIYMyL6Cr8YteKYdz2lyk
+SrbdjD+Vet9GSD7So5dvvktpebvp8fQm71dmHenyClsvlrzSnVzUmvt+DEM61BGd
+rvHfFAnwP1zPRQ44ghFX/8FYKIv0nV+9yn9rhR09b+VD9kzUnUI=
+=/hkL
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-8.5.1-RC1-revedb9fc409398f2c3446883f9f80595c884d245d0/solr/maven/org/apache/solr/solr-ltr/8.5.1/solr-ltr-8.5.1.pom.md5
==============================================================================
--- dev/lucene/lucene-solr-8.5.1-RC1-revedb9fc409398f2c3446883f9f80595c884d245d0/solr/maven/org/apache/solr/solr-ltr/8.5.1/solr-ltr-8.5.1.pom.md5 (added)
+++ dev/lucene/lucene-solr-8.5.1-RC1-revedb9fc409398f2c3446883f9f80595c884d245d0/solr/maven/org/apache/solr/solr-ltr/8.5.1/solr-ltr-8.5.1.pom.md5 Wed Apr  8 10:16:00 2020
@@ -0,0 +1 @@
+a16c07832df039eecc4bde87023a2d2c
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.5.1-RC1-revedb9fc409398f2c3446883f9f80595c884d245d0/solr/maven/org/apache/solr/solr-ltr/8.5.1/solr-ltr-8.5.1.pom.sha1
==============================================================================
--- dev/lucene/lucene-solr-8.5.1-RC1-revedb9fc409398f2c3446883f9f80595c884d245d0/solr/maven/org/apache/solr/solr-ltr/8.5.1/solr-ltr-8.5.1.pom.sha1 (added)
+++ dev/lucene/lucene-solr-8.5.1-RC1-revedb9fc409398f2c3446883f9f80595c884d245d0/solr/maven/org/apache/solr/solr-ltr/8.5.1/solr-ltr-8.5.1.pom.sha1 Wed Apr  8 10:16:00 2020
@@ -0,0 +1 @@
+3cac5f2c4aaa7aa6ecc644f1c3ac2698c622da20
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.5.1-RC1-revedb9fc409398f2c3446883f9f80595c884d245d0/solr/maven/org/apache/solr/solr-ltr/maven-metadata.xml
==============================================================================
--- dev/lucene/lucene-solr-8.5.1-RC1-revedb9fc409398f2c3446883f9f80595c884d245d0/solr/maven/org/apache/solr/solr-ltr/maven-metadata.xml (added)
+++ dev/lucene/lucene-solr-8.5.1-RC1-revedb9fc409398f2c3446883f9f80595c884d245d0/solr/maven/org/apache/solr/solr-ltr/maven-metadata.xml Wed Apr  8 10:16:00 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.1</version>
+  <versioning>
+    <versions>
+      <version>8.5.1</version>
+    </versions>
+    <lastUpdated>20200408070431</lastUpdated>
+  </versioning>
+</metadata>

Added: dev/lucene/lucene-solr-8.5.1-RC1-revedb9fc409398f2c3446883f9f80595c884d245d0/solr/maven/org/apache/solr/solr-ltr/maven-metadata.xml.md5
==============================================================================
--- dev/lucene/lucene-solr-8.5.1-RC1-revedb9fc409398f2c3446883f9f80595c884d245d0/solr/maven/org/apache/solr/solr-ltr/maven-metadata.xml.md5 (added)
+++ dev/lucene/lucene-solr-8.5.1-RC1-revedb9fc409398f2c3446883f9f80595c884d245d0/solr/maven/org/apache/solr/solr-ltr/maven-metadata.xml.md5 Wed Apr  8 10:16:00 2020
@@ -0,0 +1 @@
+04db340147567bff7aac2c4049ab1225
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.5.1-RC1-revedb9fc409398f2c3446883f9f80595c884d245d0/solr/maven/org/apache/solr/solr-ltr/maven-metadata.xml.sha1
==============================================================================
--- dev/lucene/lucene-solr-8.5.1-RC1-revedb9fc409398f2c3446883f9f80595c884d245d0/solr/maven/org/apache/solr/solr-ltr/maven-metadata.xml.sha1 (added)
+++ dev/lucene/lucene-solr-8.5.1-RC1-revedb9fc409398f2c3446883f9f80595c884d245d0/solr/maven/org/apache/solr/solr-ltr/maven-metadata.xml.sha1 Wed Apr  8 10:16:00 2020
@@ -0,0 +1 @@
+2a6fbf2bb882516db577fee4b961297fbefe823a
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.5.1-RC1-revedb9fc409398f2c3446883f9f80595c884d245d0/solr/maven/org/apache/solr/solr-parent/8.5.1/solr-parent-8.5.1.pom
==============================================================================
--- dev/lucene/lucene-solr-8.5.1-RC1-revedb9fc409398f2c3446883f9f80595c884d245d0/solr/maven/org/apache/solr/solr-parent/8.5.1/solr-parent-8.5.1.pom (added)
+++ dev/lucene/lucene-solr-8.5.1-RC1-revedb9fc409398f2c3446883f9f80595c884d245d0/solr/maven/org/apache/solr/solr-parent/8.5.1/solr-parent-8.5.1.pom Wed Apr  8 10:16:00 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.1</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.1-RC1-revedb9fc409398f2c3446883f9f80595c884d245d0/solr/maven/org/apache/solr/solr-parent/8.5.1/solr-parent-8.5.1.pom.asc
==============================================================================
--- dev/lucene/lucene-solr-8.5.1-RC1-revedb9fc409398f2c3446883f9f80595c884d245d0/solr/maven/org/apache/solr/solr-parent/8.5.1/solr-parent-8.5.1.pom.asc (added)
+++ dev/lucene/lucene-solr-8.5.1-RC1-revedb9fc409398f2c3446883f9f80595c884d245d0/solr/maven/org/apache/solr/solr-parent/8.5.1/solr-parent-8.5.1.pom.asc Wed Apr  8 10:16:00 2020
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCAAdFiEE5YpvTVsrSKxm1eU71PGBiBpC+eYFAl6Nd50ACgkQ1PGBiBpC
++ebjAg//VGy0wWb3omBEdRV8ziYCk1VE0vB8MBu6thPkDE5pTA/qKuJtO3z5f3Uh
+woRzLhQoPB/K200EGUn6NOPU0Qdub3bWDZEE9GBh2Pw7PKbKQ9xUhE902bR02CIy
+G5Oz7XbKixb+Ex2wyuE1hL8GsTOOCYY7xc3O5Ul5RBh6z6KMYDRTFxotae2LzKKr
+jFUHuYSxfs29qLc0CIGQXOK0imiS8vWONxuSBJFNkc8kPkGtu3y6Ix992zshaWTi
+JFx0BHWZ7nblov3mOdh9AV966W5HdMo6O5cV0nym8axCuHHfKet3F+rnpWcMB+Gr
+lqqnQ/jRDL/WfTHqiHxhaUFuXxapxhsbcVQg8LgPZQhvwMNhf3aacWXPDP+T12Qk
+iJu05MzALh2GleaZp+NCnkmMSvoH4WYE+XCb3RCmrVzHLHOhbSvs7SeeFYt0uhwo
+TR1khpBD4gDuyPxh7J7TnWxEjaAIXsX+shrQfkY8OOM5fgxpmniq4cA/6orLeyrS
+0fdlV197rIPt7/PPT/xOaFdm7wLi1Jjy46FdYhZhK1YbzWkEV6uC4RJOQNYKwhUB
+G1f96aoGyiiyrIROJ19CtHfF2X/BjaNtDF5kBLHKbNMZ4q/hetvAd3CBPx+8cina
+QB9xdThJ42i91/JA0jwTFyd4O8cj3tl0nHkii83swYg6kfvEg78=
+=Y80F
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-8.5.1-RC1-revedb9fc409398f2c3446883f9f80595c884d245d0/solr/maven/org/apache/solr/solr-parent/8.5.1/solr-parent-8.5.1.pom.md5
==============================================================================
--- dev/lucene/lucene-solr-8.5.1-RC1-revedb9fc409398f2c3446883f9f80595c884d245d0/solr/maven/org/apache/solr/solr-parent/8.5.1/solr-parent-8.5.1.pom.md5 (added)
+++ dev/lucene/lucene-solr-8.5.1-RC1-revedb9fc409398f2c3446883f9f80595c884d245d0/solr/maven/org/apache/solr/solr-parent/8.5.1/solr-parent-8.5.1.pom.md5 Wed Apr  8 10:16:00 2020
@@ -0,0 +1 @@
+9f1967c731228e8784bf1695156dd5aa
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.5.1-RC1-revedb9fc409398f2c3446883f9f80595c884d245d0/solr/maven/org/apache/solr/solr-parent/8.5.1/solr-parent-8.5.1.pom.sha1
==============================================================================
--- dev/lucene/lucene-solr-8.5.1-RC1-revedb9fc409398f2c3446883f9f80595c884d245d0/solr/maven/org/apache/solr/solr-parent/8.5.1/solr-parent-8.5.1.pom.sha1 (added)
+++ dev/lucene/lucene-solr-8.5.1-RC1-revedb9fc409398f2c3446883f9f80595c884d245d0/solr/maven/org/apache/solr/solr-parent/8.5.1/solr-parent-8.5.1.pom.sha1 Wed Apr  8 10:16:00 2020
@@ -0,0 +1 @@
+252c6547f12e9663845022ae1e9064321564e60e
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.5.1-RC1-revedb9fc409398f2c3446883f9f80595c884d245d0/solr/maven/org/apache/solr/solr-parent/maven-metadata.xml
==============================================================================
--- dev/lucene/lucene-solr-8.5.1-RC1-revedb9fc409398f2c3446883f9f80595c884d245d0/solr/maven/org/apache/solr/solr-parent/maven-metadata.xml (added)
+++ dev/lucene/lucene-solr-8.5.1-RC1-revedb9fc409398f2c3446883f9f80595c884d245d0/solr/maven/org/apache/solr/solr-parent/maven-metadata.xml Wed Apr  8 10:16:00 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.1</version>
+  <versioning>
+    <versions>
+      <version>8.5.1</version>
+    </versions>
+    <lastUpdated>20200408070400</lastUpdated>
+  </versioning>
+</metadata>

Added: dev/lucene/lucene-solr-8.5.1-RC1-revedb9fc409398f2c3446883f9f80595c884d245d0/solr/maven/org/apache/solr/solr-parent/maven-metadata.xml.md5
==============================================================================
--- dev/lucene/lucene-solr-8.5.1-RC1-revedb9fc409398f2c3446883f9f80595c884d245d0/solr/maven/org/apache/solr/solr-parent/maven-metadata.xml.md5 (added)
+++ dev/lucene/lucene-solr-8.5.1-RC1-revedb9fc409398f2c3446883f9f80595c884d245d0/solr/maven/org/apache/solr/solr-parent/maven-metadata.xml.md5 Wed Apr  8 10:16:00 2020
@@ -0,0 +1 @@
+e0158c0948726aded0e1f7201d8b28dc
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.5.1-RC1-revedb9fc409398f2c3446883f9f80595c884d245d0/solr/maven/org/apache/solr/solr-parent/maven-metadata.xml.sha1
==============================================================================
--- dev/lucene/lucene-solr-8.5.1-RC1-revedb9fc409398f2c3446883f9f80595c884d245d0/solr/maven/org/apache/solr/solr-parent/maven-metadata.xml.sha1 (added)
+++ dev/lucene/lucene-solr-8.5.1-RC1-revedb9fc409398f2c3446883f9f80595c884d245d0/solr/maven/org/apache/solr/solr-parent/maven-metadata.xml.sha1 Wed Apr  8 10:16:00 2020
@@ -0,0 +1 @@
+ef8b4e125dea7f612a8b582fd4a4af9e24bb41d1
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.5.1-RC1-revedb9fc409398f2c3446883f9f80595c884d245d0/solr/maven/org/apache/solr/solr-prometheus-exporter/8.5.1/solr-prometheus-exporter-8.5.1-javadoc.jar
==============================================================================
Binary file - no diff available.

Propchange: dev/lucene/lucene-solr-8.5.1-RC1-revedb9fc409398f2c3446883f9f80595c884d245d0/solr/maven/org/apache/solr/solr-prometheus-exporter/8.5.1/solr-prometheus-exporter-8.5.1-javadoc.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: dev/lucene/lucene-solr-8.5.1-RC1-revedb9fc409398f2c3446883f9f80595c884d245d0/solr/maven/org/apache/solr/solr-prometheus-exporter/8.5.1/solr-prometheus-exporter-8.5.1-javadoc.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-8.5.1-RC1-revedb9fc409398f2c3446883f9f80595c884d245d0/solr/maven/org/apache/solr/solr-prometheus-exporter/8.5.1/solr-prometheus-exporter-8.5.1-javadoc.jar.asc (added)
+++ dev/lucene/lucene-solr-8.5.1-RC1-revedb9fc409398f2c3446883f9f80595c884d245d0/solr/maven/org/apache/solr/solr-prometheus-exporter/8.5.1/solr-prometheus-exporter-8.5.1-javadoc.jar.asc Wed Apr  8 10:16:00 2020
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCAAdFiEE5YpvTVsrSKxm1eU71PGBiBpC+eYFAl6Nd54ACgkQ1PGBiBpC
++eZXiA//f6aLAJwhxzXU2+oCfNid64OYmpqrLtlsza++vsbdYonxnXIIbue4raC0
+lNZM6XedY7U7pYzW4Ms3qtQ8yr988BPKggjyySVB4scvqqkO93L7B4sjpw0W9HJx
+XZnARWSJ1OVnzu/BEpa+rr6QvrFPwtxI4iV0N0fSMVgsE9R/qduNlwre2n7Zn0u7
+3jetW4/hSJxG9I5wO7PFxr/yjsTgZxFzZznzXzeQEJYrYcl37417sb45zRJyTqjT
+0M59Olf3gDwG/aDyb7cWY6dCqTJ0MXYaaHTClSs/lWDOKpuiJbTMTLLe6Rpx3adI
+T3GIDEfaCLLNhcKWc8AkB+4oat0yVemhld2Aowyk+7zqYAlfWIZb74JHztOfPVKc
+4m8ey/jRxCeeJ6pug4ZPc1ltkh8NIrygBs1dPmKgTnFqNDpFZmWQmzPXjg93wzXG
+ZpIPwUy9Lyrh/nHo9U+AeFRwjBwRPqGqBinP2zO+ENTFY6xN8khcDXDtlq7VDJj/
+liTMCHXPDdN2T/lWeDGXK2mW854HLniTeO3HT3xWcWPxFGPkSEtk7nN49UrFf+jp
+g5jGRzbLISSeW20I9kWaa1y/TdIRSwquwv+rs+tuFol4h+OZ+OWDfkgyS9lVAt31
+dyyyKpENazNph3DzIrqL4570T8Lf3B6YYr3QeCoi0+CTDfSnA1U=
+=0wHd
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-8.5.1-RC1-revedb9fc409398f2c3446883f9f80595c884d245d0/solr/maven/org/apache/solr/solr-prometheus-exporter/8.5.1/solr-prometheus-exporter-8.5.1-javadoc.jar.md5
==============================================================================
--- dev/lucene/lucene-solr-8.5.1-RC1-revedb9fc409398f2c3446883f9f80595c884d245d0/solr/maven/org/apache/solr/solr-prometheus-exporter/8.5.1/solr-prometheus-exporter-8.5.1-javadoc.jar.md5 (added)
+++ dev/lucene/lucene-solr-8.5.1-RC1-revedb9fc409398f2c3446883f9f80595c884d245d0/solr/maven/org/apache/solr/solr-prometheus-exporter/8.5.1/solr-prometheus-exporter-8.5.1-javadoc.jar.md5 Wed Apr  8 10:16:00 2020
@@ -0,0 +1 @@
+bcdd80af598b08b8dc4c56e5cfac5b2f
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.5.1-RC1-revedb9fc409398f2c3446883f9f80595c884d245d0/solr/maven/org/apache/solr/solr-prometheus-exporter/8.5.1/solr-prometheus-exporter-8.5.1-javadoc.jar.sha1
==============================================================================
--- dev/lucene/lucene-solr-8.5.1-RC1-revedb9fc409398f2c3446883f9f80595c884d245d0/solr/maven/org/apache/solr/solr-prometheus-exporter/8.5.1/solr-prometheus-exporter-8.5.1-javadoc.jar.sha1 (added)
+++ dev/lucene/lucene-solr-8.5.1-RC1-revedb9fc409398f2c3446883f9f80595c884d245d0/solr/maven/org/apache/solr/solr-prometheus-exporter/8.5.1/solr-prometheus-exporter-8.5.1-javadoc.jar.sha1 Wed Apr  8 10:16:00 2020
@@ -0,0 +1 @@
+a2cd5526c45a38bc53d4366cbde5edbbca0222d8
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.5.1-RC1-revedb9fc409398f2c3446883f9f80595c884d245d0/solr/maven/org/apache/solr/solr-prometheus-exporter/8.5.1/solr-prometheus-exporter-8.5.1-sources.jar
==============================================================================
Binary file - no diff available.

Propchange: dev/lucene/lucene-solr-8.5.1-RC1-revedb9fc409398f2c3446883f9f80595c884d245d0/solr/maven/org/apache/solr/solr-prometheus-exporter/8.5.1/solr-prometheus-exporter-8.5.1-sources.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: dev/lucene/lucene-solr-8.5.1-RC1-revedb9fc409398f2c3446883f9f80595c884d245d0/solr/maven/org/apache/solr/solr-prometheus-exporter/8.5.1/solr-prometheus-exporter-8.5.1-sources.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-8.5.1-RC1-revedb9fc409398f2c3446883f9f80595c884d245d0/solr/maven/org/apache/solr/solr-prometheus-exporter/8.5.1/solr-prometheus-exporter-8.5.1-sources.jar.asc (added)
+++ dev/lucene/lucene-solr-8.5.1-RC1-revedb9fc409398f2c3446883f9f80595c884d245d0/solr/maven/org/apache/solr/solr-prometheus-exporter/8.5.1/solr-prometheus-exporter-8.5.1-sources.jar.asc Wed Apr  8 10:16:00 2020
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCAAdFiEE5YpvTVsrSKxm1eU71PGBiBpC+eYFAl6Nd58ACgkQ1PGBiBpC
++ea7pA/+JhBPiFGifm9mSxG0MogPNT+LN3/IcAWyk4fyiKngh6qspwK+thtWQq7B
+BeLB3G8Kt+0vRnbBjQ4iG8vI+8+1wlsl5+RGW1LX/Wsr65OkJVoYJogWFzMPCwEd
+NVTeSnuFGATqTbZmaWGDZIknHzW/gTmPYdxzLbob6clfxDKZXDEQDDPHl/fVPNQe
+V0f7uCBNx2rQgI8pfq81mvVplsUchXGU0Ad2QvnGmji3jRnlIWWdQrsCyaBsAXqf
+FCNVSG55XtY1VfCaqEr3EYCnhUM4C8CrGDPBNgAIvKA8/X5wXJZaqOOiak9lP1oe
+F/wLiF1eFOrqoZUYXAQ7lBhfx7Tc0xiKrBwjEJvtB1LLblhzeTNAy62iDhNbpFsC
+6pMtfYL+MAzn+VSFQ4JP3B6kyVUXo2khIdMlA+5+I3JeA6zmPkl0ynOMjYFBjh7+
+XgmuAxs0k+86ewyuXHoUdKu1FGRhhzGptG09OmUSwVrK0RkN4NqIFtKt/hwsUiqv
+bJMnVRJCdpXqQ95RyBkFs/DClhGi+6R/s25j4Si2v4BPw2R+dIDXg2vPjF+YcYR+
+3z/SmryLCNuD9k5DJAPdCaP1tMYLhQ3c1zv/YUOwz8mCRlZycZN4hN5WSMqK4SIZ
+Nrkaci9FEFC7Sx08YSRgtxwZGgt9CGpbRVwo7QYsu1vHJi6bihY=
+=pmEl
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-8.5.1-RC1-revedb9fc409398f2c3446883f9f80595c884d245d0/solr/maven/org/apache/solr/solr-prometheus-exporter/8.5.1/solr-prometheus-exporter-8.5.1-sources.jar.md5
==============================================================================
--- dev/lucene/lucene-solr-8.5.1-RC1-revedb9fc409398f2c3446883f9f80595c884d245d0/solr/maven/org/apache/solr/solr-prometheus-exporter/8.5.1/solr-prometheus-exporter-8.5.1-sources.jar.md5 (added)
+++ dev/lucene/lucene-solr-8.5.1-RC1-revedb9fc409398f2c3446883f9f80595c884d245d0/solr/maven/org/apache/solr/solr-prometheus-exporter/8.5.1/solr-prometheus-exporter-8.5.1-sources.jar.md5 Wed Apr  8 10:16:00 2020
@@ -0,0 +1 @@
+3139fe98829a8656a74b425f59fd0eb5
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.5.1-RC1-revedb9fc409398f2c3446883f9f80595c884d245d0/solr/maven/org/apache/solr/solr-prometheus-exporter/8.5.1/solr-prometheus-exporter-8.5.1-sources.jar.sha1
==============================================================================
--- dev/lucene/lucene-solr-8.5.1-RC1-revedb9fc409398f2c3446883f9f80595c884d245d0/solr/maven/org/apache/solr/solr-prometheus-exporter/8.5.1/solr-prometheus-exporter-8.5.1-sources.jar.sha1 (added)
+++ dev/lucene/lucene-solr-8.5.1-RC1-revedb9fc409398f2c3446883f9f80595c884d245d0/solr/maven/org/apache/solr/solr-prometheus-exporter/8.5.1/solr-prometheus-exporter-8.5.1-sources.jar.sha1 Wed Apr  8 10:16:00 2020
@@ -0,0 +1 @@
+9f9832701dc18ee58b5731ef8e9969073998abab
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.5.1-RC1-revedb9fc409398f2c3446883f9f80595c884d245d0/solr/maven/org/apache/solr/solr-prometheus-exporter/8.5.1/solr-prometheus-exporter-8.5.1.jar
==============================================================================
Binary file - no diff available.

Propchange: dev/lucene/lucene-solr-8.5.1-RC1-revedb9fc409398f2c3446883f9f80595c884d245d0/solr/maven/org/apache/solr/solr-prometheus-exporter/8.5.1/solr-prometheus-exporter-8.5.1.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: dev/lucene/lucene-solr-8.5.1-RC1-revedb9fc409398f2c3446883f9f80595c884d245d0/solr/maven/org/apache/solr/solr-prometheus-exporter/8.5.1/solr-prometheus-exporter-8.5.1.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-8.5.1-RC1-revedb9fc409398f2c3446883f9f80595c884d245d0/solr/maven/org/apache/solr/solr-prometheus-exporter/8.5.1/solr-prometheus-exporter-8.5.1.jar.asc (added)
+++ dev/lucene/lucene-solr-8.5.1-RC1-revedb9fc409398f2c3446883f9f80595c884d245d0/solr/maven/org/apache/solr/solr-prometheus-exporter/8.5.1/solr-prometheus-exporter-8.5.1.jar.asc Wed Apr  8 10:16:00 2020
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCAAdFiEE5YpvTVsrSKxm1eU71PGBiBpC+eYFAl6Nd58ACgkQ1PGBiBpC
++eYgFRAAoP0GHKJtmHKZAAKlADUEXEhdM9VyW0tQaAOsIvRPUsw4zb8f3SEz2VmI
+rRLwh+SGt9DFneip3RhgyWQFA4yO6xknX8xuXvmGOmGFwQmMSyIDrntlM1hDVKgO
+U4QkNCfBMHhaWbxJSjpaKRUo9xcS8pRC94Iqif7Yxi0KJB/y90u22hO2wAfP1TnT
+InzfEYy0Ubx6NajYS2TAX1gH7JNiSnhKjihWWkeb5LPlf2FxeHeQZpYwKptla0nD
+l+1+aZMDCBvInm9xIJgh/faPaQXJjHlnvklhiNYU9PbFyeVv+C5rAN6JlqR6SFab
+DzsZtN9xpYD+vrrjKvjTSo2Dq8hVRdj3yo/W19kU7kuiRbE5S32yLJr90eFBaOu8
+9tZrRwjVuSGrEsClSzAXD7l9C1nWUepTevJLJItEjw1HOkdxVJsnu6szREzHCiey
+Vr9bp+bx4sVXjhMzxsOajMbkDc315BgIwDqgudVgJ6XE8i4JY5PNmfNNk9KXxgnW
+9n2iVq073yEYBBlzAFWCm05ts9QfYCXA9Tty+ayH0kPR++SATUuZlTeeX1+YSfte
+impxVktcw434wb9ufA+jSkSXQImljAq2EgnZKJXenSpnumtcBaSRmqUSe1/Zv496
+6yMPKEvA/6wIEYJIKLChYX06dbTKSfAZYK4Ia2Gx5We7mDcwRv8=
+=jqwy
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-8.5.1-RC1-revedb9fc409398f2c3446883f9f80595c884d245d0/solr/maven/org/apache/solr/solr-prometheus-exporter/8.5.1/solr-prometheus-exporter-8.5.1.jar.md5
==============================================================================
--- dev/lucene/lucene-solr-8.5.1-RC1-revedb9fc409398f2c3446883f9f80595c884d245d0/solr/maven/org/apache/solr/solr-prometheus-exporter/8.5.1/solr-prometheus-exporter-8.5.1.jar.md5 (added)
+++ dev/lucene/lucene-solr-8.5.1-RC1-revedb9fc409398f2c3446883f9f80595c884d245d0/solr/maven/org/apache/solr/solr-prometheus-exporter/8.5.1/solr-prometheus-exporter-8.5.1.jar.md5 Wed Apr  8 10:16:00 2020
@@ -0,0 +1 @@
+44557600ef9deb1152b5ca8b7891174b
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.5.1-RC1-revedb9fc409398f2c3446883f9f80595c884d245d0/solr/maven/org/apache/solr/solr-prometheus-exporter/8.5.1/solr-prometheus-exporter-8.5.1.jar.sha1
==============================================================================
--- dev/lucene/lucene-solr-8.5.1-RC1-revedb9fc409398f2c3446883f9f80595c884d245d0/solr/maven/org/apache/solr/solr-prometheus-exporter/8.5.1/solr-prometheus-exporter-8.5.1.jar.sha1 (added)
+++ dev/lucene/lucene-solr-8.5.1-RC1-revedb9fc409398f2c3446883f9f80595c884d245d0/solr/maven/org/apache/solr/solr-prometheus-exporter/8.5.1/solr-prometheus-exporter-8.5.1.jar.sha1 Wed Apr  8 10:16:00 2020
@@ -0,0 +1 @@
+49b78c7074b3fb6abb4554975f0cdcb4c5e2f80e
\ No newline at end of file