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

svn commit: r41127 [17/19] - in /dev/lucene/lucene-solr-8.6.2-RC1-rev016993b65e393b58246d54e8ddda9f56a453eb0e: ./ 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.2-RC1-rev016993b65e393b58246d54e8ddda9f56a453eb0e/solr/maven/org/apache/solr/solr-langid/8.6.2/solr-langid-8.6.2.pom
==============================================================================
--- dev/lucene/lucene-solr-8.6.2-RC1-rev016993b65e393b58246d54e8ddda9f56a453eb0e/solr/maven/org/apache/solr/solr-langid/8.6.2/solr-langid-8.6.2.pom (added)
+++ dev/lucene/lucene-solr-8.6.2-RC1-rev016993b65e393b58246d54e8ddda9f56a453eb0e/solr/maven/org/apache/solr/solr-langid/8.6.2/solr-langid-8.6.2.pom Wed Aug 26 11:53:16 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.2</version>
+    <relativePath>../../pom.xml</relativePath>
+  </parent>
+  <groupId>org.apache.solr</groupId>
+  <artifactId>solr-langid</artifactId>
+  <packaging>jar</packaging>
+  <name>Apache Solr Language Identifier</name>
+  <description>
+    This module is intended to be used while indexing documents.
+    It is implemented as an UpdateProcessor to be placed in an UpdateChain.
+    Its purpose is to identify language from documents and tag the document with language code.
+  </description>
+  <properties>
+    <module-directory>solr/contrib/langid</module-directory>
+    <relative-top-level>../../../..</relative-top-level>
+    <module-path>${relative-top-level}/${module-directory}</module-path>
+  </properties>
+  <scm>
+    <connection>scm:git:${vc-anonymous-base-url}</connection>
+    <developerConnection>scm:git:${vc-dev-base-url}</developerConnection>
+    <url>${vc-browse-base-url};f=${module-directory}</url>
+  </scm>
+  <dependencies>
+    <dependency>
+      <!-- lucene-test-framework dependency must be declared before lucene-core -->
+      <!-- This dependency cannot be put into solr-parent, because local        -->
+      <!-- dependencies are always ordered before inherited dependencies.       -->
+      <groupId>org.apache.lucene</groupId>
+      <artifactId>lucene-test-framework</artifactId>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.solr</groupId>
+      <artifactId>solr-test-framework</artifactId>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.lucene</groupId>
+      <artifactId>lucene-analyzers-common</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.lucene</groupId>
+      <artifactId>lucene-analyzers-kuromoji</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.lucene</groupId>
+      <artifactId>lucene-analyzers-nori</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.lucene</groupId>
+      <artifactId>lucene-analyzers-phonetic</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.lucene</groupId>
+      <artifactId>lucene-backward-codecs</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.lucene</groupId>
+      <artifactId>lucene-classification</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.lucene</groupId>
+      <artifactId>lucene-codecs</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.lucene</groupId>
+      <artifactId>lucene-core</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.lucene</groupId>
+      <artifactId>lucene-expressions</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.lucene</groupId>
+      <artifactId>lucene-grouping</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.lucene</groupId>
+      <artifactId>lucene-highlighter</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.lucene</groupId>
+      <artifactId>lucene-join</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.lucene</groupId>
+      <artifactId>lucene-memory</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.lucene</groupId>
+      <artifactId>lucene-misc</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.lucene</groupId>
+      <artifactId>lucene-queries</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.lucene</groupId>
+      <artifactId>lucene-queryparser</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.lucene</groupId>
+      <artifactId>lucene-sandbox</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.lucene</groupId>
+      <artifactId>lucene-spatial-extras</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.lucene</groupId>
+      <artifactId>lucene-spatial3d</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.lucene</groupId>
+      <artifactId>lucene-suggest</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.solr</groupId>
+      <artifactId>solr-core</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.solr</groupId>
+      <artifactId>solr-solrj</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.adobe.xmp</groupId>
+      <artifactId>xmpcore</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.carrotsearch</groupId>
+      <artifactId>hppc</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.cybozu.labs</groupId>
+      <artifactId>langdetect</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.drewnoakes</groupId>
+      <artifactId>metadata-extractor</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.epam</groupId>
+      <artifactId>parso</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.fasterxml.jackson.core</groupId>
+      <artifactId>jackson-annotations</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.fasterxml.jackson.core</groupId>
+      <artifactId>jackson-core</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.fasterxml.jackson.core</groupId>
+      <artifactId>jackson-databind</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.fasterxml.jackson.dataformat</groupId>
+      <artifactId>jackson-dataformat-smile</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.github.ben-manes.caffeine</groupId>
+      <artifactId>caffeine</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.github.virtuald</groupId>
+      <artifactId>curvesapi</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.github.zafarkhaja</groupId>
+      <artifactId>java-semver</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.google.guava</groupId>
+      <artifactId>guava</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.google.protobuf</groupId>
+      <artifactId>protobuf-java</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.google.re2j</groupId>
+      <artifactId>re2j</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.googlecode.juniversalchardet</groupId>
+      <artifactId>juniversalchardet</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.googlecode.mp4parser</groupId>
+      <artifactId>isoparser</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.healthmarketscience.jackcess</groupId>
+      <artifactId>jackcess</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.healthmarketscience.jackcess</groupId>
+      <artifactId>jackcess-encrypt</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.ibm.icu</groupId>
+      <artifactId>icu4j</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.jayway.jsonpath</groupId>
+      <artifactId>json-path</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.lmax</groupId>
+      <artifactId>disruptor</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.pff</groupId>
+      <artifactId>java-libpst</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.rometools</groupId>
+      <artifactId>rome</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.rometools</groupId>
+      <artifactId>rome-utils</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.tdunning</groupId>
+      <artifactId>t-digest</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>commons-cli</groupId>
+      <artifactId>commons-cli</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>commons-codec</groupId>
+      <artifactId>commons-codec</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>commons-collections</groupId>
+      <artifactId>commons-collections</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>commons-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.2-RC1-rev016993b65e393b58246d54e8ddda9f56a453eb0e/solr/maven/org/apache/solr/solr-langid/8.6.2/solr-langid-8.6.2.pom.asc
==============================================================================
--- dev/lucene/lucene-solr-8.6.2-RC1-rev016993b65e393b58246d54e8ddda9f56a453eb0e/solr/maven/org/apache/solr/solr-langid/8.6.2/solr-langid-8.6.2.pom.asc (added)
+++ dev/lucene/lucene-solr-8.6.2-RC1-rev016993b65e393b58246d54e8ddda9f56a453eb0e/solr/maven/org/apache/solr/solr-langid/8.6.2/solr-langid-8.6.2.pom.asc Wed Aug 26 11:53:16 2020
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCAAdFiEE5YpvTVsrSKxm1eU71PGBiBpC+eYFAl9GJYcACgkQ1PGBiBpC
++ebdVw/+Om77wy52UBph/ukSCaXdOKNLi10NqEWTOF6DJCVWOzccsDFxvQt9eeZY
+NPHETNoa19G5HUmFCUrwo4jzdyAeP4uTYs6WkDxYhTMKe0O8S0RXbTEeULG1RDBC
+8PxqoqTEKEcBgOR5f94Z2QJihGwOBp/SK1kw/LEBILRqGPeN6N2dfPfGzKBnxwyY
+lPZaOEPJugmWPzNr8xdrxev/bufnfHC7FhRHpb7MFsRd9meppOGNHEY0PUx//a/T
+si7v4XEoxfgRQ0NFAzhe+Pvk7gTPHrJZq434XTLOrFqazp4rom4PEQDPxHA0Kun2
+iojuYZ+dOwKC6Y7Hyt2zo1/X+QSl8dEyp4FB73AfbkG0cKByTgVu7MF0oFcy2fAn
+r7h9OMdicmYDN74DusReVpHG9nH1uD/CcN5Jh69f1VmN+/j4B86vxnYYw3ZGNGrM
+h6d1ai6UUVnRDoMDDQXdKUmwyVimsXhBOu7wO+HEkk/sXUjOS58XPXKfqpb7NUfm
+OhmAgV4w1H1y4hww0trCeGJV9HcrbSAcxKymNXNck2Db0qZK6eeX8upa0x9x+LoE
+OiFpppBlWUUyqLz5HgTpxSjPBJo2v1bJT4M7VGHN7lbjj0mp+fEDBAjRPyFppyPn
+khSxxQ12TQ98MAriDOdw+FhhP71V9M9yBJ3PFi+ghZigWdZpO28=
+=d9IM
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-8.6.2-RC1-rev016993b65e393b58246d54e8ddda9f56a453eb0e/solr/maven/org/apache/solr/solr-langid/8.6.2/solr-langid-8.6.2.pom.md5
==============================================================================
--- dev/lucene/lucene-solr-8.6.2-RC1-rev016993b65e393b58246d54e8ddda9f56a453eb0e/solr/maven/org/apache/solr/solr-langid/8.6.2/solr-langid-8.6.2.pom.md5 (added)
+++ dev/lucene/lucene-solr-8.6.2-RC1-rev016993b65e393b58246d54e8ddda9f56a453eb0e/solr/maven/org/apache/solr/solr-langid/8.6.2/solr-langid-8.6.2.pom.md5 Wed Aug 26 11:53:16 2020
@@ -0,0 +1 @@
+ede33abd0de80fde1f49de46d648ef06
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.6.2-RC1-rev016993b65e393b58246d54e8ddda9f56a453eb0e/solr/maven/org/apache/solr/solr-langid/8.6.2/solr-langid-8.6.2.pom.sha1
==============================================================================
--- dev/lucene/lucene-solr-8.6.2-RC1-rev016993b65e393b58246d54e8ddda9f56a453eb0e/solr/maven/org/apache/solr/solr-langid/8.6.2/solr-langid-8.6.2.pom.sha1 (added)
+++ dev/lucene/lucene-solr-8.6.2-RC1-rev016993b65e393b58246d54e8ddda9f56a453eb0e/solr/maven/org/apache/solr/solr-langid/8.6.2/solr-langid-8.6.2.pom.sha1 Wed Aug 26 11:53:16 2020
@@ -0,0 +1 @@
+5fe9a77cdd3a911b93bf876fd218a682bdd2c95c
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.6.2-RC1-rev016993b65e393b58246d54e8ddda9f56a453eb0e/solr/maven/org/apache/solr/solr-langid/maven-metadata.xml
==============================================================================
--- dev/lucene/lucene-solr-8.6.2-RC1-rev016993b65e393b58246d54e8ddda9f56a453eb0e/solr/maven/org/apache/solr/solr-langid/maven-metadata.xml (added)
+++ dev/lucene/lucene-solr-8.6.2-RC1-rev016993b65e393b58246d54e8ddda9f56a453eb0e/solr/maven/org/apache/solr/solr-langid/maven-metadata.xml Wed Aug 26 11:53:16 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.2</version>
+  <versioning>
+    <versions>
+      <version>8.6.2</version>
+    </versions>
+    <lastUpdated>20200826090336</lastUpdated>
+  </versioning>
+</metadata>

