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

svn commit: r40939 [17/19] - in /dev/lucene/lucene-solr-8.6.1-RC2-rev6e11a1c3f0599f1c918bc69c4f51928d23160e99: ./ 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.6.1-RC2-rev6e11a1c3f0599f1c918bc69c4f51928d23160e99/solr/maven/org/apache/solr/solr-langid/8.6.1/solr-langid-8.6.1.pom
==============================================================================
--- dev/lucene/lucene-solr-8.6.1-RC2-rev6e11a1c3f0599f1c918bc69c4f51928d23160e99/solr/maven/org/apache/solr/solr-langid/8.6.1/solr-langid-8.6.1.pom (added)
+++ dev/lucene/lucene-solr-8.6.1-RC2-rev6e11a1c3f0599f1c918bc69c4f51928d23160e99/solr/maven/org/apache/solr/solr-langid/8.6.1/solr-langid-8.6.1.pom Mon Aug 10 18:54:58 2020
@@ -0,0 +1,778 @@
+<!--
+  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.6.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-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.6.1-RC2-rev6e11a1c3f0599f1c918bc69c4f51928d23160e99/solr/maven/org/apache/solr/solr-langid/8.6.1/solr-langid-8.6.1.pom.asc
==============================================================================
--- dev/lucene/lucene-solr-8.6.1-RC2-rev6e11a1c3f0599f1c918bc69c4f51928d23160e99/solr/maven/org/apache/solr/solr-langid/8.6.1/solr-langid-8.6.1.pom.asc (added)
+++ dev/lucene/lucene-solr-8.6.1-RC2-rev6e11a1c3f0599f1c918bc69c4f51928d23160e99/solr/maven/org/apache/solr/solr-langid/8.6.1/solr-langid-8.6.1.pom.asc Mon Aug 10 18:54:58 2020
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCAAdFiEEUOPuHJHH4MtN+wB7NpQk/Jjz9uwFAl8xhW0ACgkQNpQk/Jjz
+9uyJFA/9EHE01MQQSIXdLZEF4ae/0ABAXlw/3AQ5NFzmU0ZvzieUNh0K6w0diLk0
+o91Fer2mTUOsgdL+dGgUhY9mTXuZQP0QDLDbaJ5ehNZ1xzX5i3I74kxzvrCHwWYt
+C78N00zWEa0HdaYAZUJJ+eVgrbmqK2Jqqq+ZfRBFlF5JaCfMaLYEBhs25G4yRG1Q
+YMrI2+43W6eLo+S62wlG3Kgo1CIo3o9hJGg22/Pea1577j55qs+vCw2/QBoYPBWj
+24YSFC53eHqZB1YavP41be2X0yfACHZCd75Zykg33EKb3p0Sr1cJtDiNFZ1Pwh+W
+iBa21N95ECEZfkrPrb8sULTQG+IeMI411m2G3xacOTf7hjRdncCPkd7ZBZqh9X7s
+IcvDy1zE9VauEwZg1JqjlphiNgTPJmqqxGtb6bL/3MjAAXR9n9eD6hzqEMluKtAz
+nmj7LCfC1kXlDfyf8+KTEWNtCbAy+CBya4DvQE8hwGjv/7VjcoB3w6vchBTKyzBn
+oc7+JNFrVGEunymfh86w+yrJ0J6a7wHw3zXLZhGLiL6vauZuglbSBx5ntb5gnRgH
+1y5pMEV0iIjybY4Bm0ggZmyuYv1kS5kRxBZpuxpt4FTHXKQy+geI3sBI70q52poL
+pVeTdlVjIPtgK8qj8t6DFvlT8hEzOkPSGk8NfKIHpthBb9TiEiw=
+=qQ1K
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-8.6.1-RC2-rev6e11a1c3f0599f1c918bc69c4f51928d23160e99/solr/maven/org/apache/solr/solr-langid/8.6.1/solr-langid-8.6.1.pom.md5
==============================================================================
--- dev/lucene/lucene-solr-8.6.1-RC2-rev6e11a1c3f0599f1c918bc69c4f51928d23160e99/solr/maven/org/apache/solr/solr-langid/8.6.1/solr-langid-8.6.1.pom.md5 (added)
+++ dev/lucene/lucene-solr-8.6.1-RC2-rev6e11a1c3f0599f1c918bc69c4f51928d23160e99/solr/maven/org/apache/solr/solr-langid/8.6.1/solr-langid-8.6.1.pom.md5 Mon Aug 10 18:54:58 2020
@@ -0,0 +1 @@
+c1b7b0020b6fc6d79ef66e9cbcfe3ffa
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.6.1-RC2-rev6e11a1c3f0599f1c918bc69c4f51928d23160e99/solr/maven/org/apache/solr/solr-langid/8.6.1/solr-langid-8.6.1.pom.sha1
==============================================================================
--- dev/lucene/lucene-solr-8.6.1-RC2-rev6e11a1c3f0599f1c918bc69c4f51928d23160e99/solr/maven/org/apache/solr/solr-langid/8.6.1/solr-langid-8.6.1.pom.sha1 (added)
+++ dev/lucene/lucene-solr-8.6.1-RC2-rev6e11a1c3f0599f1c918bc69c4f51928d23160e99/solr/maven/org/apache/solr/solr-langid/8.6.1/solr-langid-8.6.1.pom.sha1 Mon Aug 10 18:54:58 2020
@@ -0,0 +1 @@
+246b641c6495d2d0724ac26ebb609aedf600866f
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.6.1-RC2-rev6e11a1c3f0599f1c918bc69c4f51928d23160e99/solr/maven/org/apache/solr/solr-langid/maven-metadata.xml
==============================================================================
--- dev/lucene/lucene-solr-8.6.1-RC2-rev6e11a1c3f0599f1c918bc69c4f51928d23160e99/solr/maven/org/apache/solr/solr-langid/maven-metadata.xml (added)
+++ dev/lucene/lucene-solr-8.6.1-RC2-rev6e11a1c3f0599f1c918bc69c4f51928d23160e99/solr/maven/org/apache/solr/solr-langid/maven-metadata.xml Mon Aug 10 18:54:58 2020
@@ -0,0 +1,12 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<metadata>
+  <groupId>org.apache.solr</groupId>
+  <artifactId>solr-langid</artifactId>
+  <version>8.6.1</version>
+  <versioning>
+    <versions>
+      <version>8.6.1</version>
+    </versions>
+    <lastUpdated>20200810173522</lastUpdated>
+  </versioning>
+</metadata>

