You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by jp...@apache.org on 2019/12/19 22:59:30 UTC

svn commit: r37312 [18/20] - in /dev/lucene/lucene-solr-8.4.0-RC2-revbc02ab906445fcf4e297f4ef00ab4a54fdd72ca2: ./ 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.4.0-RC2-revbc02ab906445fcf4e297f4ef00ab4a54fdd72ca2/solr/maven/org/apache/solr/solr-langid/8.4.0/solr-langid-8.4.0.pom
==============================================================================
--- dev/lucene/lucene-solr-8.4.0-RC2-revbc02ab906445fcf4e297f4ef00ab4a54fdd72ca2/solr/maven/org/apache/solr/solr-langid/8.4.0/solr-langid-8.4.0.pom (added)
+++ dev/lucene/lucene-solr-8.4.0-RC2-revbc02ab906445fcf4e297f4ef00ab4a54fdd72ca2/solr/maven/org/apache/solr/solr-langid/8.4.0/solr-langid-8.4.0.pom Thu Dec 19 22:59:25 2019
@@ -0,0 +1,774 @@
+<!--
+  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.4.0</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-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>
+
+
+  </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.4.0-RC2-revbc02ab906445fcf4e297f4ef00ab4a54fdd72ca2/solr/maven/org/apache/solr/solr-langid/8.4.0/solr-langid-8.4.0.pom.asc
==============================================================================
--- dev/lucene/lucene-solr-8.4.0-RC2-revbc02ab906445fcf4e297f4ef00ab4a54fdd72ca2/solr/maven/org/apache/solr/solr-langid/8.4.0/solr-langid-8.4.0.pom.asc (added)
+++ dev/lucene/lucene-solr-8.4.0-RC2-revbc02ab906445fcf4e297f4ef00ab4a54fdd72ca2/solr/maven/org/apache/solr/solr-langid/8.4.0/solr-langid-8.4.0.pom.asc Thu Dec 19 22:59:25 2019
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v1
+
+iQIcBAABAgAGBQJd+83kAAoJEAUaD692vGUHKPkQAJ3LP51ORaubPGR4DJL2heZk
+NqAJelKA3J0SsBAlZtwo4dZRXv2jW7TTuYnTVc1ZdZqWIODAbtYDJ5DjMYa3lpD4
+UuTOcgSA3w+gen2U40Iu6viOdoPXyt4eyz6KRs241ASi1gLETYbykZYwP0vesxIh
+r5PlFNOopSsKUNF2H+FkcK/vEhzH0rXKTEcDhT63wtcphlTaVioKxQostRKxxOKa
+iEF7f6TY0WP7fb9Y6Ni2WPJTywzYwh7Nd1ctS7oKDrX0nQFY6T2gRZcOJawfztJj
+lQMQ+9qRRVOJYrhjpRK7UiYjXJKc1WZRBtgPr7FPZ3O+tF5Q7Xjmm55kk72Yrgg4
+/3UukH0lQKOw76myXCTpA/2UrOhuKDUur/oCS3M7475kGWU8Lebg2Ida/SiGRy6P
+7ZPpPadwan9MXXAO2rUvVcR9c0aeTOxGhDP3PBRYZoF4qKy8ZskQw+FeFvGb6BAp
+H0bkTd6hoCXgwFPiuZVdZPH6/+tzeACzd4/Ooffk0fj6jQmL7qdD9MQa4m0VETKS
+vi6wobXGkxGYcn7ziHEPiEbrARB7SdV5kNfZeiJTpdJyyYZqqBfbMHFTLThNk4Yj
+ODT0av1NzC18Ffyk/dZHQGT1DSWBF/Nu2+yyYZvyZ5wH7+0f7TAHByjjrLMB/Y0n
+BKimQ3DTingfDwGiJzZ2
+=dJcO
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-8.4.0-RC2-revbc02ab906445fcf4e297f4ef00ab4a54fdd72ca2/solr/maven/org/apache/solr/solr-langid/8.4.0/solr-langid-8.4.0.pom.md5
==============================================================================
--- dev/lucene/lucene-solr-8.4.0-RC2-revbc02ab906445fcf4e297f4ef00ab4a54fdd72ca2/solr/maven/org/apache/solr/solr-langid/8.4.0/solr-langid-8.4.0.pom.md5 (added)
+++ dev/lucene/lucene-solr-8.4.0-RC2-revbc02ab906445fcf4e297f4ef00ab4a54fdd72ca2/solr/maven/org/apache/solr/solr-langid/8.4.0/solr-langid-8.4.0.pom.md5 Thu Dec 19 22:59:25 2019
@@ -0,0 +1 @@
+9c46f1a04142e956cc1532c5e8b55fdc
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.4.0-RC2-revbc02ab906445fcf4e297f4ef00ab4a54fdd72ca2/solr/maven/org/apache/solr/solr-langid/8.4.0/solr-langid-8.4.0.pom.sha1
==============================================================================
--- dev/lucene/lucene-solr-8.4.0-RC2-revbc02ab906445fcf4e297f4ef00ab4a54fdd72ca2/solr/maven/org/apache/solr/solr-langid/8.4.0/solr-langid-8.4.0.pom.sha1 (added)
+++ dev/lucene/lucene-solr-8.4.0-RC2-revbc02ab906445fcf4e297f4ef00ab4a54fdd72ca2/solr/maven/org/apache/solr/solr-langid/8.4.0/solr-langid-8.4.0.pom.sha1 Thu Dec 19 22:59:25 2019
@@ -0,0 +1 @@
+0ebbe969a72c52843abc624b7e32dce628656bc5
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.4.0-RC2-revbc02ab906445fcf4e297f4ef00ab4a54fdd72ca2/solr/maven/org/apache/solr/solr-langid/maven-metadata.xml
==============================================================================
--- dev/lucene/lucene-solr-8.4.0-RC2-revbc02ab906445fcf4e297f4ef00ab4a54fdd72ca2/solr/maven/org/apache/solr/solr-langid/maven-metadata.xml (added)
+++ dev/lucene/lucene-solr-8.4.0-RC2-revbc02ab906445fcf4e297f4ef00ab4a54fdd72ca2/solr/maven/org/apache/solr/solr-langid/maven-metadata.xml Thu Dec 19 22:59:25 2019
@@ -0,0 +1,12 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<metadata>
+  <groupId>org.apache.solr</groupId>
+  <artifactId>solr-langid</artifactId>
+  <version>8.4.0</version>
+  <versioning>
+    <versions>
+      <version>8.4.0</version>
+    </versions>
+    <lastUpdated>20191219192205</lastUpdated>
+  </versioning>
+</metadata>