Added: dev/lucene/lucene-solr-8.6.2-RC1-rev016993b65e393b58246d54e8ddda9f56a453eb0e/solr/maven/org/apache/solr/solr-langid/maven-metadata.xml.md5
==============================================================================
--- dev/lucene/lucene-solr-8.6.2-RC1-rev016993b65e393b58246d54e8ddda9f56a453eb0e/solr/maven/org/apache/solr/solr-langid/maven-metadata.xml.md5 (added)
+++ dev/lucene/lucene-solr-8.6.2-RC1-rev016993b65e393b58246d54e8ddda9f56a453eb0e/solr/maven/org/apache/solr/solr-langid/maven-metadata.xml.md5 Wed Aug 26 11:53:16 2020
@@ -0,0 +1 @@
+96aa01f6bddc85acd84ed90a634be95e
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.6.2-RC1-rev016993b65e393b58246d54e8ddda9f56a453eb0e/solr/maven/org/apache/solr/solr-langid/maven-metadata.xml.sha1
==============================================================================
--- dev/lucene/lucene-solr-8.6.2-RC1-rev016993b65e393b58246d54e8ddda9f56a453eb0e/solr/maven/org/apache/solr/solr-langid/maven-metadata.xml.sha1 (added)
+++ dev/lucene/lucene-solr-8.6.2-RC1-rev016993b65e393b58246d54e8ddda9f56a453eb0e/solr/maven/org/apache/solr/solr-langid/maven-metadata.xml.sha1 Wed Aug 26 11:53:16 2020
@@ -0,0 +1 @@
+2ee9b1de4e82af567b139e588a78ec7363b8dbc2
\ No newline at end of file

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

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