Added: dev/lucene/lucene-solr-8.6.1-RC2-rev6e11a1c3f0599f1c918bc69c4f51928d23160e99/solr/maven/org/apache/solr/solr-langid/maven-metadata.xml.md5
==============================================================================
--- dev/lucene/lucene-solr-8.6.1-RC2-rev6e11a1c3f0599f1c918bc69c4f51928d23160e99/solr/maven/org/apache/solr/solr-langid/maven-metadata.xml.md5 (added)
+++ dev/lucene/lucene-solr-8.6.1-RC2-rev6e11a1c3f0599f1c918bc69c4f51928d23160e99/solr/maven/org/apache/solr/solr-langid/maven-metadata.xml.md5 Mon Aug 10 18:54:58 2020
@@ -0,0 +1 @@
+827261cb003657d22b8fa847ce04f79a
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.6.1-RC2-rev6e11a1c3f0599f1c918bc69c4f51928d23160e99/solr/maven/org/apache/solr/solr-langid/maven-metadata.xml.sha1
==============================================================================
--- dev/lucene/lucene-solr-8.6.1-RC2-rev6e11a1c3f0599f1c918bc69c4f51928d23160e99/solr/maven/org/apache/solr/solr-langid/maven-metadata.xml.sha1 (added)
+++ dev/lucene/lucene-solr-8.6.1-RC2-rev6e11a1c3f0599f1c918bc69c4f51928d23160e99/solr/maven/org/apache/solr/solr-langid/maven-metadata.xml.sha1 Mon Aug 10 18:54:58 2020
@@ -0,0 +1 @@
+52b7e04121aa7984e5d03ac991c55762fe4f1caa
\ No newline at end of file

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

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

Added: dev/lucene/lucene-solr-8.6.1-RC2-rev6e11a1c3f0599f1c918bc69c4f51928d23160e99/solr/maven/org/apache/solr/solr-ltr/8.6.1/solr-ltr-8.6.1-javadoc.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-8.6.1-RC2-rev6e11a1c3f0599f1c918bc69c4f51928d23160e99/solr/maven/org/apache/solr/solr-ltr/8.6.1/solr-ltr-8.6.1-javadoc.jar.asc (added)
+++ dev/lucene/lucene-solr-8.6.1-RC2-rev6e11a1c3f0599f1c918bc69c4f51928d23160e99/solr/maven/org/apache/solr/solr-ltr/8.6.1/solr-ltr-8.6.1-javadoc.jar.asc Mon Aug 10 18:54:58 2020
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCAAdFiEEUOPuHJHH4MtN+wB7NpQk/Jjz9uwFAl8xhW0ACgkQNpQk/Jjz
+9uylaw/9Fo1AqRUKWUKZ7uwTFqKuWw3XzDFuZDHZzH82uy9mNdixha2laPh0uNTd
+3Njlz/sqQNQg/xO9/iP5i6FWOEqOtcODFGB+Ee82e/w9k6b8Jc9YAbLVw1GTClzR
+Q79YIM5q3zGloFSZp8PCqBUHSrrh7+w+LIf4LgLdU2M/sdTQ/50vS1JbHtrqlu0k
+0FdUYqlQc1E0Xj4idCAjn065t2cXiVEZHyLV+k3CA0CQ8EZhneXkPa59J5w9z0Be
+oz848bzywVvtHfoN4CMzKNDk8UjLH2t5vZFV+jF5No27ZzvPkW5hAiD3eHYF+AGs
+wBeVWzyk2JU/yH1zeK/cKA4cuUkpNuwJuSHXHwxlwZ15h/TxJwhnPaB96GsrAMOF
+EZfYap+fBV4peHEvYtGCvNrKApZlvchMfTixVXGI5HXHnRUB7e1nuh7P+iBdIOzb
+1UjH2sTCgt1fzQKeGQktcEJhYZ9SSJJqlViNxQDwJeEaZQm2AnXGsfUfA2fmxryS
+8mGb0Q/uKUUQztkOJYuTfKMobfXBJ9MBct3/cDEogVw2c8bokJWEMgTdBE2Wpa/f
+mv7fPNZRqsocdN5kPHgBBp36snll4blUTcooktfYwDfNjkk7g7i39+wAvwwMJ2mo
+N/CB7Q3KJQMDvbIh2BW2Ku+LzS8+rqwglMmAt8v846n86nFBDIw=
+=F9Be
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-8.6.1-RC2-rev6e11a1c3f0599f1c918bc69c4f51928d23160e99/solr/maven/org/apache/solr/solr-ltr/8.6.1/solr-ltr-8.6.1-javadoc.jar.md5
==============================================================================
--- dev/lucene/lucene-solr-8.6.1-RC2-rev6e11a1c3f0599f1c918bc69c4f51928d23160e99/solr/maven/org/apache/solr/solr-ltr/8.6.1/solr-ltr-8.6.1-javadoc.jar.md5 (added)
+++ dev/lucene/lucene-solr-8.6.1-RC2-rev6e11a1c3f0599f1c918bc69c4f51928d23160e99/solr/maven/org/apache/solr/solr-ltr/8.6.1/solr-ltr-8.6.1-javadoc.jar.md5 Mon Aug 10 18:54:58 2020
@@ -0,0 +1 @@
+a814040919fe3bdee20d0c99d1a682ff
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.6.1-RC2-rev6e11a1c3f0599f1c918bc69c4f51928d23160e99/solr/maven/org/apache/solr/solr-ltr/8.6.1/solr-ltr-8.6.1-javadoc.jar.sha1
==============================================================================
--- dev/lucene/lucene-solr-8.6.1-RC2-rev6e11a1c3f0599f1c918bc69c4f51928d23160e99/solr/maven/org/apache/solr/solr-ltr/8.6.1/solr-ltr-8.6.1-javadoc.jar.sha1 (added)
+++ dev/lucene/lucene-solr-8.6.1-RC2-rev6e11a1c3f0599f1c918bc69c4f51928d23160e99/solr/maven/org/apache/solr/solr-ltr/8.6.1/solr-ltr-8.6.1-javadoc.jar.sha1 Mon Aug 10 18:54:58 2020
@@ -0,0 +1 @@
+555c114989875a9c07b8ae9e02f0e24d7ff2f8da
\ No newline at end of file

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

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