Added: dev/lucene/lucene-solr-8.4.0-RC2-revbc02ab906445fcf4e297f4ef00ab4a54fdd72ca2/solr/maven/org/apache/solr/solr-langid/maven-metadata.xml.md5
==============================================================================
--- dev/lucene/lucene-solr-8.4.0-RC2-revbc02ab906445fcf4e297f4ef00ab4a54fdd72ca2/solr/maven/org/apache/solr/solr-langid/maven-metadata.xml.md5 (added)
+++ dev/lucene/lucene-solr-8.4.0-RC2-revbc02ab906445fcf4e297f4ef00ab4a54fdd72ca2/solr/maven/org/apache/solr/solr-langid/maven-metadata.xml.md5 Thu Dec 19 22:59:25 2019
@@ -0,0 +1 @@
+91f3b222c9e5c19cdb88d1e796f6d125
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.4.0-RC2-revbc02ab906445fcf4e297f4ef00ab4a54fdd72ca2/solr/maven/org/apache/solr/solr-langid/maven-metadata.xml.sha1
==============================================================================
--- dev/lucene/lucene-solr-8.4.0-RC2-revbc02ab906445fcf4e297f4ef00ab4a54fdd72ca2/solr/maven/org/apache/solr/solr-langid/maven-metadata.xml.sha1 (added)
+++ dev/lucene/lucene-solr-8.4.0-RC2-revbc02ab906445fcf4e297f4ef00ab4a54fdd72ca2/solr/maven/org/apache/solr/solr-langid/maven-metadata.xml.sha1 Thu Dec 19 22:59:25 2019
@@ -0,0 +1 @@
+976467cc36cf4e5ae8f482ebd1d8ec594913f743
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.4.0-RC2-revbc02ab906445fcf4e297f4ef00ab4a54fdd72ca2/solr/maven/org/apache/solr/solr-ltr/8.4.0/solr-ltr-8.4.0-javadoc.jar
==============================================================================
Binary file - no diff available.

Propchange: dev/lucene/lucene-solr-8.4.0-RC2-revbc02ab906445fcf4e297f4ef00ab4a54fdd72ca2/solr/maven/org/apache/solr/solr-ltr/8.4.0/solr-ltr-8.4.0-javadoc.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: dev/lucene/lucene-solr-8.4.0-RC2-revbc02ab906445fcf4e297f4ef00ab4a54fdd72ca2/solr/maven/org/apache/solr/solr-ltr/8.4.0/solr-ltr-8.4.0-javadoc.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-8.4.0-RC2-revbc02ab906445fcf4e297f4ef00ab4a54fdd72ca2/solr/maven/org/apache/solr/solr-ltr/8.4.0/solr-ltr-8.4.0-javadoc.jar.asc (added)
+++ dev/lucene/lucene-solr-8.4.0-RC2-revbc02ab906445fcf4e297f4ef00ab4a54fdd72ca2/solr/maven/org/apache/solr/solr-ltr/8.4.0/solr-ltr-8.4.0-javadoc.jar.asc Thu Dec 19 22:59:25 2019
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v1
+
+iQIcBAABAgAGBQJd+83kAAoJEAUaD692vGUHya8P/Ao9XTTfEtobUsLnOSS/aJC0
+spQOsKJtzp/l7lNkiiAq5CtoVGBuUfb/geOyzzBJVY2nxUZFEjTFs+J9OligL6ci
+CqYn/tUyDV38xsFVX4hjlIu8Ads0cWDO3ZfzH8CqCtDci0hf15tVikzZgrF+ktES
+OpRE8pCjOUV7ADSnFI27yqHgWki6hP6og1RO76/GNzi53k1FMg7LhktMfjectIWy
+FKzZSCexYrRNkOUIVidNEudbMnDa4qGGpjaNejF9T4Jxnv1waB7X5r+uCN3G993I
+fA6pCwPbaUkygBLQps2fvNV6+Y3MoyMVbTo0w7cwJH1JiBsWAC74pQokyVRwp4ZZ
+punmwLXyVwtTAPcP3Vl0XJ2ErSsQs7rFuTCOdZBB3fFS8pc8FKL1gmqVMrhWdS32
+Bj8/AbFRTf58Tj7L+++7gqYRQSmp0W9j+K8xtl5ZjwdqIGr6UFRMQnmyfxFJyhth
+3mipYKbXUvFey21eFprtZ5ayePlPPwYnNvqbn9HKfBbP31qLXUOgENJbg/ecTfCv
+HRzraT9DFTARLUv63Jbpl1vDUhWxHI2tEZGS7+UAtfXZ0MkzlQQ6TRqpCOkYzyZQ
+0qotxWtwAY+Nz3CD+olu3cevXT/lNFmByu1HZDDqqF5dkoPbZHAZ+Nc5EqxYQvkg
+b1yQpX9CaVuMlrBI5UUO
+=/6rA
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-8.4.0-RC2-revbc02ab906445fcf4e297f4ef00ab4a54fdd72ca2/solr/maven/org/apache/solr/solr-ltr/8.4.0/solr-ltr-8.4.0-javadoc.jar.md5
==============================================================================
--- dev/lucene/lucene-solr-8.4.0-RC2-revbc02ab906445fcf4e297f4ef00ab4a54fdd72ca2/solr/maven/org/apache/solr/solr-ltr/8.4.0/solr-ltr-8.4.0-javadoc.jar.md5 (added)
+++ dev/lucene/lucene-solr-8.4.0-RC2-revbc02ab906445fcf4e297f4ef00ab4a54fdd72ca2/solr/maven/org/apache/solr/solr-ltr/8.4.0/solr-ltr-8.4.0-javadoc.jar.md5 Thu Dec 19 22:59:25 2019
@@ -0,0 +1 @@
+85dfec891f665fe749ba953dd945978f
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.4.0-RC2-revbc02ab906445fcf4e297f4ef00ab4a54fdd72ca2/solr/maven/org/apache/solr/solr-ltr/8.4.0/solr-ltr-8.4.0-javadoc.jar.sha1
==============================================================================
--- dev/lucene/lucene-solr-8.4.0-RC2-revbc02ab906445fcf4e297f4ef00ab4a54fdd72ca2/solr/maven/org/apache/solr/solr-ltr/8.4.0/solr-ltr-8.4.0-javadoc.jar.sha1 (added)
+++ dev/lucene/lucene-solr-8.4.0-RC2-revbc02ab906445fcf4e297f4ef00ab4a54fdd72ca2/solr/maven/org/apache/solr/solr-ltr/8.4.0/solr-ltr-8.4.0-javadoc.jar.sha1 Thu Dec 19 22:59:25 2019
@@ -0,0 +1 @@
+e274c6981805e82420d0e6b10fb3f3c977190a82
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.4.0-RC2-revbc02ab906445fcf4e297f4ef00ab4a54fdd72ca2/solr/maven/org/apache/solr/solr-ltr/8.4.0/solr-ltr-8.4.0-sources.jar
==============================================================================
Binary file - no diff available.