Added: dev/lucene/lucene-solr-8.6.2-RC1-rev016993b65e393b58246d54e8ddda9f56a453eb0e/solr/maven/org/apache/solr/solr-ltr/8.6.2/solr-ltr-8.6.2-javadoc.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-8.6.2-RC1-rev016993b65e393b58246d54e8ddda9f56a453eb0e/solr/maven/org/apache/solr/solr-ltr/8.6.2/solr-ltr-8.6.2-javadoc.jar.asc (added)
+++ dev/lucene/lucene-solr-8.6.2-RC1-rev016993b65e393b58246d54e8ddda9f56a453eb0e/solr/maven/org/apache/solr/solr-ltr/8.6.2/solr-ltr-8.6.2-javadoc.jar.asc Wed Aug 26 11:53:16 2020
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCAAdFiEE5YpvTVsrSKxm1eU71PGBiBpC+eYFAl9GJYgACgkQ1PGBiBpC
++ebJ4hAAz6Yv4uwvc9K2w8HJXeqTp4JLY+BS7KDn/3asRoakFos81WTNubk2dtAz
+Pgq4wXdQjLIO42hLEranIPy3cme+kVlSvzNPfhaqjTxb6UxCrM/mOAhBBOljUJEY
+yJooQ588M+FfWUUoBA7P3lEf6CIr20wVQzLzoCHNWIACcoE7KNAPqwtMnL38qRbN
+u48fQzxRsvI+o+/SziBWZz1d1+y0FJT5Ul5VhWZkUa/LJH45zFjR+6oyZktEcgHp
+bVPJJyfzBDpVB7FdsjZe9GLx5y2pyhmrbkCUY9mqT9jqHNEkGFdqtXvDdacv2nca
+re1QxlUKZI082CDdSUnSWw6vIcV3CiMUpRzYyHI8R536xNXbPH3d46/f1S9o35WE
+xBdZ4B+8rej0levktZDgAbucvtxWEYmiTHHmah7CHlnu11rkX5DykjEXZu+XLHuR
+4w9ziocR2danaeFa/AovvlynT8JBgzq+4K89zw88EF+3MvEHJcd0Dly0sG/U3aOB
+wcO9ub3bmc87oBpEikEfjsJJZ829uqc3fPe5qvTU0bt8H3dqVCQKm4FAKhQBJOJY
+kmbYFB8AHg2Df7/nMbvSvnWXhCOkwAproIPCRQB+HJHAXPZiAYX9yHN1WYBrt+RY
+vA7P0E5eW7WAV+32NreNVoPmWJvusDd6ygMR9j49iLjFPDx1epk=
+=Uf8j
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-8.6.2-RC1-rev016993b65e393b58246d54e8ddda9f56a453eb0e/solr/maven/org/apache/solr/solr-ltr/8.6.2/solr-ltr-8.6.2-javadoc.jar.md5
==============================================================================
--- dev/lucene/lucene-solr-8.6.2-RC1-rev016993b65e393b58246d54e8ddda9f56a453eb0e/solr/maven/org/apache/solr/solr-ltr/8.6.2/solr-ltr-8.6.2-javadoc.jar.md5 (added)
+++ dev/lucene/lucene-solr-8.6.2-RC1-rev016993b65e393b58246d54e8ddda9f56a453eb0e/solr/maven/org/apache/solr/solr-ltr/8.6.2/solr-ltr-8.6.2-javadoc.jar.md5 Wed Aug 26 11:53:16 2020
@@ -0,0 +1 @@
+a1adeb3a9ad12bf41d97b10ed2a4056a
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.6.2-RC1-rev016993b65e393b58246d54e8ddda9f56a453eb0e/solr/maven/org/apache/solr/solr-ltr/8.6.2/solr-ltr-8.6.2-javadoc.jar.sha1
==============================================================================
--- dev/lucene/lucene-solr-8.6.2-RC1-rev016993b65e393b58246d54e8ddda9f56a453eb0e/solr/maven/org/apache/solr/solr-ltr/8.6.2/solr-ltr-8.6.2-javadoc.jar.sha1 (added)
+++ dev/lucene/lucene-solr-8.6.2-RC1-rev016993b65e393b58246d54e8ddda9f56a453eb0e/solr/maven/org/apache/solr/solr-ltr/8.6.2/solr-ltr-8.6.2-javadoc.jar.sha1 Wed Aug 26 11:53:16 2020
@@ -0,0 +1 @@
+c858b3c6654167f47a13a9ed37b973f0f78dbdff
\ No newline at end of file

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

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

Added: dev/lucene/lucene-solr-8.6.2-RC1-rev016993b65e393b58246d54e8ddda9f56a453eb0e/solr/maven/org/apache/solr/solr-ltr/8.6.2/solr-ltr-8.6.2-sources.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-8.6.2-RC1-rev016993b65e393b58246d54e8ddda9f56a453eb0e/solr/maven/org/apache/solr/solr-ltr/8.6.2/solr-ltr-8.6.2-sources.jar.asc (added)
+++ dev/lucene/lucene-solr-8.6.2-RC1-rev016993b65e393b58246d54e8ddda9f56a453eb0e/solr/maven/org/apache/solr/solr-ltr/8.6.2/solr-ltr-8.6.2-sources.jar.asc Wed Aug 26 11:53:16 2020
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCAAdFiEE5YpvTVsrSKxm1eU71PGBiBpC+eYFAl9GJYkACgkQ1PGBiBpC
++eaADQ//XK62/yGg7unH1A5i5rja69X/ueW2s6n9Bt9zKQFR97fY8INzw/tXzXZ5
+tKNVVmUM3S23TKV+plvoPBX19kXkYviksGFBZSFVJhTJTi0j4l/MK4p5JgBtriqa
+ZIcJ0AU/eaoATzBXFQgAaNgRgh0cgFXX6X7pOH9PFef+nrw7iVc4cyzODG2Fjzem
+bVrUDMveJjM5IfHmimVO2lQgtVeojCTgbeqT8MtGB7wNInNnYDKWU279+3RKfZaU
+03d6h42Lu2vgRAmaHvIxFsp9+UfUwiqf1GnU3mi1ru3Hu5ecANpFU5MZzDhXqgiN
+93OQ/gT/vRBBYL3tLY0mhs8LJTTOraoZbxjHUOrAAHpLkbZsJGFVmm5sXqQb4iG2
+3/Khc9yrdO2bEjCGij5DECt226YAJSaj12dKp1W8fbDdnkIvDjPgtJDTXEkQHCUX
+EwZ6gCIwEEz1PeETk7H8U2bFV+WRUSWFBjmeqR5AS5N/k3oksD8d9wLazGezTzvE
+t2XqS62snAlp3bjLUrBBNdkz+3wvOgD6vnV0sasXDGGhnTyKfQNcf6KreDHbZfgm
+KvenyTyhtiVW6q5X4mBe9JCJIOvTOhv41lGsl6cUkzvYgD7/FyTA2hHAuQswx9Z4
+RYMBctpWDM6LWa784RgWA4BmzSQLzbq6hXhlvPivLd+oucRsif4=
+=UkHG
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-8.6.2-RC1-rev016993b65e393b58246d54e8ddda9f56a453eb0e/solr/maven/org/apache/solr/solr-ltr/8.6.2/solr-ltr-8.6.2-sources.jar.md5
==============================================================================
--- dev/lucene/lucene-solr-8.6.2-RC1-rev016993b65e393b58246d54e8ddda9f56a453eb0e/solr/maven/org/apache/solr/solr-ltr/8.6.2/solr-ltr-8.6.2-sources.jar.md5 (added)
+++ dev/lucene/lucene-solr-8.6.2-RC1-rev016993b65e393b58246d54e8ddda9f56a453eb0e/solr/maven/org/apache/solr/solr-ltr/8.6.2/solr-ltr-8.6.2-sources.jar.md5 Wed Aug 26 11:53:16 2020
@@ -0,0 +1 @@
+fe6318d2b9e0dbb48270b5b5b78d5519
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.6.2-RC1-rev016993b65e393b58246d54e8ddda9f56a453eb0e/solr/maven/org/apache/solr/solr-ltr/8.6.2/solr-ltr-8.6.2-sources.jar.sha1
==============================================================================
--- dev/lucene/lucene-solr-8.6.2-RC1-rev016993b65e393b58246d54e8ddda9f56a453eb0e/solr/maven/org/apache/solr/solr-ltr/8.6.2/solr-ltr-8.6.2-sources.jar.sha1 (added)
+++ dev/lucene/lucene-solr-8.6.2-RC1-rev016993b65e393b58246d54e8ddda9f56a453eb0e/solr/maven/org/apache/solr/solr-ltr/8.6.2/solr-ltr-8.6.2-sources.jar.sha1 Wed Aug 26 11:53:16 2020
@@ -0,0 +1 @@
+95e0b523a6de001033496ee3cc140a21600a2081
\ No newline at end of file

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

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