Added: dev/lucene/lucene-solr-8.6.1-RC2-rev6e11a1c3f0599f1c918bc69c4f51928d23160e99/solr/maven/org/apache/solr/solr-ltr/8.6.1/solr-ltr-8.6.1-sources.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-8.6.1-RC2-rev6e11a1c3f0599f1c918bc69c4f51928d23160e99/solr/maven/org/apache/solr/solr-ltr/8.6.1/solr-ltr-8.6.1-sources.jar.asc (added)
+++ dev/lucene/lucene-solr-8.6.1-RC2-rev6e11a1c3f0599f1c918bc69c4f51928d23160e99/solr/maven/org/apache/solr/solr-ltr/8.6.1/solr-ltr-8.6.1-sources.jar.asc Mon Aug 10 18:54:58 2020
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCAAdFiEEUOPuHJHH4MtN+wB7NpQk/Jjz9uwFAl8xhW0ACgkQNpQk/Jjz
+9uzxDhAAjZpPHyubPBxS/16mkR0iIg56e9EgjudRpY3bm2DhoXnaPqPBoePMv7iI
+3agFcFNZA/AKF420480Oo2yM0BurcYRMDozYssCD8Sd0SwRfmChgJBEin/4wJRBC
+DumOG9CrYxghxNYv76TY1u5npQOGRjhBuKJWEAoWKMyBFY+PsukkSO4Tf4uK4wHo
+1wB0pAmSnCX8vGs9hv00YPtb6NGGC1oAES1/Eri+42ugmf5wh6ETRq8JLnwjw94L
+cqGucXwUcahpDLf87DHJb9zCZZB8W46P5Ewjdo+MrmlOompRJ5m1IraKD9gUYUpa
+xtAlttjoe8bVhZp5TGXRlSi/98yNanJWp+g8vVW4VrEhK+mWOyn5znV7kCEXltr4
+U7pdou+ohPzK8uOU/LwOuFFoV7N8wX2Y2NDdK3gqTX8IKhHjxgWtM2xakczd+8zC
+Yw1rpZWj2YL2N9fezb9mkKU1IJV+gt3jMtVNWtgTBOW8FrOaXpkfrt/doCRmoi5A
+VjcasAlHT3aoHAF4MNAIFfy8ZjPANdwEzeSnLilTEgfFk+99NzBr2GxO/ezJXxkz
+MbqhwQr63ZV58hA7qTW6l94uNkyQuEpFC3Yq82XIhNVCOOi4ZgCn+3x1Lp/L2eN8
+eSte+W0wyaXAkgvLWYK8aYQXqMwrj/aPBo3cWojDmLOjXd8wYB8=
+=IZ2B
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-8.6.1-RC2-rev6e11a1c3f0599f1c918bc69c4f51928d23160e99/solr/maven/org/apache/solr/solr-ltr/8.6.1/solr-ltr-8.6.1-sources.jar.md5
==============================================================================
--- dev/lucene/lucene-solr-8.6.1-RC2-rev6e11a1c3f0599f1c918bc69c4f51928d23160e99/solr/maven/org/apache/solr/solr-ltr/8.6.1/solr-ltr-8.6.1-sources.jar.md5 (added)
+++ dev/lucene/lucene-solr-8.6.1-RC2-rev6e11a1c3f0599f1c918bc69c4f51928d23160e99/solr/maven/org/apache/solr/solr-ltr/8.6.1/solr-ltr-8.6.1-sources.jar.md5 Mon Aug 10 18:54:58 2020
@@ -0,0 +1 @@
+c460e3059673c0c907d02433325c7121
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.6.1-RC2-rev6e11a1c3f0599f1c918bc69c4f51928d23160e99/solr/maven/org/apache/solr/solr-ltr/8.6.1/solr-ltr-8.6.1-sources.jar.sha1
==============================================================================
--- dev/lucene/lucene-solr-8.6.1-RC2-rev6e11a1c3f0599f1c918bc69c4f51928d23160e99/solr/maven/org/apache/solr/solr-ltr/8.6.1/solr-ltr-8.6.1-sources.jar.sha1 (added)
+++ dev/lucene/lucene-solr-8.6.1-RC2-rev6e11a1c3f0599f1c918bc69c4f51928d23160e99/solr/maven/org/apache/solr/solr-ltr/8.6.1/solr-ltr-8.6.1-sources.jar.sha1 Mon Aug 10 18:54:58 2020
@@ -0,0 +1 @@
+ff508657bbe86e080d5faab451c34c3b4558a84e
\ No newline at end of file

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

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