Propchange: dev/lucene/lucene-solr-8.4.0-RC2-revbc02ab906445fcf4e297f4ef00ab4a54fdd72ca2/solr/maven/org/apache/solr/solr-ltr/8.4.0/solr-ltr-8.4.0-sources.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: dev/lucene/lucene-solr-8.4.0-RC2-revbc02ab906445fcf4e297f4ef00ab4a54fdd72ca2/solr/maven/org/apache/solr/solr-ltr/8.4.0/solr-ltr-8.4.0-sources.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-8.4.0-RC2-revbc02ab906445fcf4e297f4ef00ab4a54fdd72ca2/solr/maven/org/apache/solr/solr-ltr/8.4.0/solr-ltr-8.4.0-sources.jar.asc (added)
+++ dev/lucene/lucene-solr-8.4.0-RC2-revbc02ab906445fcf4e297f4ef00ab4a54fdd72ca2/solr/maven/org/apache/solr/solr-ltr/8.4.0/solr-ltr-8.4.0-sources.jar.asc Thu Dec 19 22:59:25 2019
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v1
+
+iQIcBAABAgAGBQJd+83lAAoJEAUaD692vGUH7hoQAM8EjHVC2TcUaRclUGJp2Hy/
+W7twrpjkQ/D3JG4GoEc66Iq2HYFNYGdHONyJXYyKcDWTCTyoox/tTk/eh73FB1gF
+AdvnwzynVZyKl7IwZ3VHTQTUn4RdWSVkB1zCT1CWboN/qRc8XFZckzjP0MOXtOW1
+Q1Q6vBbNIhcJnmBvyvmjhMkDvJ4Ou/hl5w7OGvQgU6xCX1aSclJtUXa4a2dwGjMF
+S3MvXbVQd0fY/XFVmm9UF2GWjYHV1wr7uDCGUe1m1EB8M8EZ5+R++jLqlAWMk6eP
+G5f24IbFfKBGakLGPQP9cSeOKSbQ52MNW651i1HpQJ9Gn13DjFwihc4N/4JwNVx8
+GGIBwbG/UnxWs21zMZq9Rv9881ej0xzh1D+58DJlb/CzF7BYav3Z4e8XmuzBrXAy
+6bLa0Qf96XghKutzuerWwfl/zFhbqZOxGBZmFetwjeWqI7BwDECJ3VnfZCWlDxzF
+92YeiQwDhYSj1bzQvThJ0z0B1YdrP7OJ5bnqBMsb9bvAKQaGUXt14b5dldaLjLx8
+ZitGpah6bpLa5ELt+DBFSC2XIZZ/43y9L2ccsPn7Necl+tB5OxjE1u/uGOa3NAGc
+EN9UFmVwuWBSjySmE3F9JLYovkJwkR134/xl3MxUBQXSXwhiqKVgFu/rF/CmkOCG
+AYbN79grkPtG6NlOogY8
+=j4KZ
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-8.4.0-RC2-revbc02ab906445fcf4e297f4ef00ab4a54fdd72ca2/solr/maven/org/apache/solr/solr-ltr/8.4.0/solr-ltr-8.4.0-sources.jar.md5
==============================================================================
--- dev/lucene/lucene-solr-8.4.0-RC2-revbc02ab906445fcf4e297f4ef00ab4a54fdd72ca2/solr/maven/org/apache/solr/solr-ltr/8.4.0/solr-ltr-8.4.0-sources.jar.md5 (added)
+++ dev/lucene/lucene-solr-8.4.0-RC2-revbc02ab906445fcf4e297f4ef00ab4a54fdd72ca2/solr/maven/org/apache/solr/solr-ltr/8.4.0/solr-ltr-8.4.0-sources.jar.md5 Thu Dec 19 22:59:25 2019
@@ -0,0 +1 @@
+1613c95f357c56c33f17453f1e7fdd52
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.4.0-RC2-revbc02ab906445fcf4e297f4ef00ab4a54fdd72ca2/solr/maven/org/apache/solr/solr-ltr/8.4.0/solr-ltr-8.4.0-sources.jar.sha1
==============================================================================
--- dev/lucene/lucene-solr-8.4.0-RC2-revbc02ab906445fcf4e297f4ef00ab4a54fdd72ca2/solr/maven/org/apache/solr/solr-ltr/8.4.0/solr-ltr-8.4.0-sources.jar.sha1 (added)
+++ dev/lucene/lucene-solr-8.4.0-RC2-revbc02ab906445fcf4e297f4ef00ab4a54fdd72ca2/solr/maven/org/apache/solr/solr-ltr/8.4.0/solr-ltr-8.4.0-sources.jar.sha1 Thu Dec 19 22:59:25 2019
@@ -0,0 +1 @@
+41e54f20f7a06259b6f053bccf9624ba78f8cc33
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.4.0-RC2-revbc02ab906445fcf4e297f4ef00ab4a54fdd72ca2/solr/maven/org/apache/solr/solr-ltr/8.4.0/solr-ltr-8.4.0.jar
==============================================================================
Binary file - no diff available.