Added: dev/lucene/lucene-solr-8.6.2-RC1-rev016993b65e393b58246d54e8ddda9f56a453eb0e/solr/maven/org/apache/solr/solr-ltr/8.6.2/solr-ltr-8.6.2.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-8.6.2-RC1-rev016993b65e393b58246d54e8ddda9f56a453eb0e/solr/maven/org/apache/solr/solr-ltr/8.6.2/solr-ltr-8.6.2.jar.asc (added)
+++ dev/lucene/lucene-solr-8.6.2-RC1-rev016993b65e393b58246d54e8ddda9f56a453eb0e/solr/maven/org/apache/solr/solr-ltr/8.6.2/solr-ltr-8.6.2.jar.asc Wed Aug 26 11:53:16 2020
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCAAdFiEE5YpvTVsrSKxm1eU71PGBiBpC+eYFAl9GJYkACgkQ1PGBiBpC
++ebcAA//c5l+ArvDD0oePx1Qo9rFHfYHAOj2tkdSu4K8kXVkcsLyYwwnZnmcZ2VA
+9654wdpidL9Zw9D4ramTBXYf5yzqCBIiKI0grEKp31A/T4Ey536grKgPzlzCiZzg
+s8z/68WaKHbKY423oyuj269IAvxKZx2I+vAsMYwTw78fgB8BdJIjBBbMWizrn0Lw
+pBReW+GHzvaQbzD56hT15KoPkFsN1ReHpxXCMOnrkRc5rDryl6Kaz6iKqjpNJnWZ
+J4cZjzEexHJQlqf0zKXHd0JtQistrbBKED+Lh4j7VqwEbBLB8egwbgdd1ggDXpGW
+IioB3/+jzgmMCGQDI1ctV9qPMqXCqiDj05eI2MBmvpzO2udQlmJnWeeSx7uiWnhM
+/7G5oW5Di5rI28qOAJz4eYMV8NR89BcBvErv6+7JalxkC8BST8fx0vqkJ1bJBF8b
+6DqOFYpBa6zfudsIUP3O8xfui7i0u3uzx0F91UVM0aoemDi3qQpmXVg/I6/uMGlh
+JBjsBCzzwMOV/hLTz8c0PuCRWUTDnQUO1fhxmwwyNpIahQv2SaAB8/mP+6hzMMVl
+2wMTHsFShdfpfC9wt4pfBwoHRJF/OmABNAh2Q7CsCgqdmt7zAZ3qnX2c1Evesa6T
+r69XH0oCNkRl255KLnor1vxplgjRg27tR8ELyF2nsZwKahV17UA=
+=BtbT
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-8.6.2-RC1-rev016993b65e393b58246d54e8ddda9f56a453eb0e/solr/maven/org/apache/solr/solr-ltr/8.6.2/solr-ltr-8.6.2.jar.md5
==============================================================================
--- dev/lucene/lucene-solr-8.6.2-RC1-rev016993b65e393b58246d54e8ddda9f56a453eb0e/solr/maven/org/apache/solr/solr-ltr/8.6.2/solr-ltr-8.6.2.jar.md5 (added)
+++ dev/lucene/lucene-solr-8.6.2-RC1-rev016993b65e393b58246d54e8ddda9f56a453eb0e/solr/maven/org/apache/solr/solr-ltr/8.6.2/solr-ltr-8.6.2.jar.md5 Wed Aug 26 11:53:16 2020
@@ -0,0 +1 @@
+3037979b1ee433fb4e6ba57ba6a11085
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.6.2-RC1-rev016993b65e393b58246d54e8ddda9f56a453eb0e/solr/maven/org/apache/solr/solr-ltr/8.6.2/solr-ltr-8.6.2.jar.sha1
==============================================================================
--- dev/lucene/lucene-solr-8.6.2-RC1-rev016993b65e393b58246d54e8ddda9f56a453eb0e/solr/maven/org/apache/solr/solr-ltr/8.6.2/solr-ltr-8.6.2.jar.sha1 (added)
+++ dev/lucene/lucene-solr-8.6.2-RC1-rev016993b65e393b58246d54e8ddda9f56a453eb0e/solr/maven/org/apache/solr/solr-ltr/8.6.2/solr-ltr-8.6.2.jar.sha1 Wed Aug 26 11:53:16 2020
@@ -0,0 +1 @@
+fded89f7b3c4369726ed4cdc345b38decbfdfc9d
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.6.2-RC1-rev016993b65e393b58246d54e8ddda9f56a453eb0e/solr/maven/org/apache/solr/solr-ltr/8.6.2/solr-ltr-8.6.2.pom
==============================================================================
--- dev/lucene/lucene-solr-8.6.2-RC1-rev016993b65e393b58246d54e8ddda9f56a453eb0e/solr/maven/org/apache/solr/solr-ltr/8.6.2/solr-ltr-8.6.2.pom (added)
+++ dev/lucene/lucene-solr-8.6.2-RC1-rev016993b65e393b58246d54e8ddda9f56a453eb0e/solr/maven/org/apache/solr/solr-ltr/8.6.2/solr-ltr-8.6.2.pom Wed Aug 26 11:53:16 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.2</version>
+    <relativePath>../../pom.xml</relativePath>
+  </parent>
+  <groupId>org.apache.solr</groupId>
+  <artifactId>solr-ltr</artifactId>
+  <packaging>jar</packaging>
+  <name>Apache Solr Learning to Rank Package</name>
+  <description>
+    Apache Solr Learning to Rank Package
+  </description>
+  <properties>
+    <module-directory>solr/contrib/ltr</module-directory>
+    <relative-top-level>../../../..</relative-top-level>
+    <module-path>${relative-top-level}/${module-directory}</module-path>
+  </properties>
+  <scm>
+    <connection>scm:git:${vc-anonymous-base-url}</connection>
+    <developerConnection>scm:git:${vc-dev-base-url}</developerConnection>
+    <url>${vc-browse-base-url};f=${module-directory}</url>
+  </scm>
+  <dependencies>
+    <dependency>
+      <!-- lucene-test-framework dependency must be declared before lucene-core -->
+      <!-- This dependency cannot be put into solr-parent, because local        -->
+      <!-- dependencies are always ordered before inherited dependencies.       -->
+      <groupId>org.apache.lucene</groupId>
+      <artifactId>lucene-test-framework</artifactId>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.solr</groupId>
+      <artifactId>solr-test-framework</artifactId>
+      <scope>test</scope>
+    </dependency>
+        <dependency>
+      <groupId>org.apache.lucene</groupId>
+      <artifactId>lucene-analyzers-common</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.lucene</groupId>
+      <artifactId>lucene-analyzers-kuromoji</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.lucene</groupId>
+      <artifactId>lucene-analyzers-nori</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.lucene</groupId>
+      <artifactId>lucene-analyzers-phonetic</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.lucene</groupId>
+      <artifactId>lucene-backward-codecs</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.lucene</groupId>
+      <artifactId>lucene-classification</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.lucene</groupId>
+      <artifactId>lucene-codecs</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.lucene</groupId>
+      <artifactId>lucene-core</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.lucene</groupId>
+      <artifactId>lucene-expressions</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.lucene</groupId>
+      <artifactId>lucene-grouping</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.lucene</groupId>
+      <artifactId>lucene-highlighter</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.lucene</groupId>
+      <artifactId>lucene-join</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.lucene</groupId>
+      <artifactId>lucene-memory</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.lucene</groupId>
+      <artifactId>lucene-misc</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.lucene</groupId>
+      <artifactId>lucene-queries</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.lucene</groupId>
+      <artifactId>lucene-queryparser</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.lucene</groupId>
+      <artifactId>lucene-sandbox</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.lucene</groupId>
+      <artifactId>lucene-spatial-extras</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.lucene</groupId>
+      <artifactId>lucene-spatial3d</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.lucene</groupId>
+      <artifactId>lucene-suggest</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.solr</groupId>
+      <artifactId>solr-core</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.solr</groupId>
+      <artifactId>solr-solrj</artifactId>
+    </dependency>
+        <dependency>
+      <groupId>com.carrotsearch</groupId>
+      <artifactId>hppc</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.fasterxml.jackson.core</groupId>
+      <artifactId>jackson-annotations</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.fasterxml.jackson.core</groupId>
+      <artifactId>jackson-core</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.fasterxml.jackson.core</groupId>
+      <artifactId>jackson-databind</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.fasterxml.jackson.dataformat</groupId>
+      <artifactId>jackson-dataformat-smile</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.github.ben-manes.caffeine</groupId>
+      <artifactId>caffeine</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.github.zafarkhaja</groupId>
+      <artifactId>java-semver</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.google.guava</groupId>
+      <artifactId>guava</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.google.protobuf</groupId>
+      <artifactId>protobuf-java</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.google.re2j</groupId>
+      <artifactId>re2j</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.jayway.jsonpath</groupId>
+      <artifactId>json-path</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.lmax</groupId>
+      <artifactId>disruptor</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.tdunning</groupId>
+      <artifactId>t-digest</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>commons-cli</groupId>
+      <artifactId>commons-cli</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>commons-codec</groupId>
+      <artifactId>commons-codec</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>commons-collections</groupId>
+      <artifactId>commons-collections</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>commons-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.2-RC1-rev016993b65e393b58246d54e8ddda9f56a453eb0e/solr/maven/org/apache/solr/solr-ltr/8.6.2/solr-ltr-8.6.2.pom.asc
==============================================================================
--- dev/lucene/lucene-solr-8.6.2-RC1-rev016993b65e393b58246d54e8ddda9f56a453eb0e/solr/maven/org/apache/solr/solr-ltr/8.6.2/solr-ltr-8.6.2.pom.asc (added)
+++ dev/lucene/lucene-solr-8.6.2-RC1-rev016993b65e393b58246d54e8ddda9f56a453eb0e/solr/maven/org/apache/solr/solr-ltr/8.6.2/solr-ltr-8.6.2.pom.asc Wed Aug 26 11:53:16 2020
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCAAdFiEE5YpvTVsrSKxm1eU71PGBiBpC+eYFAl9GJYoACgkQ1PGBiBpC
++ea2mA//WJzlb6HufN0hUpIlEkKnbfhEX1uobOH7uNlsiiJrWWSh+U/Y/2VQEfks
++aual/a5Iw4Ug2F8aI4u0fOR+0UA28sZU7XBGwa9qwQ7L9/efNeCJt6JOgupJrrm
+glGJLlBQoNCQBhZSh5Q7pBn5C9FcmhOjLbRNbhLTNwmT2JHKKfug77obQLTSjifC
+s0DHscO1YsObhDegVs294jENGIwIKqsxl6o++hmoaGjFjbtbHP671MM2SV7O/ByQ
+lRfeWM/hKZIP1tQ5OJ1cYNilb07Y5FynrG8Wim8pK5Fc2h6wxlFGQMO4vvGbSpqe
+12mY7G+pfBH6rNVdY5TjUcomcTE84bvFWk64M2MXhqCDNYWgJP1nZJt5aD4XNw8v
+2tpR0KENX41WFS2yD2arp7KSlDOuI243nntGCEn2md8HJiCkePuSbGK7v1t4Wq5H
+6EEZIYxbzW+cHaq22UIzuFd6JtGgzn1r+AWyUhx1VAhdoncolloRCA0vJSB2EqAP
+q2oJBuFJwUTprpaQBARmPrx3LK40uAwLU0E2V/KGkzF7E47td0914mf6X/LR9MXv
+vX822qo7K+9/mmBKNHATcCJa/AIgUDV9fO6xsF/ND6R9R0TvKPMtBGOS1EOV4NI1
+fJ3rDLZ9QicWDjAz+A8oruIWE/X8628cQ7+FKwmDVAaEj6YSV4g=
+=5pUq
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-8.6.2-RC1-rev016993b65e393b58246d54e8ddda9f56a453eb0e/solr/maven/org/apache/solr/solr-ltr/8.6.2/solr-ltr-8.6.2.pom.md5
==============================================================================
--- dev/lucene/lucene-solr-8.6.2-RC1-rev016993b65e393b58246d54e8ddda9f56a453eb0e/solr/maven/org/apache/solr/solr-ltr/8.6.2/solr-ltr-8.6.2.pom.md5 (added)
+++ dev/lucene/lucene-solr-8.6.2-RC1-rev016993b65e393b58246d54e8ddda9f56a453eb0e/solr/maven/org/apache/solr/solr-ltr/8.6.2/solr-ltr-8.6.2.pom.md5 Wed Aug 26 11:53:16 2020
@@ -0,0 +1 @@
+14924e8c2e27e30cbcf2d2288f616bba
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.6.2-RC1-rev016993b65e393b58246d54e8ddda9f56a453eb0e/solr/maven/org/apache/solr/solr-ltr/8.6.2/solr-ltr-8.6.2.pom.sha1
==============================================================================
--- dev/lucene/lucene-solr-8.6.2-RC1-rev016993b65e393b58246d54e8ddda9f56a453eb0e/solr/maven/org/apache/solr/solr-ltr/8.6.2/solr-ltr-8.6.2.pom.sha1 (added)
+++ dev/lucene/lucene-solr-8.6.2-RC1-rev016993b65e393b58246d54e8ddda9f56a453eb0e/solr/maven/org/apache/solr/solr-ltr/8.6.2/solr-ltr-8.6.2.pom.sha1 Wed Aug 26 11:53:16 2020
@@ -0,0 +1 @@
+8a6666f7ed9ce15968ed9d0e05bf52346d54243c
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.6.2-RC1-rev016993b65e393b58246d54e8ddda9f56a453eb0e/solr/maven/org/apache/solr/solr-ltr/maven-metadata.xml
==============================================================================
--- dev/lucene/lucene-solr-8.6.2-RC1-rev016993b65e393b58246d54e8ddda9f56a453eb0e/solr/maven/org/apache/solr/solr-ltr/maven-metadata.xml (added)
+++ dev/lucene/lucene-solr-8.6.2-RC1-rev016993b65e393b58246d54e8ddda9f56a453eb0e/solr/maven/org/apache/solr/solr-ltr/maven-metadata.xml Wed Aug 26 11:53:16 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.2</version>
+  <versioning>
+    <versions>
+      <version>8.6.2</version>
+    </versions>
+    <lastUpdated>20200826090339</lastUpdated>
+  </versioning>
+</metadata>