Added: dev/lucene/lucene-solr-8.6.1-RC2-rev6e11a1c3f0599f1c918bc69c4f51928d23160e99/solr/maven/org/apache/solr/solr-ltr/8.6.1/solr-ltr-8.6.1.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-8.6.1-RC2-rev6e11a1c3f0599f1c918bc69c4f51928d23160e99/solr/maven/org/apache/solr/solr-ltr/8.6.1/solr-ltr-8.6.1.jar.asc (added)
+++ dev/lucene/lucene-solr-8.6.1-RC2-rev6e11a1c3f0599f1c918bc69c4f51928d23160e99/solr/maven/org/apache/solr/solr-ltr/8.6.1/solr-ltr-8.6.1.jar.asc Mon Aug 10 18:54:58 2020
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCAAdFiEEUOPuHJHH4MtN+wB7NpQk/Jjz9uwFAl8xhW4ACgkQNpQk/Jjz
+9ux8qRAAzmpiGSjv6fBNSuRO5E49J+/3qtyo3HWBJpJXc/r4i9AXjo2rs2oFr6MV
+N+opk/f2a9uz665w5Dre7Ngcr0eX6AHChc0WFBW6USagF2OnhqulhN25fMUkkNn9
+g+my9EuHT1J0FpV6f3HTwSJL2gN9Ug+5L71jFJJtsSlB35jXOSfJlLBX0b9QIlkb
+EJBvZVMDlYvBUY33LQ6bvDsCWnRalmW+z/z5ViKJB80wssuZjubrkUXFad/aLIzf
+6nNAirBYmbB/b1SLKuJ1krBfncGPZE/EatzDEUmYS8RROxhhDzSyo0mUFxwd+BWk
+iYlBPiEOSxwWTpfva51fR+TVUpNG0NtYc37SnOwC5VenkvNb7qVAsx0ra2XXZEBs
+3NyVd4RlI5YJ8lyogeKzxi+DD0XMYpRbEUzYc5h44EBaQP4faItruVj8eQvsrGB1
+KjfnVu0oYEEgyY8Sa90sX8Emq11CPiyGlRGXpz3gmiMqABOAML7J/S0MNHOsI2ZD
+/GiFOmZK8odYuhNrsZkwJmtk4h1MzeXG4GR8A8YLFqUrsWeLEACkwO5CRnUlAitI
+yfd0hfnx6yTzWl53XwMEFBTf3gl8mTwPFBUGHq+hClcAIKKmikHEwRzdUlBIKsbo
+ttY6Jl2rfD6qv0YYZWPOjDEi7clWdUMEA/9mGtU7yjNZWhpL+gQ=
+=8bS4
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-8.6.1-RC2-rev6e11a1c3f0599f1c918bc69c4f51928d23160e99/solr/maven/org/apache/solr/solr-ltr/8.6.1/solr-ltr-8.6.1.jar.md5
==============================================================================
--- dev/lucene/lucene-solr-8.6.1-RC2-rev6e11a1c3f0599f1c918bc69c4f51928d23160e99/solr/maven/org/apache/solr/solr-ltr/8.6.1/solr-ltr-8.6.1.jar.md5 (added)
+++ dev/lucene/lucene-solr-8.6.1-RC2-rev6e11a1c3f0599f1c918bc69c4f51928d23160e99/solr/maven/org/apache/solr/solr-ltr/8.6.1/solr-ltr-8.6.1.jar.md5 Mon Aug 10 18:54:58 2020
@@ -0,0 +1 @@
+664f97d6a01b6443dee362c006cfcfe7
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.6.1-RC2-rev6e11a1c3f0599f1c918bc69c4f51928d23160e99/solr/maven/org/apache/solr/solr-ltr/8.6.1/solr-ltr-8.6.1.jar.sha1
==============================================================================
--- dev/lucene/lucene-solr-8.6.1-RC2-rev6e11a1c3f0599f1c918bc69c4f51928d23160e99/solr/maven/org/apache/solr/solr-ltr/8.6.1/solr-ltr-8.6.1.jar.sha1 (added)
+++ dev/lucene/lucene-solr-8.6.1-RC2-rev6e11a1c3f0599f1c918bc69c4f51928d23160e99/solr/maven/org/apache/solr/solr-ltr/8.6.1/solr-ltr-8.6.1.jar.sha1 Mon Aug 10 18:54:58 2020
@@ -0,0 +1 @@
+2dda143c9b04b5e00d194058ea4fa4a46372f681
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.6.1-RC2-rev6e11a1c3f0599f1c918bc69c4f51928d23160e99/solr/maven/org/apache/solr/solr-ltr/8.6.1/solr-ltr-8.6.1.pom
==============================================================================
--- dev/lucene/lucene-solr-8.6.1-RC2-rev6e11a1c3f0599f1c918bc69c4f51928d23160e99/solr/maven/org/apache/solr/solr-ltr/8.6.1/solr-ltr-8.6.1.pom (added)
+++ dev/lucene/lucene-solr-8.6.1-RC2-rev6e11a1c3f0599f1c918bc69c4f51928d23160e99/solr/maven/org/apache/solr/solr-ltr/8.6.1/solr-ltr-8.6.1.pom Mon Aug 10 18:54:58 2020
@@ -0,0 +1,598 @@
+<!--
+  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.6.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-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.6.1-RC2-rev6e11a1c3f0599f1c918bc69c4f51928d23160e99/solr/maven/org/apache/solr/solr-ltr/8.6.1/solr-ltr-8.6.1.pom.asc
==============================================================================
--- dev/lucene/lucene-solr-8.6.1-RC2-rev6e11a1c3f0599f1c918bc69c4f51928d23160e99/solr/maven/org/apache/solr/solr-ltr/8.6.1/solr-ltr-8.6.1.pom.asc (added)
+++ dev/lucene/lucene-solr-8.6.1-RC2-rev6e11a1c3f0599f1c918bc69c4f51928d23160e99/solr/maven/org/apache/solr/solr-ltr/8.6.1/solr-ltr-8.6.1.pom.asc Mon Aug 10 18:54:58 2020
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCAAdFiEEUOPuHJHH4MtN+wB7NpQk/Jjz9uwFAl8xhW4ACgkQNpQk/Jjz
+9uw0txAAqj2VpI+fy39w7IDWtCd7UO0fNj6ZeKSMAROKIj+5Bc9bjdkzLerOsJA+
+ag4H+1AkctfOvULNXEOE4arCOrfp576oI4wqXeHo8jmdrz/EUbNzXqEGOMXwzekc
+2Y1k312nGd//ImTXhYESz0UdLaEjFcIrA6KOMUGC9g0kCIXhWUSc8no24dK1H4un
+WA2HhOSgc3UuTDgM61uDYuVvkggKehTLEn+uHk6Z6GD0dQpz25DUL+Z77ixYjZtI
+2itLlb21CE6uhwfAoFKR/f4KL2O+3vlMoERlKYUO94Fe2AROr1YrVVSwv8U3xr/W
+hjZK8jD8fn2AOupyUxtUgIRHmVa11idZZ2OSDJdeDpDQlQ9kqrI0TytAsKQnzKQM
+AagwxAAzEbM24JIk3YjvhG+gt+gZcYX/4mrc8kEc7HbVWzXtKBUmrkHfXGuJzb0e
+fjqV0vOTSCYmt3FS2omrUMcfSUW810a8BVtf91yEef0XLdMNmVNFOM49E3G72RQo
+Vn4IVxeyqWa5xzS0Ke9RCcC9QshjQgm7rN1bLlu6x0Qt8j9hPGvklOv9SLY/uTpv
+kbtl0nnRQJB7KfHKERO42MjSuglIL5/pT3t3n9RKmR6dZA0zQd18csxY9yErtsV/
+B85rXujiCRafysi8VoAwyv2LaxKE59Q+3nP8uEsdeP4fefyemhw=
+=cwSz
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-8.6.1-RC2-rev6e11a1c3f0599f1c918bc69c4f51928d23160e99/solr/maven/org/apache/solr/solr-ltr/8.6.1/solr-ltr-8.6.1.pom.md5
==============================================================================
--- dev/lucene/lucene-solr-8.6.1-RC2-rev6e11a1c3f0599f1c918bc69c4f51928d23160e99/solr/maven/org/apache/solr/solr-ltr/8.6.1/solr-ltr-8.6.1.pom.md5 (added)
+++ dev/lucene/lucene-solr-8.6.1-RC2-rev6e11a1c3f0599f1c918bc69c4f51928d23160e99/solr/maven/org/apache/solr/solr-ltr/8.6.1/solr-ltr-8.6.1.pom.md5 Mon Aug 10 18:54:58 2020
@@ -0,0 +1 @@
+844f4047453e6d86fcfd5b1ded21ad41
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.6.1-RC2-rev6e11a1c3f0599f1c918bc69c4f51928d23160e99/solr/maven/org/apache/solr/solr-ltr/8.6.1/solr-ltr-8.6.1.pom.sha1
==============================================================================
--- dev/lucene/lucene-solr-8.6.1-RC2-rev6e11a1c3f0599f1c918bc69c4f51928d23160e99/solr/maven/org/apache/solr/solr-ltr/8.6.1/solr-ltr-8.6.1.pom.sha1 (added)
+++ dev/lucene/lucene-solr-8.6.1-RC2-rev6e11a1c3f0599f1c918bc69c4f51928d23160e99/solr/maven/org/apache/solr/solr-ltr/8.6.1/solr-ltr-8.6.1.pom.sha1 Mon Aug 10 18:54:58 2020
@@ -0,0 +1 @@
+b4db544ba8d9f66c662790c15a9b488785f18fed
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.6.1-RC2-rev6e11a1c3f0599f1c918bc69c4f51928d23160e99/solr/maven/org/apache/solr/solr-ltr/maven-metadata.xml
==============================================================================
--- dev/lucene/lucene-solr-8.6.1-RC2-rev6e11a1c3f0599f1c918bc69c4f51928d23160e99/solr/maven/org/apache/solr/solr-ltr/maven-metadata.xml (added)
+++ dev/lucene/lucene-solr-8.6.1-RC2-rev6e11a1c3f0599f1c918bc69c4f51928d23160e99/solr/maven/org/apache/solr/solr-ltr/maven-metadata.xml Mon Aug 10 18:54:58 2020
@@ -0,0 +1,12 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<metadata>
+  <groupId>org.apache.solr</groupId>
+  <artifactId>solr-ltr</artifactId>
+  <version>8.6.1</version>
+  <versioning>
+    <versions>
+      <version>8.6.1</version>
+    </versions>
+    <lastUpdated>20200810173525</lastUpdated>
+  </versioning>
+</metadata>