Propchange: dev/lucene/lucene-solr-8.4.0-RC2-revbc02ab906445fcf4e297f4ef00ab4a54fdd72ca2/solr/maven/org/apache/solr/solr-ltr/8.4.0/solr-ltr-8.4.0.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: dev/lucene/lucene-solr-8.4.0-RC2-revbc02ab906445fcf4e297f4ef00ab4a54fdd72ca2/solr/maven/org/apache/solr/solr-ltr/8.4.0/solr-ltr-8.4.0.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-8.4.0-RC2-revbc02ab906445fcf4e297f4ef00ab4a54fdd72ca2/solr/maven/org/apache/solr/solr-ltr/8.4.0/solr-ltr-8.4.0.jar.asc (added)
+++ dev/lucene/lucene-solr-8.4.0-RC2-revbc02ab906445fcf4e297f4ef00ab4a54fdd72ca2/solr/maven/org/apache/solr/solr-ltr/8.4.0/solr-ltr-8.4.0.jar.asc Thu Dec 19 22:59:25 2019
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v1
+
+iQIcBAABAgAGBQJd+83lAAoJEAUaD692vGUHSC8QAMaK6Ch0ZRRHMmh2nM2Hk+Jd
+NPTkJ+uMcDsKU34ILGu3emNRLdiPUDj9CONc/7fa4ZgxuuzXj1Ha5bI3eI3ak5sk
+TaLHJ4aZ2jFF+8jY9qb2b4OLuixN6YAoESfayS/Yhr994Ir2tO1Amqud2Ux71YaX
+xQnSmJt838RX2i5dHEVCL9AoGRDbjPsN4qmW71ELl8VaWr0lblwfQAQNQb8326Gt
+or7prgXsBycPXKJF5HOzY3vpSzZeoBdVbpEp+se8bOK9jQsKD1DS15AvRUV3t8tA
+DgRRKnpHVqMc9TsgoFVLoAviBNPoXSFzsCqUJ7Ybf0N9qeOijbtpbUu8lbkfaUY7
+Im46FmFMmJhDKdPVld5zaNhC3yVANF8e4s2ZwKciI+Cl/NytXgAbIQWhX9/Jq1jc
+lPtcoseZ+/3rdDT176w3MPSFfLG7ctcfoLx4Va7No8j46n8x4SUm8Wn/71BJJpSv
+y++XHvEGpGZMkkLaIFD9gHwMP+cZ8sS4Gd1RVT59RLhow/VAV1LaqOlCGyIR/A4I
+eqq1jmOm1F5V+aGJpkyJ5lj9oc/HwjxE1SnQ5Sno9qqOvcVc9ddREJ05MK76IOIJ
+42Dxb5ZdpPxA4UriFFfoCx5f0AnQSHv5q9SnFYL5y3zSq2wDkigATidIFnB/tgYq
+hGSDpqa5ZXUB4vK3CHK3
+=5dJE
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-8.4.0-RC2-revbc02ab906445fcf4e297f4ef00ab4a54fdd72ca2/solr/maven/org/apache/solr/solr-ltr/8.4.0/solr-ltr-8.4.0.jar.md5
==============================================================================
--- dev/lucene/lucene-solr-8.4.0-RC2-revbc02ab906445fcf4e297f4ef00ab4a54fdd72ca2/solr/maven/org/apache/solr/solr-ltr/8.4.0/solr-ltr-8.4.0.jar.md5 (added)
+++ dev/lucene/lucene-solr-8.4.0-RC2-revbc02ab906445fcf4e297f4ef00ab4a54fdd72ca2/solr/maven/org/apache/solr/solr-ltr/8.4.0/solr-ltr-8.4.0.jar.md5 Thu Dec 19 22:59:25 2019
@@ -0,0 +1 @@
+3b4032bd8da98e3c2c4485539ba1974e
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.4.0-RC2-revbc02ab906445fcf4e297f4ef00ab4a54fdd72ca2/solr/maven/org/apache/solr/solr-ltr/8.4.0/solr-ltr-8.4.0.jar.sha1
==============================================================================
--- dev/lucene/lucene-solr-8.4.0-RC2-revbc02ab906445fcf4e297f4ef00ab4a54fdd72ca2/solr/maven/org/apache/solr/solr-ltr/8.4.0/solr-ltr-8.4.0.jar.sha1 (added)
+++ dev/lucene/lucene-solr-8.4.0-RC2-revbc02ab906445fcf4e297f4ef00ab4a54fdd72ca2/solr/maven/org/apache/solr/solr-ltr/8.4.0/solr-ltr-8.4.0.jar.sha1 Thu Dec 19 22:59:25 2019
@@ -0,0 +1 @@
+98d3bfa44a8a848d9d94b75dde29948433473bb5
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.4.0-RC2-revbc02ab906445fcf4e297f4ef00ab4a54fdd72ca2/solr/maven/org/apache/solr/solr-ltr/8.4.0/solr-ltr-8.4.0.pom
==============================================================================
--- dev/lucene/lucene-solr-8.4.0-RC2-revbc02ab906445fcf4e297f4ef00ab4a54fdd72ca2/solr/maven/org/apache/solr/solr-ltr/8.4.0/solr-ltr-8.4.0.pom (added)
+++ dev/lucene/lucene-solr-8.4.0-RC2-revbc02ab906445fcf4e297f4ef00ab4a54fdd72ca2/solr/maven/org/apache/solr/solr-ltr/8.4.0/solr-ltr-8.4.0.pom Thu Dec 19 22:59:25 2019
@@ -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.4.0</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.4.0-RC2-revbc02ab906445fcf4e297f4ef00ab4a54fdd72ca2/solr/maven/org/apache/solr/solr-ltr/8.4.0/solr-ltr-8.4.0.pom.asc
==============================================================================
--- dev/lucene/lucene-solr-8.4.0-RC2-revbc02ab906445fcf4e297f4ef00ab4a54fdd72ca2/solr/maven/org/apache/solr/solr-ltr/8.4.0/solr-ltr-8.4.0.pom.asc (added)
+++ dev/lucene/lucene-solr-8.4.0-RC2-revbc02ab906445fcf4e297f4ef00ab4a54fdd72ca2/solr/maven/org/apache/solr/solr-ltr/8.4.0/solr-ltr-8.4.0.pom.asc Thu Dec 19 22:59:25 2019
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v1
+
+iQIcBAABAgAGBQJd+83lAAoJEAUaD692vGUHBP8P/jU1T+V+CxF2i75/KLdkWbUu
+oz1RyDnpPlLMW+khNXWZzVqTFil95uQzhSoRaZVyRyxm4phuTHipcKxYMbR1+RjP
+OfXT+ZZLwJzNGxsJ8dq3gGvyR40L53qW9l7u+xdZjvbCuV7ca1VKULNPWvQscB/G
+aaNIAuW3vjZUA4EqUMY1R8lBolL+FLq2xMcHqNhHuCG3TbZ9Jcz+KntqasYo/BVu
+FkF/ZWod4qIFq20Hyy0fggKb13MUeB7JWFc6JEoCBJPDpb0b7Huj43xQCNjrKhHH
+bRh7w1wN7nAo6OC0ImYfr8T1SRGwv/lsUun7dPQauZOQqzeSbn5G/WPbMp099qoK
+BE07zFjXFn5rhyUQo2VwIbrJHq3gdtm72ZbzQq93bBOemHViQZ2wysLeTzCu+55k
+53OkblZvxddhUfAy+jBibRdMDaH//8sbWJDq8jT7eM+X3mWRuP079ff006wpnmZm
+bGqzsUYN+caLRYQp3i8XpiqD7Y0JzlukPi9OiCQ2yAr47n1Rc9yyUI7nPOdjEZD8
+qeElmNBnWJzBBhSwooKOxDmKpEr03/qlbRo+908QzEzAtkHdqOdfqQlAOtJNsrRq
+Feb6VxIuhuQgl7hdKcX8f6nn910ezXRbF6lLk+QfTnNEim1PaOddaSiAdzodD/8v
+KUBn9YDyh7YOPUidnveG
+=ryCj
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-8.4.0-RC2-revbc02ab906445fcf4e297f4ef00ab4a54fdd72ca2/solr/maven/org/apache/solr/solr-ltr/8.4.0/solr-ltr-8.4.0.pom.md5
==============================================================================
--- dev/lucene/lucene-solr-8.4.0-RC2-revbc02ab906445fcf4e297f4ef00ab4a54fdd72ca2/solr/maven/org/apache/solr/solr-ltr/8.4.0/solr-ltr-8.4.0.pom.md5 (added)
+++ dev/lucene/lucene-solr-8.4.0-RC2-revbc02ab906445fcf4e297f4ef00ab4a54fdd72ca2/solr/maven/org/apache/solr/solr-ltr/8.4.0/solr-ltr-8.4.0.pom.md5 Thu Dec 19 22:59:25 2019
@@ -0,0 +1 @@
+d9296f2a34a186cfd01cbbfce93c61b7
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.4.0-RC2-revbc02ab906445fcf4e297f4ef00ab4a54fdd72ca2/solr/maven/org/apache/solr/solr-ltr/8.4.0/solr-ltr-8.4.0.pom.sha1
==============================================================================
--- dev/lucene/lucene-solr-8.4.0-RC2-revbc02ab906445fcf4e297f4ef00ab4a54fdd72ca2/solr/maven/org/apache/solr/solr-ltr/8.4.0/solr-ltr-8.4.0.pom.sha1 (added)
+++ dev/lucene/lucene-solr-8.4.0-RC2-revbc02ab906445fcf4e297f4ef00ab4a54fdd72ca2/solr/maven/org/apache/solr/solr-ltr/8.4.0/solr-ltr-8.4.0.pom.sha1 Thu Dec 19 22:59:25 2019
@@ -0,0 +1 @@
+c2654ba098b301975d8c07e67072cedb061840b6
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.4.0-RC2-revbc02ab906445fcf4e297f4ef00ab4a54fdd72ca2/solr/maven/org/apache/solr/solr-ltr/maven-metadata.xml
==============================================================================
--- dev/lucene/lucene-solr-8.4.0-RC2-revbc02ab906445fcf4e297f4ef00ab4a54fdd72ca2/solr/maven/org/apache/solr/solr-ltr/maven-metadata.xml (added)
+++ dev/lucene/lucene-solr-8.4.0-RC2-revbc02ab906445fcf4e297f4ef00ab4a54fdd72ca2/solr/maven/org/apache/solr/solr-ltr/maven-metadata.xml Thu Dec 19 22:59:25 2019
@@ -0,0 +1,12 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<metadata>
+  <groupId>org.apache.solr</groupId>
+  <artifactId>solr-ltr</artifactId>
+  <version>8.4.0</version>
+  <versioning>
+    <versions>
+      <version>8.4.0</version>
+    </versions>
+    <lastUpdated>20191219192206</lastUpdated>
+  </versioning>
+</metadata>