Added: dev/lucene/lucene-solr-8.6.2-RC1-rev016993b65e393b58246d54e8ddda9f56a453eb0e/solr/maven/org/apache/solr/solr-ltr/maven-metadata.xml.md5
==============================================================================
--- dev/lucene/lucene-solr-8.6.2-RC1-rev016993b65e393b58246d54e8ddda9f56a453eb0e/solr/maven/org/apache/solr/solr-ltr/maven-metadata.xml.md5 (added)
+++ dev/lucene/lucene-solr-8.6.2-RC1-rev016993b65e393b58246d54e8ddda9f56a453eb0e/solr/maven/org/apache/solr/solr-ltr/maven-metadata.xml.md5 Wed Aug 26 11:53:16 2020
@@ -0,0 +1 @@
+39420ccd950e10ca0add12ce115b4357
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.6.2-RC1-rev016993b65e393b58246d54e8ddda9f56a453eb0e/solr/maven/org/apache/solr/solr-ltr/maven-metadata.xml.sha1
==============================================================================
--- dev/lucene/lucene-solr-8.6.2-RC1-rev016993b65e393b58246d54e8ddda9f56a453eb0e/solr/maven/org/apache/solr/solr-ltr/maven-metadata.xml.sha1 (added)
+++ dev/lucene/lucene-solr-8.6.2-RC1-rev016993b65e393b58246d54e8ddda9f56a453eb0e/solr/maven/org/apache/solr/solr-ltr/maven-metadata.xml.sha1 Wed Aug 26 11:53:16 2020
@@ -0,0 +1 @@
+d3e2fdfe07fcb0388e145b6dd9cd49418c3a9f70
\ No newline at end of file

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