Added: dev/lucene/lucene-solr-8.6.1-RC2-rev6e11a1c3f0599f1c918bc69c4f51928d23160e99/solr/maven/org/apache/solr/solr-ltr/maven-metadata.xml.md5
==============================================================================
--- dev/lucene/lucene-solr-8.6.1-RC2-rev6e11a1c3f0599f1c918bc69c4f51928d23160e99/solr/maven/org/apache/solr/solr-ltr/maven-metadata.xml.md5 (added)
+++ dev/lucene/lucene-solr-8.6.1-RC2-rev6e11a1c3f0599f1c918bc69c4f51928d23160e99/solr/maven/org/apache/solr/solr-ltr/maven-metadata.xml.md5 Mon Aug 10 18:54:58 2020
@@ -0,0 +1 @@
+d6e35fe82eee1ab46c0e8f553d34f72b
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.6.1-RC2-rev6e11a1c3f0599f1c918bc69c4f51928d23160e99/solr/maven/org/apache/solr/solr-ltr/maven-metadata.xml.sha1
==============================================================================
--- dev/lucene/lucene-solr-8.6.1-RC2-rev6e11a1c3f0599f1c918bc69c4f51928d23160e99/solr/maven/org/apache/solr/solr-ltr/maven-metadata.xml.sha1 (added)
+++ dev/lucene/lucene-solr-8.6.1-RC2-rev6e11a1c3f0599f1c918bc69c4f51928d23160e99/solr/maven/org/apache/solr/solr-ltr/maven-metadata.xml.sha1 Mon Aug 10 18:54:58 2020
@@ -0,0 +1 @@
+4a6a33c45bf1badcb0d0899999998841122d45e3
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.6.1-RC2-rev6e11a1c3f0599f1c918bc69c4f51928d23160e99/solr/maven/org/apache/solr/solr-parent/8.6.1/solr-parent-8.6.1.pom
==============================================================================
--- dev/lucene/lucene-solr-8.6.1-RC2-rev6e11a1c3f0599f1c918bc69c4f51928d23160e99/solr/maven/org/apache/solr/solr-parent/8.6.1/solr-parent-8.6.1.pom (added)
+++ dev/lucene/lucene-solr-8.6.1-RC2-rev6e11a1c3f0599f1c918bc69c4f51928d23160e99/solr/maven/org/apache/solr/solr-parent/8.6.1/solr-parent-8.6.1.pom Mon Aug 10 18:54:58 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.6.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.6.1-RC2-rev6e11a1c3f0599f1c918bc69c4f51928d23160e99/solr/maven/org/apache/solr/solr-parent/8.6.1/solr-parent-8.6.1.pom.asc
==============================================================================
--- dev/lucene/lucene-solr-8.6.1-RC2-rev6e11a1c3f0599f1c918bc69c4f51928d23160e99/solr/maven/org/apache/solr/solr-parent/8.6.1/solr-parent-8.6.1.pom.asc (added)
+++ dev/lucene/lucene-solr-8.6.1-RC2-rev6e11a1c3f0599f1c918bc69c4f51928d23160e99/solr/maven/org/apache/solr/solr-parent/8.6.1/solr-parent-8.6.1.pom.asc Mon Aug 10 18:54:58 2020
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCAAdFiEEUOPuHJHH4MtN+wB7NpQk/Jjz9uwFAl8xhW4ACgkQNpQk/Jjz
+9ux5gQ//fisYDfYhskAKRSd76A2v19qwIVBSeXa7iqmP1A8oDCWKPpYRbC4cj4DP
+bkB6Jdj3+tjBePNX0ddJkiymMIqGF8X1e3WGP49qwChw3TLH6Bzoy5NfLg5RRR7y
+jHxSlKnX+d+4mnC1mKXVQz3mMcreYfFA7zR9McpyP7RxK0qyzaR8vUWECkWYbxT6
+R/K2UIwfkzjG1co39WE5Qz/pT9F+c2yKuG+vgjWR6eX+YRA8to20LLXuozZC3y1B
+gb9SWvdLhFTrSTcUwIbxk8DUIeoiqwlYy52Li3maVh0XKRFhbi2Ksu0sHgV2efTk
+5RudvVSXl/igiWbu9qcloXgB4oXICYFAH3u82sjla/8DUdgD5MsMYRu7r56Ifml2
+SctPRkeWtkcebgidq3X8rgS6zmIUopXPkQ462VY8CrdcySuNWOZ8a/wcybIp1HeY
++tBefIa/nZHNwhNxSv4frw0NVXONw12OhinzNFYtSjnPmfyhfR/kYW6AA4j5sEqk
+BO55w+lmyFUA8CLTcZXjHP4+9nrn7VzytMeqsqwHeXE1xUYMPqmgZs3aGY1fkjIs
+4qYWlut0dBwxQcnpqgvgv+z4h3GsctLqVc8fUj7rtzJK5lzyIgh8ZWiH/Gqvl9CO
+/ARLnqsJHoQzzbkZFWuxjkx1sqetK6ZjUoUSHtaXUILBmlNcjEM=
+=9vAp
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-8.6.1-RC2-rev6e11a1c3f0599f1c918bc69c4f51928d23160e99/solr/maven/org/apache/solr/solr-parent/8.6.1/solr-parent-8.6.1.pom.md5
==============================================================================
--- dev/lucene/lucene-solr-8.6.1-RC2-rev6e11a1c3f0599f1c918bc69c4f51928d23160e99/solr/maven/org/apache/solr/solr-parent/8.6.1/solr-parent-8.6.1.pom.md5 (added)
+++ dev/lucene/lucene-solr-8.6.1-RC2-rev6e11a1c3f0599f1c918bc69c4f51928d23160e99/solr/maven/org/apache/solr/solr-parent/8.6.1/solr-parent-8.6.1.pom.md5 Mon Aug 10 18:54:58 2020
@@ -0,0 +1 @@
+70ccc1a416778c76cfb340f60237acaf
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.6.1-RC2-rev6e11a1c3f0599f1c918bc69c4f51928d23160e99/solr/maven/org/apache/solr/solr-parent/8.6.1/solr-parent-8.6.1.pom.sha1
==============================================================================
--- dev/lucene/lucene-solr-8.6.1-RC2-rev6e11a1c3f0599f1c918bc69c4f51928d23160e99/solr/maven/org/apache/solr/solr-parent/8.6.1/solr-parent-8.6.1.pom.sha1 (added)
+++ dev/lucene/lucene-solr-8.6.1-RC2-rev6e11a1c3f0599f1c918bc69c4f51928d23160e99/solr/maven/org/apache/solr/solr-parent/8.6.1/solr-parent-8.6.1.pom.sha1 Mon Aug 10 18:54:58 2020
@@ -0,0 +1 @@
+75091c59499b5dd20e71cc26d4f935d77d71f7a8
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.6.1-RC2-rev6e11a1c3f0599f1c918bc69c4f51928d23160e99/solr/maven/org/apache/solr/solr-parent/maven-metadata.xml
==============================================================================
--- dev/lucene/lucene-solr-8.6.1-RC2-rev6e11a1c3f0599f1c918bc69c4f51928d23160e99/solr/maven/org/apache/solr/solr-parent/maven-metadata.xml (added)
+++ dev/lucene/lucene-solr-8.6.1-RC2-rev6e11a1c3f0599f1c918bc69c4f51928d23160e99/solr/maven/org/apache/solr/solr-parent/maven-metadata.xml Mon Aug 10 18:54:58 2020
@@ -0,0 +1,12 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<metadata>
+  <groupId>org.apache.solr</groupId>
+  <artifactId>solr-parent</artifactId>
+  <version>8.6.1</version>
+  <versioning>
+    <versions>
+      <version>8.6.1</version>
+    </versions>
+    <lastUpdated>20200810173453</lastUpdated>
+  </versioning>
+</metadata>