Added: dev/lucene/lucene-solr-8.4.0-RC2-revbc02ab906445fcf4e297f4ef00ab4a54fdd72ca2/solr/maven/org/apache/solr/solr-ltr/maven-metadata.xml.md5
==============================================================================
--- dev/lucene/lucene-solr-8.4.0-RC2-revbc02ab906445fcf4e297f4ef00ab4a54fdd72ca2/solr/maven/org/apache/solr/solr-ltr/maven-metadata.xml.md5 (added)
+++ dev/lucene/lucene-solr-8.4.0-RC2-revbc02ab906445fcf4e297f4ef00ab4a54fdd72ca2/solr/maven/org/apache/solr/solr-ltr/maven-metadata.xml.md5 Thu Dec 19 22:59:25 2019
@@ -0,0 +1 @@
+40e0c0d7dacc7f81f0261ac91c1e84a0
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.4.0-RC2-revbc02ab906445fcf4e297f4ef00ab4a54fdd72ca2/solr/maven/org/apache/solr/solr-ltr/maven-metadata.xml.sha1
==============================================================================
--- dev/lucene/lucene-solr-8.4.0-RC2-revbc02ab906445fcf4e297f4ef00ab4a54fdd72ca2/solr/maven/org/apache/solr/solr-ltr/maven-metadata.xml.sha1 (added)
+++ dev/lucene/lucene-solr-8.4.0-RC2-revbc02ab906445fcf4e297f4ef00ab4a54fdd72ca2/solr/maven/org/apache/solr/solr-ltr/maven-metadata.xml.sha1 Thu Dec 19 22:59:25 2019
@@ -0,0 +1 @@
+dadd4db1319fef68ddddf65891ebfabfd8b78935
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.4.0-RC2-revbc02ab906445fcf4e297f4ef00ab4a54fdd72ca2/solr/maven/org/apache/solr/solr-parent/8.4.0/solr-parent-8.4.0.pom
==============================================================================
--- dev/lucene/lucene-solr-8.4.0-RC2-revbc02ab906445fcf4e297f4ef00ab4a54fdd72ca2/solr/maven/org/apache/solr/solr-parent/8.4.0/solr-parent-8.4.0.pom (added)
+++ dev/lucene/lucene-solr-8.4.0-RC2-revbc02ab906445fcf4e297f4ef00ab4a54fdd72ca2/solr/maven/org/apache/solr/solr-parent/8.4.0/solr-parent-8.4.0.pom Thu Dec 19 22:59:25 2019
@@ -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.4.0</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.5</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.5</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.4.0-RC2-revbc02ab906445fcf4e297f4ef00ab4a54fdd72ca2/solr/maven/org/apache/solr/solr-parent/8.4.0/solr-parent-8.4.0.pom.asc
==============================================================================
--- dev/lucene/lucene-solr-8.4.0-RC2-revbc02ab906445fcf4e297f4ef00ab4a54fdd72ca2/solr/maven/org/apache/solr/solr-parent/8.4.0/solr-parent-8.4.0.pom.asc (added)
+++ dev/lucene/lucene-solr-8.4.0-RC2-revbc02ab906445fcf4e297f4ef00ab4a54fdd72ca2/solr/maven/org/apache/solr/solr-parent/8.4.0/solr-parent-8.4.0.pom.asc Thu Dec 19 22:59:25 2019
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v1
+
+iQIcBAABAgAGBQJd+83lAAoJEAUaD692vGUHRRUQAJY1SBsccTf7wlVVe1mrxNbb
+cUZbwv0wib0E4YHWoCXkZL8iI+TBrdtK7Kq9mTBsZo6tkJsudyZECEt1B7v2Y+r5
+6EdjGk8qnoz6MT3ZDhReuUw43rG+owvF4haprrTJgdlVNVlKJmR3XLeEsJzbxbz1
+eCXQAhu3jAZQ+bd8qtrBSQL4RVoGtRqoentl+oeU8sXl//gkESWROkoWN4FtEIb5
+Q86yeWRhUsO19GnkdbHL8oGM3M6xbDmEbWMoQj1lCpy2zFAqXloC7CFr6hfzKsTX
+da0iZZeV70e8fdn00HJ4nJw8Mr4sQ7qy41o9SCQXTOrXIMx5dogqW70uhKvdMmo/
+NHcAqs7H6ur3m11mL5MRLb9U8k4wvwVpXIOtCKyOOpsfc1oVYhhMjD9jAXdkSAZT
+xMPEoLsEMtGBNQrSEOpC/E5vy1Gws7EBHsNOK2lqVsHAmy9EnIhMzVQcDto1stEj
+fXNrSBMLvuOOi0AdbYUfRbaYzjJe8PtWeO6gGUoGvsP5aEzpZmq6WMNPkDvAK05s
+Qa+SDikIBiZcT8Lq5dI97cQbBFscgO2ADSAPxm9NC4FYSNdZazUbH+zh8rIxxk2a
+jv+/j26irI9wU/svrKCeua69P+8XlMnWnT2xQLSbxLPxkZyCPSVNH95GTN8sBhPi
+Qq14r5rP3vZEOedcvSDb
+=1oHu
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-8.4.0-RC2-revbc02ab906445fcf4e297f4ef00ab4a54fdd72ca2/solr/maven/org/apache/solr/solr-parent/8.4.0/solr-parent-8.4.0.pom.md5
==============================================================================
--- dev/lucene/lucene-solr-8.4.0-RC2-revbc02ab906445fcf4e297f4ef00ab4a54fdd72ca2/solr/maven/org/apache/solr/solr-parent/8.4.0/solr-parent-8.4.0.pom.md5 (added)
+++ dev/lucene/lucene-solr-8.4.0-RC2-revbc02ab906445fcf4e297f4ef00ab4a54fdd72ca2/solr/maven/org/apache/solr/solr-parent/8.4.0/solr-parent-8.4.0.pom.md5 Thu Dec 19 22:59:25 2019
@@ -0,0 +1 @@
+3867db5ba28d971569f6c3e4d366def6
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.4.0-RC2-revbc02ab906445fcf4e297f4ef00ab4a54fdd72ca2/solr/maven/org/apache/solr/solr-parent/8.4.0/solr-parent-8.4.0.pom.sha1
==============================================================================
--- dev/lucene/lucene-solr-8.4.0-RC2-revbc02ab906445fcf4e297f4ef00ab4a54fdd72ca2/solr/maven/org/apache/solr/solr-parent/8.4.0/solr-parent-8.4.0.pom.sha1 (added)
+++ dev/lucene/lucene-solr-8.4.0-RC2-revbc02ab906445fcf4e297f4ef00ab4a54fdd72ca2/solr/maven/org/apache/solr/solr-parent/8.4.0/solr-parent-8.4.0.pom.sha1 Thu Dec 19 22:59:25 2019
@@ -0,0 +1 @@
+9408e05f6e3bcf70bd9951bfd2da8a53cd2e8492
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.4.0-RC2-revbc02ab906445fcf4e297f4ef00ab4a54fdd72ca2/solr/maven/org/apache/solr/solr-parent/maven-metadata.xml
==============================================================================
--- dev/lucene/lucene-solr-8.4.0-RC2-revbc02ab906445fcf4e297f4ef00ab4a54fdd72ca2/solr/maven/org/apache/solr/solr-parent/maven-metadata.xml (added)
+++ dev/lucene/lucene-solr-8.4.0-RC2-revbc02ab906445fcf4e297f4ef00ab4a54fdd72ca2/solr/maven/org/apache/solr/solr-parent/maven-metadata.xml Thu Dec 19 22:59:25 2019
@@ -0,0 +1,12 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<metadata>
+  <groupId>org.apache.solr</groupId>
+  <artifactId>solr-parent</artifactId>
+  <version>8.4.0</version>
+  <versioning>
+    <versions>
+      <version>8.4.0</version>
+    </versions>
+    <lastUpdated>20191219192147</lastUpdated>
+  </versioning>
+</metadata>