Added: dev/lucene/lucene-solr-8.6.2-RC1-rev016993b65e393b58246d54e8ddda9f56a453eb0e/solr/maven/org/apache/solr/solr-parent/8.6.2/solr-parent-8.6.2.pom.asc
==============================================================================
--- dev/lucene/lucene-solr-8.6.2-RC1-rev016993b65e393b58246d54e8ddda9f56a453eb0e/solr/maven/org/apache/solr/solr-parent/8.6.2/solr-parent-8.6.2.pom.asc (added)
+++ dev/lucene/lucene-solr-8.6.2-RC1-rev016993b65e393b58246d54e8ddda9f56a453eb0e/solr/maven/org/apache/solr/solr-parent/8.6.2/solr-parent-8.6.2.pom.asc Wed Aug 26 11:53:16 2020
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCAAdFiEE5YpvTVsrSKxm1eU71PGBiBpC+eYFAl9GJYoACgkQ1PGBiBpC
++eYxqw//aMIZbGAB+mHSaEx8hLJWw/8wbdVcFDequkJLk5ceyC1zZ9/48Aqsix7C
+mWnZGAsYaIjsuQqTijVgT2eI4XmgG8HQdpJZcPhjCgjJ1IcKGgJ4/Cxu4+s6tqx0
+dpx99iuFaj/BILA88+q03i/YzBvsQ9jGWKoeiPY1+hgD08BkcfsDbrYsgjiibqGK
+8N8elxFSYKmZ0pnTa6DTPxhUNZD9ujfRE2N8r1lfgeSbVN0chHh6oi2GNRmB8hNn
+QlpxlcBYmVZ+axsP+5EKZVwxrUSij6BN+40lYKjuw/iO2XK5VSV8y2hJGU5hpof0
+h2ticd76Dh/MOhP+t7m3cBPv7H2QZir7u/X+PMH9ZyluvTUsnU7XwciFnmiedAAX
+Z6toQcZ9tvcqlEEWiEOLjoHsX+ph+Yp3Y0BpyIlZHUPGl+pWibxiNJwEEvCf86T0
+XhjIn6yFqIHbsA3yOujuxFflxKgrml/n/Dtxlk4rClRRWWdwIXQhjRxWsu4JoROI
+3InG8xpQHBJJ5WopdSaR/LTwSpgmiNTYD/lTrHOeW2YDprb7qVDy6PQMqaVuypBd
+w5I72NFMTUiF6+ekLwnI13zNDgwQc62MV9oM6N0xYMTd6BvwfE078QuWX4KKnXp8
+wuJms+C2Nl1B4sTZ4YuefUD4QQGeBHzTdXRaT5C02ogLt1Co87k=
+=rRpL
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-8.6.2-RC1-rev016993b65e393b58246d54e8ddda9f56a453eb0e/solr/maven/org/apache/solr/solr-parent/8.6.2/solr-parent-8.6.2.pom.md5
==============================================================================
--- dev/lucene/lucene-solr-8.6.2-RC1-rev016993b65e393b58246d54e8ddda9f56a453eb0e/solr/maven/org/apache/solr/solr-parent/8.6.2/solr-parent-8.6.2.pom.md5 (added)
+++ dev/lucene/lucene-solr-8.6.2-RC1-rev016993b65e393b58246d54e8ddda9f56a453eb0e/solr/maven/org/apache/solr/solr-parent/8.6.2/solr-parent-8.6.2.pom.md5 Wed Aug 26 11:53:16 2020
@@ -0,0 +1 @@
+56080da24b9d35b0af3803b6386b90f1
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.6.2-RC1-rev016993b65e393b58246d54e8ddda9f56a453eb0e/solr/maven/org/apache/solr/solr-parent/8.6.2/solr-parent-8.6.2.pom.sha1
==============================================================================
--- dev/lucene/lucene-solr-8.6.2-RC1-rev016993b65e393b58246d54e8ddda9f56a453eb0e/solr/maven/org/apache/solr/solr-parent/8.6.2/solr-parent-8.6.2.pom.sha1 (added)
+++ dev/lucene/lucene-solr-8.6.2-RC1-rev016993b65e393b58246d54e8ddda9f56a453eb0e/solr/maven/org/apache/solr/solr-parent/8.6.2/solr-parent-8.6.2.pom.sha1 Wed Aug 26 11:53:16 2020
@@ -0,0 +1 @@
+86a3238dd18f4922ee31530b6bd27d300c5471c2
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.6.2-RC1-rev016993b65e393b58246d54e8ddda9f56a453eb0e/solr/maven/org/apache/solr/solr-parent/maven-metadata.xml
==============================================================================
--- dev/lucene/lucene-solr-8.6.2-RC1-rev016993b65e393b58246d54e8ddda9f56a453eb0e/solr/maven/org/apache/solr/solr-parent/maven-metadata.xml (added)
+++ dev/lucene/lucene-solr-8.6.2-RC1-rev016993b65e393b58246d54e8ddda9f56a453eb0e/solr/maven/org/apache/solr/solr-parent/maven-metadata.xml Wed Aug 26 11:53:16 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.2</version>
+  <versioning>
+    <versions>
+      <version>8.6.2</version>
+    </versions>
+    <lastUpdated>20200826090301</lastUpdated>
+  </versioning>
+</metadata>

Added: dev/lucene/lucene-solr-8.6.2-RC1-rev016993b65e393b58246d54e8ddda9f56a453eb0e/solr/maven/org/apache/solr/solr-parent/maven-metadata.xml.md5
==============================================================================
--- dev/lucene/lucene-solr-8.6.2-RC1-rev016993b65e393b58246d54e8ddda9f56a453eb0e/solr/maven/org/apache/solr/solr-parent/maven-metadata.xml.md5 (added)
+++ dev/lucene/lucene-solr-8.6.2-RC1-rev016993b65e393b58246d54e8ddda9f56a453eb0e/solr/maven/org/apache/solr/solr-parent/maven-metadata.xml.md5 Wed Aug 26 11:53:16 2020
@@ -0,0 +1 @@
+39bc675466070a521349d46377bcde66
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.6.2-RC1-rev016993b65e393b58246d54e8ddda9f56a453eb0e/solr/maven/org/apache/solr/solr-parent/maven-metadata.xml.sha1
==============================================================================
--- dev/lucene/lucene-solr-8.6.2-RC1-rev016993b65e393b58246d54e8ddda9f56a453eb0e/solr/maven/org/apache/solr/solr-parent/maven-metadata.xml.sha1 (added)
+++ dev/lucene/lucene-solr-8.6.2-RC1-rev016993b65e393b58246d54e8ddda9f56a453eb0e/solr/maven/org/apache/solr/solr-parent/maven-metadata.xml.sha1 Wed Aug 26 11:53:16 2020
@@ -0,0 +1 @@
+ffa3b3e7eca1b5a221cf79414d3db78348f62781
\ No newline at end of file

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

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