Added: dev/lucene/lucene-solr-8.6.1-RC2-rev6e11a1c3f0599f1c918bc69c4f51928d23160e99/solr/maven/org/apache/solr/solr-parent/maven-metadata.xml.md5
==============================================================================
--- dev/lucene/lucene-solr-8.6.1-RC2-rev6e11a1c3f0599f1c918bc69c4f51928d23160e99/solr/maven/org/apache/solr/solr-parent/maven-metadata.xml.md5 (added)
+++ dev/lucene/lucene-solr-8.6.1-RC2-rev6e11a1c3f0599f1c918bc69c4f51928d23160e99/solr/maven/org/apache/solr/solr-parent/maven-metadata.xml.md5 Mon Aug 10 18:54:58 2020
@@ -0,0 +1 @@
+37b7da175c11e3661c9b42af19727bb1
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.6.1-RC2-rev6e11a1c3f0599f1c918bc69c4f51928d23160e99/solr/maven/org/apache/solr/solr-parent/maven-metadata.xml.sha1
==============================================================================
--- dev/lucene/lucene-solr-8.6.1-RC2-rev6e11a1c3f0599f1c918bc69c4f51928d23160e99/solr/maven/org/apache/solr/solr-parent/maven-metadata.xml.sha1 (added)
+++ dev/lucene/lucene-solr-8.6.1-RC2-rev6e11a1c3f0599f1c918bc69c4f51928d23160e99/solr/maven/org/apache/solr/solr-parent/maven-metadata.xml.sha1 Mon Aug 10 18:54:58 2020
@@ -0,0 +1 @@
+3454159b8eaec9c96a08514aa7979e81268fdf29
\ No newline at end of file

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

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