Added: dev/lucene/lucene-solr-8.4.0-RC2-revbc02ab906445fcf4e297f4ef00ab4a54fdd72ca2/solr/maven/org/apache/solr/solr-parent/maven-metadata.xml.md5
==============================================================================
--- dev/lucene/lucene-solr-8.4.0-RC2-revbc02ab906445fcf4e297f4ef00ab4a54fdd72ca2/solr/maven/org/apache/solr/solr-parent/maven-metadata.xml.md5 (added)
+++ dev/lucene/lucene-solr-8.4.0-RC2-revbc02ab906445fcf4e297f4ef00ab4a54fdd72ca2/solr/maven/org/apache/solr/solr-parent/maven-metadata.xml.md5 Thu Dec 19 22:59:25 2019
@@ -0,0 +1 @@
+0c3fd1a21fb8cc0b988e4c5288916d73
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.4.0-RC2-revbc02ab906445fcf4e297f4ef00ab4a54fdd72ca2/solr/maven/org/apache/solr/solr-parent/maven-metadata.xml.sha1
==============================================================================
--- dev/lucene/lucene-solr-8.4.0-RC2-revbc02ab906445fcf4e297f4ef00ab4a54fdd72ca2/solr/maven/org/apache/solr/solr-parent/maven-metadata.xml.sha1 (added)
+++ dev/lucene/lucene-solr-8.4.0-RC2-revbc02ab906445fcf4e297f4ef00ab4a54fdd72ca2/solr/maven/org/apache/solr/solr-parent/maven-metadata.xml.sha1 Thu Dec 19 22:59:25 2019
@@ -0,0 +1 @@
+1d95c38ae280eb70fab9215ff1c304092d264667
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.4.0-RC2-revbc02ab906445fcf4e297f4ef00ab4a54fdd72ca2/solr/maven/org/apache/solr/solr-prometheus-exporter/8.4.0/solr-prometheus-exporter-8.4.0-javadoc.jar
==============================================================================
Binary file - no diff available.