Added: dev/lucene/lucene-solr-8.6.2-RC1-rev016993b65e393b58246d54e8ddda9f56a453eb0e/solr/maven/org/apache/solr/solr-prometheus-exporter/8.6.2/solr-prometheus-exporter-8.6.2-javadoc.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-8.6.2-RC1-rev016993b65e393b58246d54e8ddda9f56a453eb0e/solr/maven/org/apache/solr/solr-prometheus-exporter/8.6.2/solr-prometheus-exporter-8.6.2-javadoc.jar.asc (added)
+++ dev/lucene/lucene-solr-8.6.2-RC1-rev016993b65e393b58246d54e8ddda9f56a453eb0e/solr/maven/org/apache/solr/solr-prometheus-exporter/8.6.2/solr-prometheus-exporter-8.6.2-javadoc.jar.asc Wed Aug 26 11:53:16 2020
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCAAdFiEE5YpvTVsrSKxm1eU71PGBiBpC+eYFAl9GJYsACgkQ1PGBiBpC
++eZmDQ/8DseJzcP1rkqi3IzgzfIm0595dZfjXH07jNeGQgN3YuLyZB6tS5YhHvhp
+iDIRxHEQ0bT+GAtXk0YkbjWc0PJNI3iId2hEvNc8vtcW1XeQF76fOt9Wh4jo0iuM
+hj/yZjIEUwV78KgWPjFggYmkWGZdbuLP1BcOnTYoY6PuIP6vczEpuX5pChfYVHn7
+6T61h3Qui5mqQ4Y2USOnjLOZeXeLK1FAHAhONmpD/g5MJiXptM8DPHOEOLfGuOxV
+TRKk1pvDld1566xopaWEnsvDhl5nzed0ouS62gL+dnSRmg/dpVKpkwgTGPZg90Fo
+GriyMYwCD8asWR8SHoTs98L9tMXFtB9TQtDbIwsjMQ4355anhuzwq1flX3z+aDC1
+DoAScexlPVUIyWTTlmskwXABKDZGVo3uM7MBw2sKJQy2YhTpgxFiHrcgjmGVT9mQ
+T6yiz5z8x2/UmY29Zm24EIbNb97Wv68EoYrY9qhOWglDhkkgnrlx5ZVE1Gj5nojj
+Gd5TBgjESXDzjxuRHqnPopCNmgrtPXolVXAyewfxwgSZG3xQlSjsq6gs7lI7Bu9F
+r72NhWfJZ6fc79DY5djLFIUntItYW8HM7KvFztimHgL6ON0QndcnSc4huES1HaBr
+3Czohb5/riYOeWpUS0e2FYIxZ2BMWdOlz8m+w6CCRvPsLl4p6oY=
+=/OWQ
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-8.6.2-RC1-rev016993b65e393b58246d54e8ddda9f56a453eb0e/solr/maven/org/apache/solr/solr-prometheus-exporter/8.6.2/solr-prometheus-exporter-8.6.2-javadoc.jar.md5
==============================================================================
--- dev/lucene/lucene-solr-8.6.2-RC1-rev016993b65e393b58246d54e8ddda9f56a453eb0e/solr/maven/org/apache/solr/solr-prometheus-exporter/8.6.2/solr-prometheus-exporter-8.6.2-javadoc.jar.md5 (added)
+++ dev/lucene/lucene-solr-8.6.2-RC1-rev016993b65e393b58246d54e8ddda9f56a453eb0e/solr/maven/org/apache/solr/solr-prometheus-exporter/8.6.2/solr-prometheus-exporter-8.6.2-javadoc.jar.md5 Wed Aug 26 11:53:16 2020
@@ -0,0 +1 @@
+6bf8582eed63a3297a96641900d177fd
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.6.2-RC1-rev016993b65e393b58246d54e8ddda9f56a453eb0e/solr/maven/org/apache/solr/solr-prometheus-exporter/8.6.2/solr-prometheus-exporter-8.6.2-javadoc.jar.sha1
==============================================================================
--- dev/lucene/lucene-solr-8.6.2-RC1-rev016993b65e393b58246d54e8ddda9f56a453eb0e/solr/maven/org/apache/solr/solr-prometheus-exporter/8.6.2/solr-prometheus-exporter-8.6.2-javadoc.jar.sha1 (added)
+++ dev/lucene/lucene-solr-8.6.2-RC1-rev016993b65e393b58246d54e8ddda9f56a453eb0e/solr/maven/org/apache/solr/solr-prometheus-exporter/8.6.2/solr-prometheus-exporter-8.6.2-javadoc.jar.sha1 Wed Aug 26 11:53:16 2020
@@ -0,0 +1 @@
+74698617e0d70f68d6c4d9c924190d7c9ed803f5
\ No newline at end of file

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

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