Added: dev/lucene/lucene-solr-8.6.1-RC2-rev6e11a1c3f0599f1c918bc69c4f51928d23160e99/solr/maven/org/apache/solr/solr-prometheus-exporter/8.6.1/solr-prometheus-exporter-8.6.1-javadoc.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-8.6.1-RC2-rev6e11a1c3f0599f1c918bc69c4f51928d23160e99/solr/maven/org/apache/solr/solr-prometheus-exporter/8.6.1/solr-prometheus-exporter-8.6.1-javadoc.jar.asc (added)
+++ dev/lucene/lucene-solr-8.6.1-RC2-rev6e11a1c3f0599f1c918bc69c4f51928d23160e99/solr/maven/org/apache/solr/solr-prometheus-exporter/8.6.1/solr-prometheus-exporter-8.6.1-javadoc.jar.asc Mon Aug 10 18:54:58 2020
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCAAdFiEEUOPuHJHH4MtN+wB7NpQk/Jjz9uwFAl8xhW4ACgkQNpQk/Jjz
+9uzmxQ/8Dp2aIGmJSpUZb3m7kFYdit4rIqvsItHxF734r4ObVlhynSOST/ZSFIWb
+/wa4Iocklz3Q6XgLQ27F57tBCtWATVv/dP2ICNbYGC/J1x5l2LFKwxCi673cW0wj
+mDxiOyDegO5+TlRXH+4rUY3IzZPysExVZdlaBIr1GzwDADihC4zriAtfxU8DQG6D
+I9DO491uJauP98UT8P4eRn8zuVvz/GH7J9g+BJC3j1xuyY+saqTA0MEY69+m39SQ
+ynqTGyhPKypSy/ZZZbN76iQxTCO5HX1I/xyNOYS07F8tK4TREHy2GZel8HO5vKum
+fI8JGoDkOqeZT+1aki/8bUEZmA904M6mLEQbK3WxE2TR2O+mEsnMD1CQ033csrm7
+NHMvzqf/3kMsovUcYFY4ngCKQH8TWjnGRb3lXpg1V4VDHuJV3TlYj4phGqui+TQM
+ZpRWPoh1hezw5mR/QvavZX5kLz8uvjKq7ex6gUc17zcYM5EArOy9SQDjhO7zK8dP
+rTUGnZFwHmyJXtfnNirp5JIsJTLTPfUNqPYJnk1JLTVShgqev6ssXRSnM89pDNbI
+FB41hZdOmpQM68A9WxZfz//702Aagl/xdoh62OWL8vcoSkaxgG8IWHMZA5UZU+Hq
+aZKe/dkUFqcx4zyS0sw8IrYy4wtlQeYDhUssrq6kWfhiKMmcje0=
+=IIKa
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-8.6.1-RC2-rev6e11a1c3f0599f1c918bc69c4f51928d23160e99/solr/maven/org/apache/solr/solr-prometheus-exporter/8.6.1/solr-prometheus-exporter-8.6.1-javadoc.jar.md5
==============================================================================
--- dev/lucene/lucene-solr-8.6.1-RC2-rev6e11a1c3f0599f1c918bc69c4f51928d23160e99/solr/maven/org/apache/solr/solr-prometheus-exporter/8.6.1/solr-prometheus-exporter-8.6.1-javadoc.jar.md5 (added)
+++ dev/lucene/lucene-solr-8.6.1-RC2-rev6e11a1c3f0599f1c918bc69c4f51928d23160e99/solr/maven/org/apache/solr/solr-prometheus-exporter/8.6.1/solr-prometheus-exporter-8.6.1-javadoc.jar.md5 Mon Aug 10 18:54:58 2020
@@ -0,0 +1 @@
+81e1b09a52d212a8ea104d83505deb90
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.6.1-RC2-rev6e11a1c3f0599f1c918bc69c4f51928d23160e99/solr/maven/org/apache/solr/solr-prometheus-exporter/8.6.1/solr-prometheus-exporter-8.6.1-javadoc.jar.sha1
==============================================================================
--- dev/lucene/lucene-solr-8.6.1-RC2-rev6e11a1c3f0599f1c918bc69c4f51928d23160e99/solr/maven/org/apache/solr/solr-prometheus-exporter/8.6.1/solr-prometheus-exporter-8.6.1-javadoc.jar.sha1 (added)
+++ dev/lucene/lucene-solr-8.6.1-RC2-rev6e11a1c3f0599f1c918bc69c4f51928d23160e99/solr/maven/org/apache/solr/solr-prometheus-exporter/8.6.1/solr-prometheus-exporter-8.6.1-javadoc.jar.sha1 Mon Aug 10 18:54:58 2020
@@ -0,0 +1 @@
+7bb945b44ddd4bd11d3853f4a68f4b148a85c622
\ No newline at end of file

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

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

Added: dev/lucene/lucene-solr-8.6.1-RC2-rev6e11a1c3f0599f1c918bc69c4f51928d23160e99/solr/maven/org/apache/solr/solr-prometheus-exporter/8.6.1/solr-prometheus-exporter-8.6.1-sources.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-8.6.1-RC2-rev6e11a1c3f0599f1c918bc69c4f51928d23160e99/solr/maven/org/apache/solr/solr-prometheus-exporter/8.6.1/solr-prometheus-exporter-8.6.1-sources.jar.asc (added)
+++ dev/lucene/lucene-solr-8.6.1-RC2-rev6e11a1c3f0599f1c918bc69c4f51928d23160e99/solr/maven/org/apache/solr/solr-prometheus-exporter/8.6.1/solr-prometheus-exporter-8.6.1-sources.jar.asc Mon Aug 10 18:54:58 2020
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCAAdFiEEUOPuHJHH4MtN+wB7NpQk/Jjz9uwFAl8xhW8ACgkQNpQk/Jjz
+9uyYWg/8DO+BC9RD3UtPPP023bTrlci8AIuY2Rl/8b4fZmCqeF7Kyz1bFHBXrl6q
+qANVoAQooR1qIkn+XrdN51jl68pTZDyWBZc/qM4PIcWtUMEPOP6n/ouq+muQJW4n
+5Dm+VRAXnmsmoanhU2ZWNco3/cWfk44ZUQlJccn3YNLh17tdzr1qwyZh29+dMfda
+XWKNgBhcqamzg7lrL+YKdhK1QC4xOUVLBfNXP7b/Y+pchn2Cqox8sXF8cRY7J+eZ
+KxTtwIrbFyPnDrktUwun2g5WAkYpKWNhFyGj+APlex2s0+jrQKuAQoYX8ajI9SML
+i8kt6TzrZv4AQcs+bUZIq39IcLVKlMBBpKz4+5nn7+JTKG1LtcZcFdYY/BkEZN4J
+SXttjKuyOaDruiO6kFcY8/9nrUtABJMmeOpi8lhrD7U9idK9kTjI4UFOx6R//1rH
+sCxuPg2/6E8SBTvbgY1W7DParGX87SOesJtdSaU4g/3o5XPTkl2eV/y6a7MMXehU
+kvAVUcVbxJO6diHbL4UQDg6UXEHDyOpLfqORz7s35gTyOKOfa2Qpd+KIubNVr8vu
+If+Hf2ah3IqmFLk5Uj3ecIheuBqfsTDHCbPAZCbAca60pvGkpLTk3X0AJxewd6uc
+SmdQuj0TjGJDFHOG8MqZ5Vtw3lTqU+0BS9BgmOl470fP8Tdqlhc=
+=GzNP
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-8.6.1-RC2-rev6e11a1c3f0599f1c918bc69c4f51928d23160e99/solr/maven/org/apache/solr/solr-prometheus-exporter/8.6.1/solr-prometheus-exporter-8.6.1-sources.jar.md5
==============================================================================
--- dev/lucene/lucene-solr-8.6.1-RC2-rev6e11a1c3f0599f1c918bc69c4f51928d23160e99/solr/maven/org/apache/solr/solr-prometheus-exporter/8.6.1/solr-prometheus-exporter-8.6.1-sources.jar.md5 (added)
+++ dev/lucene/lucene-solr-8.6.1-RC2-rev6e11a1c3f0599f1c918bc69c4f51928d23160e99/solr/maven/org/apache/solr/solr-prometheus-exporter/8.6.1/solr-prometheus-exporter-8.6.1-sources.jar.md5 Mon Aug 10 18:54:58 2020
@@ -0,0 +1 @@
+d91046c5064b5297512364c19a41c311
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.6.1-RC2-rev6e11a1c3f0599f1c918bc69c4f51928d23160e99/solr/maven/org/apache/solr/solr-prometheus-exporter/8.6.1/solr-prometheus-exporter-8.6.1-sources.jar.sha1
==============================================================================
--- dev/lucene/lucene-solr-8.6.1-RC2-rev6e11a1c3f0599f1c918bc69c4f51928d23160e99/solr/maven/org/apache/solr/solr-prometheus-exporter/8.6.1/solr-prometheus-exporter-8.6.1-sources.jar.sha1 (added)
+++ dev/lucene/lucene-solr-8.6.1-RC2-rev6e11a1c3f0599f1c918bc69c4f51928d23160e99/solr/maven/org/apache/solr/solr-prometheus-exporter/8.6.1/solr-prometheus-exporter-8.6.1-sources.jar.sha1 Mon Aug 10 18:54:58 2020
@@ -0,0 +1 @@
+27796d75d2c01a13651b02f77c19ca1891fb7c12
\ No newline at end of file

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

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