Propchange: dev/lucene/lucene-solr-8.4.0-RC2-revbc02ab906445fcf4e297f4ef00ab4a54fdd72ca2/solr/maven/org/apache/solr/solr-prometheus-exporter/8.4.0/solr-prometheus-exporter-8.4.0-javadoc.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: dev/lucene/lucene-solr-8.4.0-RC2-revbc02ab906445fcf4e297f4ef00ab4a54fdd72ca2/solr/maven/org/apache/solr/solr-prometheus-exporter/8.4.0/solr-prometheus-exporter-8.4.0-javadoc.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-8.4.0-RC2-revbc02ab906445fcf4e297f4ef00ab4a54fdd72ca2/solr/maven/org/apache/solr/solr-prometheus-exporter/8.4.0/solr-prometheus-exporter-8.4.0-javadoc.jar.asc (added)
+++ dev/lucene/lucene-solr-8.4.0-RC2-revbc02ab906445fcf4e297f4ef00ab4a54fdd72ca2/solr/maven/org/apache/solr/solr-prometheus-exporter/8.4.0/solr-prometheus-exporter-8.4.0-javadoc.jar.asc Thu Dec 19 22:59:25 2019
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v1
+
+iQIcBAABAgAGBQJd+83lAAoJEAUaD692vGUHdDkP/1laImioiMXmPVRLuwCfrsC0
+Jht/5CwTurw6vRHc0FOH/Rbq3Eh7fR9+DIi+VtdqlGv/gaZSYt7AOvg+21uj5qro
+95ofEQWcCbHNdwoHkDzJjwSCC/QPtrESLyk5TqIUhw3fgGTgI1BykBzKM2ihOlgF
++pMfxjf9QEUGPPh142KnrkEn/SJuKVe/DJenqf4gDO1cHiUnEwskBOAoezV1UiyA
+zHItTnHzCPR+HEQKPJcwHKKHiMDHV9Azf2B22Jn+AnJhazT+jiOel86RXvaq6UVa
+WR567uURvpReddBN0tn9fopRBPZZtmsMa8doM2d1aC504tUAXyYjxxMMXvBM0khc
+jptKfssI/I1ivaga84l8ia4e2nksbUGEOCB+aLJA05xqxvkh5EYixvkUqFy03cPx
+eUzCVeURnN/mqVwcmyt8sMVcPFTIR4HfcRl1+r/8knNw4e2E3mGCO5j1rwAN1Ec1
+I0hrzK7+18o9M3t7kFkXiCRmnRi/wn5Z1OxALoqrdYMnaT6C4wR+Muc4fqiEvTaE
+TpVZdIL7/YVB/V7G6QwYurc5C1EKG5iePsvSqRa88XBUeE3tty5/iq55s+LZgKaG
+2eP5zJsaWcq3b7qwWrY9lUPd4+KIqYl62IiJgLZ63tG8xq3kusAXm7FJjdDQC3aC
+tFIZk7GlcrQh3nBJj6L1
+=LJQo
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-8.4.0-RC2-revbc02ab906445fcf4e297f4ef00ab4a54fdd72ca2/solr/maven/org/apache/solr/solr-prometheus-exporter/8.4.0/solr-prometheus-exporter-8.4.0-javadoc.jar.md5
==============================================================================
--- dev/lucene/lucene-solr-8.4.0-RC2-revbc02ab906445fcf4e297f4ef00ab4a54fdd72ca2/solr/maven/org/apache/solr/solr-prometheus-exporter/8.4.0/solr-prometheus-exporter-8.4.0-javadoc.jar.md5 (added)
+++ dev/lucene/lucene-solr-8.4.0-RC2-revbc02ab906445fcf4e297f4ef00ab4a54fdd72ca2/solr/maven/org/apache/solr/solr-prometheus-exporter/8.4.0/solr-prometheus-exporter-8.4.0-javadoc.jar.md5 Thu Dec 19 22:59:25 2019
@@ -0,0 +1 @@
+7291e6fb9a1006b97e7792a2c4d5462c
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.4.0-RC2-revbc02ab906445fcf4e297f4ef00ab4a54fdd72ca2/solr/maven/org/apache/solr/solr-prometheus-exporter/8.4.0/solr-prometheus-exporter-8.4.0-javadoc.jar.sha1
==============================================================================
--- dev/lucene/lucene-solr-8.4.0-RC2-revbc02ab906445fcf4e297f4ef00ab4a54fdd72ca2/solr/maven/org/apache/solr/solr-prometheus-exporter/8.4.0/solr-prometheus-exporter-8.4.0-javadoc.jar.sha1 (added)
+++ dev/lucene/lucene-solr-8.4.0-RC2-revbc02ab906445fcf4e297f4ef00ab4a54fdd72ca2/solr/maven/org/apache/solr/solr-prometheus-exporter/8.4.0/solr-prometheus-exporter-8.4.0-javadoc.jar.sha1 Thu Dec 19 22:59:25 2019
@@ -0,0 +1 @@
+877eede9f5d829b46b43d55be826f42692c7123d
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.4.0-RC2-revbc02ab906445fcf4e297f4ef00ab4a54fdd72ca2/solr/maven/org/apache/solr/solr-prometheus-exporter/8.4.0/solr-prometheus-exporter-8.4.0-sources.jar
==============================================================================
Binary file - no diff available.

Propchange: dev/lucene/lucene-solr-8.4.0-RC2-revbc02ab906445fcf4e297f4ef00ab4a54fdd72ca2/solr/maven/org/apache/solr/solr-prometheus-exporter/8.4.0/solr-prometheus-exporter-8.4.0-sources.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: dev/lucene/lucene-solr-8.4.0-RC2-revbc02ab906445fcf4e297f4ef00ab4a54fdd72ca2/solr/maven/org/apache/solr/solr-prometheus-exporter/8.4.0/solr-prometheus-exporter-8.4.0-sources.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-8.4.0-RC2-revbc02ab906445fcf4e297f4ef00ab4a54fdd72ca2/solr/maven/org/apache/solr/solr-prometheus-exporter/8.4.0/solr-prometheus-exporter-8.4.0-sources.jar.asc (added)
+++ dev/lucene/lucene-solr-8.4.0-RC2-revbc02ab906445fcf4e297f4ef00ab4a54fdd72ca2/solr/maven/org/apache/solr/solr-prometheus-exporter/8.4.0/solr-prometheus-exporter-8.4.0-sources.jar.asc Thu Dec 19 22:59:25 2019
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v1
+
+iQIcBAABAgAGBQJd+83lAAoJEAUaD692vGUHOBwQAJUmRnvCY4AD8LK8coq3gqKK
+kzhb/h7C0J1N9tAFrlOEiOSvr4sC2qRVt37+3R4L6pePWF+r1G4LIzG15yKHS7V2
+D7Gf485H3b5VgdMn4iPmD+GqYwov4U/7h3Rk7zbEQs++S7JmNS9lsCggtX+CpwHr
+Gaem6lxzUVVGS+d6KWnVQ6t1FjHr013KKWLdDDDk16M1WPba+iI1nNpVe/klNW2p
+nAl1QULDVYYdNdyAxx/WpgnWg7fqR1HWbjNNf8HpkO2IFbK6OvBUu8nYjtnBOq1k
++e/h/Lk7qcN9O0sl1ol7dlXSHnTNI+rBORfKJI+zGrytM6APOGwEJeq7JZ5PW2sF
+N11qTxhBC0PpWYjUMqlwzAaMNRbA0jdFWzbCok3m4PdV1OkAAzUKsl80OFl+cnZr
+ccDUcuJEKxaHJtTPFvQdOHDTzXU6XLt/dj6ldSvzucOs8kmtL1OtUAW7a905L2sD
+XLeK6+MogNyCLDCcguB8L+J0lZQPma5lAjbNi1gdchxkypEx+JVXlGeXAEZXVMJa
+fje9lXpJ2Lknf96UljqtBJr2s2afbzYqq1pafBqMa2uDmGiEOWAsDS3ii5UNowhj
+HFhVGCqGW9Qym+jT2kCgMLINamYpGe3hDsvPAKU16q4Do4wcJ9QAnZ+cKqyJcX70
+pVa+1zmfyLYufLXMT7HV
+=XY6x
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-8.4.0-RC2-revbc02ab906445fcf4e297f4ef00ab4a54fdd72ca2/solr/maven/org/apache/solr/solr-prometheus-exporter/8.4.0/solr-prometheus-exporter-8.4.0-sources.jar.md5
==============================================================================
--- dev/lucene/lucene-solr-8.4.0-RC2-revbc02ab906445fcf4e297f4ef00ab4a54fdd72ca2/solr/maven/org/apache/solr/solr-prometheus-exporter/8.4.0/solr-prometheus-exporter-8.4.0-sources.jar.md5 (added)
+++ dev/lucene/lucene-solr-8.4.0-RC2-revbc02ab906445fcf4e297f4ef00ab4a54fdd72ca2/solr/maven/org/apache/solr/solr-prometheus-exporter/8.4.0/solr-prometheus-exporter-8.4.0-sources.jar.md5 Thu Dec 19 22:59:25 2019
@@ -0,0 +1 @@
+cdcf6cce0535e5ae4f10619c1fbda1fe
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.4.0-RC2-revbc02ab906445fcf4e297f4ef00ab4a54fdd72ca2/solr/maven/org/apache/solr/solr-prometheus-exporter/8.4.0/solr-prometheus-exporter-8.4.0-sources.jar.sha1
==============================================================================
--- dev/lucene/lucene-solr-8.4.0-RC2-revbc02ab906445fcf4e297f4ef00ab4a54fdd72ca2/solr/maven/org/apache/solr/solr-prometheus-exporter/8.4.0/solr-prometheus-exporter-8.4.0-sources.jar.sha1 (added)
+++ dev/lucene/lucene-solr-8.4.0-RC2-revbc02ab906445fcf4e297f4ef00ab4a54fdd72ca2/solr/maven/org/apache/solr/solr-prometheus-exporter/8.4.0/solr-prometheus-exporter-8.4.0-sources.jar.sha1 Thu Dec 19 22:59:25 2019
@@ -0,0 +1 @@
+deb39c8c65492c728d1d9b39aaa6f2008b53da44
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.4.0-RC2-revbc02ab906445fcf4e297f4ef00ab4a54fdd72ca2/solr/maven/org/apache/solr/solr-prometheus-exporter/8.4.0/solr-prometheus-exporter-8.4.0.jar
==============================================================================
Binary file - no diff available.