Added: dev/lucene/lucene-solr-8.6.2-RC1-rev016993b65e393b58246d54e8ddda9f56a453eb0e/solr/maven/org/apache/solr/solr-prometheus-exporter/8.6.2/solr-prometheus-exporter-8.6.2-sources.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-8.6.2-RC1-rev016993b65e393b58246d54e8ddda9f56a453eb0e/solr/maven/org/apache/solr/solr-prometheus-exporter/8.6.2/solr-prometheus-exporter-8.6.2-sources.jar.asc (added)
+++ dev/lucene/lucene-solr-8.6.2-RC1-rev016993b65e393b58246d54e8ddda9f56a453eb0e/solr/maven/org/apache/solr/solr-prometheus-exporter/8.6.2/solr-prometheus-exporter-8.6.2-sources.jar.asc Wed Aug 26 11:53:16 2020
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCAAdFiEE5YpvTVsrSKxm1eU71PGBiBpC+eYFAl9GJYsACgkQ1PGBiBpC
++eY3sRAAvsIJjpFHYuOpc9zyYSdQ03ArDKATnszL5xO3mshih8EH5QVVFOAZT1C3
+WiIo/0FQNJq3466O9vWXc8cW8LTjrFaNsVtkiCOWAsjfzW8dZxHWrBucU3uzQyjt
+N/3BTeuHczQ1/1XNuWvckCWYqtPwxc+piiF4rmQdsSaQT3X1ZP0+MwurEjgJN3ya
+bkqgDwuEBcUkE2Y94hYK2SnAh5pak2QiqVfBgk5DzIAkTyNyGjileDh1sbtlZqaG
+vwPogBFeYHZX2VCny/T4w0F2ktrIW1wEYK3ADsp6AUuF7xPXt0ZAmRAhiaFZuvki
++eJMQH2plcnyZp9lqi9tDoaXnKMcKzUliQf7Q+N15K7QxocTA32O3xSXz60Vlg3x
+WCvYtPXV+DKZPBu45fp+xLdKcv8Wv/lE7UHc19opvg1H5y8dhDjBcMScVYI1VBqE
+ceXZA7LSQ8LVnIMp+IjVz1fS5nQzxghnLq7WPihK8RKoFlJCRapexP0VZpqgLPVH
+B/ot0qwrft8dDQ+Mp+M6Y2uAZ6qswhPe6UUwvFwihazwN1ID+6Za/rp8EFKqFQmD
+NDwtjmhKZ/FXWEvBuTzpJUbY9E6ayEfGZsAXSWYcJGUtX752ItSP2FmkoPioab7F
+wbwp2pQaaWk+j9Zq5KEBlDqt7tm9AU6VWSZjAc4R/7tLfyAcIhw=
+=f4pF
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-8.6.2-RC1-rev016993b65e393b58246d54e8ddda9f56a453eb0e/solr/maven/org/apache/solr/solr-prometheus-exporter/8.6.2/solr-prometheus-exporter-8.6.2-sources.jar.md5
==============================================================================
--- dev/lucene/lucene-solr-8.6.2-RC1-rev016993b65e393b58246d54e8ddda9f56a453eb0e/solr/maven/org/apache/solr/solr-prometheus-exporter/8.6.2/solr-prometheus-exporter-8.6.2-sources.jar.md5 (added)
+++ dev/lucene/lucene-solr-8.6.2-RC1-rev016993b65e393b58246d54e8ddda9f56a453eb0e/solr/maven/org/apache/solr/solr-prometheus-exporter/8.6.2/solr-prometheus-exporter-8.6.2-sources.jar.md5 Wed Aug 26 11:53:16 2020
@@ -0,0 +1 @@
+72964e731ee9cc1aab52acf6ad9519c5
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.6.2-RC1-rev016993b65e393b58246d54e8ddda9f56a453eb0e/solr/maven/org/apache/solr/solr-prometheus-exporter/8.6.2/solr-prometheus-exporter-8.6.2-sources.jar.sha1
==============================================================================
--- dev/lucene/lucene-solr-8.6.2-RC1-rev016993b65e393b58246d54e8ddda9f56a453eb0e/solr/maven/org/apache/solr/solr-prometheus-exporter/8.6.2/solr-prometheus-exporter-8.6.2-sources.jar.sha1 (added)
+++ dev/lucene/lucene-solr-8.6.2-RC1-rev016993b65e393b58246d54e8ddda9f56a453eb0e/solr/maven/org/apache/solr/solr-prometheus-exporter/8.6.2/solr-prometheus-exporter-8.6.2-sources.jar.sha1 Wed Aug 26 11:53:16 2020
@@ -0,0 +1 @@
+618acd9a451ea2882b5070cb3a37dea05aa7fee7
\ No newline at end of file

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

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

Added: dev/lucene/lucene-solr-8.6.2-RC1-rev016993b65e393b58246d54e8ddda9f56a453eb0e/solr/maven/org/apache/solr/solr-prometheus-exporter/8.6.2/solr-prometheus-exporter-8.6.2.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-8.6.2-RC1-rev016993b65e393b58246d54e8ddda9f56a453eb0e/solr/maven/org/apache/solr/solr-prometheus-exporter/8.6.2/solr-prometheus-exporter-8.6.2.jar.asc (added)
+++ dev/lucene/lucene-solr-8.6.2-RC1-rev016993b65e393b58246d54e8ddda9f56a453eb0e/solr/maven/org/apache/solr/solr-prometheus-exporter/8.6.2/solr-prometheus-exporter-8.6.2.jar.asc Wed Aug 26 11:53:16 2020
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCAAdFiEE5YpvTVsrSKxm1eU71PGBiBpC+eYFAl9GJYwACgkQ1PGBiBpC
++ebLGg//SBoU3Zs+YQG2EBko1IBHh6l8LcV49GMi7+Y1VIy+s06ljiA/aYlEzUmy
+GeIrnjZUMEmx3HlMdRp/8LQFCCJDIiz3EVHb7wjjA1Dnem//h+OJXQGkrI9VQgln
+R94zvTeIhRMfDKZV11ZkapiT7XupNNM2tPxRu0dtYCiZgX12ZOf5Up+cIYJwKWJ4
+iZZyF7cL8NzgYaJmttT4DsidDRvmZ3xMjMoazB8Uhk6g0BPM+urKmaB+e+gvLxzK
+ApG71ZVo0nhlJXfH7/tWl5+3klZeoIQl1Pw9TM0KpuTmChv4JuI8KSxKuvleseHF
+e7dSFk7ZjsdpUfrmWjCzCHHmG0vMCo2X65h85+HEYFWNpbzDV7pfkivmiN2RYHxQ
+vJCpw/ShLDOVpe3pZiq8pj5sFNewP7oVWD7ihc216emcT3araIbJTvfKJXg1MQe6
+VgBrKLVj+SCA/p4SVBV8NZ9azSAckle8JQQTrRTrYuD2AA5ZDuLi4yxwyr+jJ2kl
+zCwQAKd1/pjw815THTaM3GVdB8/YYnW/Dr0D7ESAq/IwzWGVPXtaQM2+vCnuf0kA
+tcxGYavYrH0G1sTlwVyNf4xJT7L4fm7m65Om3RonYwf/WjU6XIs1nEtTGA48nH41
+6bLfHypfjnJFnuvJtiLesrWlPAAW0H+yT7ElNzql3ua75qz3QQY=
+=haXj
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-8.6.2-RC1-rev016993b65e393b58246d54e8ddda9f56a453eb0e/solr/maven/org/apache/solr/solr-prometheus-exporter/8.6.2/solr-prometheus-exporter-8.6.2.jar.md5
==============================================================================
--- dev/lucene/lucene-solr-8.6.2-RC1-rev016993b65e393b58246d54e8ddda9f56a453eb0e/solr/maven/org/apache/solr/solr-prometheus-exporter/8.6.2/solr-prometheus-exporter-8.6.2.jar.md5 (added)
+++ dev/lucene/lucene-solr-8.6.2-RC1-rev016993b65e393b58246d54e8ddda9f56a453eb0e/solr/maven/org/apache/solr/solr-prometheus-exporter/8.6.2/solr-prometheus-exporter-8.6.2.jar.md5 Wed Aug 26 11:53:16 2020
@@ -0,0 +1 @@
+a0a168d01856a5a84be6b641446d6472
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.6.2-RC1-rev016993b65e393b58246d54e8ddda9f56a453eb0e/solr/maven/org/apache/solr/solr-prometheus-exporter/8.6.2/solr-prometheus-exporter-8.6.2.jar.sha1
==============================================================================
--- dev/lucene/lucene-solr-8.6.2-RC1-rev016993b65e393b58246d54e8ddda9f56a453eb0e/solr/maven/org/apache/solr/solr-prometheus-exporter/8.6.2/solr-prometheus-exporter-8.6.2.jar.sha1 (added)
+++ dev/lucene/lucene-solr-8.6.2-RC1-rev016993b65e393b58246d54e8ddda9f56a453eb0e/solr/maven/org/apache/solr/solr-prometheus-exporter/8.6.2/solr-prometheus-exporter-8.6.2.jar.sha1 Wed Aug 26 11:53:16 2020
@@ -0,0 +1 @@
+0efb4235567e02a132c8c5f8cb9293a48cafa8ad
\ No newline at end of file