Added: dev/lucene/lucene-solr-8.6.1-RC2-rev6e11a1c3f0599f1c918bc69c4f51928d23160e99/solr/maven/org/apache/solr/solr-prometheus-exporter/8.6.1/solr-prometheus-exporter-8.6.1.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-8.6.1-RC2-rev6e11a1c3f0599f1c918bc69c4f51928d23160e99/solr/maven/org/apache/solr/solr-prometheus-exporter/8.6.1/solr-prometheus-exporter-8.6.1.jar.asc (added)
+++ dev/lucene/lucene-solr-8.6.1-RC2-rev6e11a1c3f0599f1c918bc69c4f51928d23160e99/solr/maven/org/apache/solr/solr-prometheus-exporter/8.6.1/solr-prometheus-exporter-8.6.1.jar.asc Mon Aug 10 18:54:58 2020
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCAAdFiEEUOPuHJHH4MtN+wB7NpQk/Jjz9uwFAl8xhW8ACgkQNpQk/Jjz
+9uxXyhAAz5mjIl7goz3txOwpXHQtYq1TY9u+T47kMA/mwSOKQVbysG85nhAMowKB
+FIsU6ZA+zpHrmhmbRfOZCii6+x3yLgnjRbK80l5QfpDB4aaV1nIZXR4Pqr8mhxK0
+M+yyoCwQAXoKUlKjKxBFJpE79s8bl4xWNNtyTsEHhXOZ4X82W5f+tn21S0hrzAAV
+qNg4PA1mHDgkwdRmEv5VqHD9kbFVKVbrGiPv1idm5n0kr8X2tnXPE3TLIhfme0/b
+XQkx9achmr2VRE2zgtTxU0PiiG1P/1ildJiO+Kg4XThbEkokf6grKhOz8LgrL961
+gciYMPcBrsazQ/7rGbVx9WumXEPt2tWOGVIXTh4F0Lqn6PYuoE7GhjjYIp7nKZkv
+KUk00j9CeOJP2PnxADa0vYjt0v/M0sC88itUMCOslFLZzFMjr66HRosditKyt5eb
+iEOeRDatrAIcv43B+51+MOBeCnLk4DHu5jfmk22kTk4bDI2idIZEeQPDXuY0IzOO
+D6/I9SnukHcmA2cwW+RlTFtSshZM710h+Vzl6Z7qnS8AZU4t6DmCNhEptCmOXSLj
+D+4FpFQNzQKWLmxs/U+fQn/orq01tPqXCLFBueBesGpbSOABwrzBr4e3LuGKR6hM
+u64w/lY2Wxj7RxwfwCbPuWhwGa0aEKMnR63e2IA5IKzUilOEYec=
+=il1t
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-8.6.1-RC2-rev6e11a1c3f0599f1c918bc69c4f51928d23160e99/solr/maven/org/apache/solr/solr-prometheus-exporter/8.6.1/solr-prometheus-exporter-8.6.1.jar.md5
==============================================================================
--- dev/lucene/lucene-solr-8.6.1-RC2-rev6e11a1c3f0599f1c918bc69c4f51928d23160e99/solr/maven/org/apache/solr/solr-prometheus-exporter/8.6.1/solr-prometheus-exporter-8.6.1.jar.md5 (added)
+++ dev/lucene/lucene-solr-8.6.1-RC2-rev6e11a1c3f0599f1c918bc69c4f51928d23160e99/solr/maven/org/apache/solr/solr-prometheus-exporter/8.6.1/solr-prometheus-exporter-8.6.1.jar.md5 Mon Aug 10 18:54:58 2020
@@ -0,0 +1 @@
+da13b1dcb899042f531daaffc34634c0
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.6.1-RC2-rev6e11a1c3f0599f1c918bc69c4f51928d23160e99/solr/maven/org/apache/solr/solr-prometheus-exporter/8.6.1/solr-prometheus-exporter-8.6.1.jar.sha1
==============================================================================
--- dev/lucene/lucene-solr-8.6.1-RC2-rev6e11a1c3f0599f1c918bc69c4f51928d23160e99/solr/maven/org/apache/solr/solr-prometheus-exporter/8.6.1/solr-prometheus-exporter-8.6.1.jar.sha1 (added)
+++ dev/lucene/lucene-solr-8.6.1-RC2-rev6e11a1c3f0599f1c918bc69c4f51928d23160e99/solr/maven/org/apache/solr/solr-prometheus-exporter/8.6.1/solr-prometheus-exporter-8.6.1.jar.sha1 Mon Aug 10 18:54:58 2020
@@ -0,0 +1 @@
+c67003749b660ca567fd5b03fcc077a5eba192ed
\ No newline at end of file