Propchange: dev/lucene/lucene-solr-8.4.0-RC2-revbc02ab906445fcf4e297f4ef00ab4a54fdd72ca2/solr/maven/org/apache/solr/solr-prometheus-exporter/8.4.0/solr-prometheus-exporter-8.4.0.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: dev/lucene/lucene-solr-8.4.0-RC2-revbc02ab906445fcf4e297f4ef00ab4a54fdd72ca2/solr/maven/org/apache/solr/solr-prometheus-exporter/8.4.0/solr-prometheus-exporter-8.4.0.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-8.4.0-RC2-revbc02ab906445fcf4e297f4ef00ab4a54fdd72ca2/solr/maven/org/apache/solr/solr-prometheus-exporter/8.4.0/solr-prometheus-exporter-8.4.0.jar.asc (added)
+++ dev/lucene/lucene-solr-8.4.0-RC2-revbc02ab906445fcf4e297f4ef00ab4a54fdd72ca2/solr/maven/org/apache/solr/solr-prometheus-exporter/8.4.0/solr-prometheus-exporter-8.4.0.jar.asc Thu Dec 19 22:59:25 2019
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v1
+
+iQIcBAABAgAGBQJd+83lAAoJEAUaD692vGUH1KcP/iUbLdVs2F5HHEAmyLgl6AAW
+qG2OMZ4fKF+49ld/95gTAHN/9VvaXacntc1BzamPfApkS7lJLB+X5UqNtKXDhbr1
+SH0byn24zoLFfppjrrFW/NAa8pYwDve/hDqFc8fGBnQnZCLNmhVKpY3TQU7K9f02
+Ww2bjJd3TREd41/n6/UdgTqtKteAlLBWyVQr4/65QYrZfOYIJ6eJ44m2ENS4oKoi
+ZYz3xOatlnbaVrijOHz81ytJM0Zkn6XEEGBs7MEHkdj6zROYXSi4U0mMGilCV6ec
+/eNw34SQJ4PtW5/PwXOcY1LxBVZic6Ax4cMQLVvG53J46OIBilQ88+jkIfqmOMAm
+tu9Yb4Q65KUWViQL/uWT8PNKDI2ullJCAxkg5C8LPH3XHvpP9H1N+zG7ZukJETuK
+pf00mtLzBtokDFgq2ueaPM3rnmeVIIms2ViitynwmnQ5umJbnCuBdwGRsLlC43bp
+cFTJ1Vdhr1PPUMEnGLFqjwy3PhOXWD9tsanOqbmIAO0sw/7gR9Zv3wYJ+Rd7Oy1f
+4in+AC6Rk3i1mAPs55UvKceTsk1grcvxPch2QUhT+n6SdLGPoCkBAX19te7Gc1Vm
+VxrtdDw8hLDuiQw/ipXOsN9FU8Gl2skRFLD7EWTq3hKZCxkt8BHLt1//UT3WOKjl
+d0SzDLlhMgxQlkFdfyeS
+=BK4G
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-8.4.0-RC2-revbc02ab906445fcf4e297f4ef00ab4a54fdd72ca2/solr/maven/org/apache/solr/solr-prometheus-exporter/8.4.0/solr-prometheus-exporter-8.4.0.jar.md5
==============================================================================
--- dev/lucene/lucene-solr-8.4.0-RC2-revbc02ab906445fcf4e297f4ef00ab4a54fdd72ca2/solr/maven/org/apache/solr/solr-prometheus-exporter/8.4.0/solr-prometheus-exporter-8.4.0.jar.md5 (added)
+++ dev/lucene/lucene-solr-8.4.0-RC2-revbc02ab906445fcf4e297f4ef00ab4a54fdd72ca2/solr/maven/org/apache/solr/solr-prometheus-exporter/8.4.0/solr-prometheus-exporter-8.4.0.jar.md5 Thu Dec 19 22:59:25 2019
@@ -0,0 +1 @@
+fce44b339fbca3d01f476d2f10acd239
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.4.0-RC2-revbc02ab906445fcf4e297f4ef00ab4a54fdd72ca2/solr/maven/org/apache/solr/solr-prometheus-exporter/8.4.0/solr-prometheus-exporter-8.4.0.jar.sha1
==============================================================================
--- dev/lucene/lucene-solr-8.4.0-RC2-revbc02ab906445fcf4e297f4ef00ab4a54fdd72ca2/solr/maven/org/apache/solr/solr-prometheus-exporter/8.4.0/solr-prometheus-exporter-8.4.0.jar.sha1 (added)
+++ dev/lucene/lucene-solr-8.4.0-RC2-revbc02ab906445fcf4e297f4ef00ab4a54fdd72ca2/solr/maven/org/apache/solr/solr-prometheus-exporter/8.4.0/solr-prometheus-exporter-8.4.0.jar.sha1 Thu Dec 19 22:59:25 2019
@@ -0,0 +1 @@
+18f03becc17e714f6c212b5bd4ccb077a9a158a6
\ No newline at end of file