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 [14/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-cell/8.6.1/solr-cell-8.6.1.pom
==============================================================================
--- dev/lucene/lucene-solr-8.6.1-RC2-rev6e11a1c3f0599f1c918bc69c4f51928d23160e99/solr/maven/org/apache/solr/solr-cell/8.6.1/solr-cell-8.6.1.pom (added)
+++ dev/lucene/lucene-solr-8.6.1-RC2-rev6e11a1c3f0599f1c918bc69c4f51928d23160e99/solr/maven/org/apache/solr/solr-cell/8.6.1/solr-cell-8.6.1.pom Mon Aug 10 18:54:58 2020
@@ -0,0 +1,760 @@
+<!--
+  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-cell</artifactId>
+  <packaging>jar</packaging>
+  <name>Apache Solr Content Extraction Library</name>
+  <description>
+    Apache Solr Content Extraction Library integrates Apache Tika 
+    content extraction framework into Solr
+  </description>
+  <properties>
+    <module-directory>solr/contrib/extraction</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.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.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.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>
+    <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-cell/8.6.1/solr-cell-8.6.1.pom.asc
==============================================================================
--- dev/lucene/lucene-solr-8.6.1-RC2-rev6e11a1c3f0599f1c918bc69c4f51928d23160e99/solr/maven/org/apache/solr/solr-cell/8.6.1/solr-cell-8.6.1.pom.asc (added)
+++ dev/lucene/lucene-solr-8.6.1-RC2-rev6e11a1c3f0599f1c918bc69c4f51928d23160e99/solr/maven/org/apache/solr/solr-cell/8.6.1/solr-cell-8.6.1.pom.asc Mon Aug 10 18:54:58 2020
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCAAdFiEEUOPuHJHH4MtN+wB7NpQk/Jjz9uwFAl8xhWcACgkQNpQk/Jjz
+9uwLHxAA3OagMpo+IW6NVgxuTxYlw7/u5QFnXbLbBMWdBbuodZ/zylAy9D4gQRgJ
+PwtZdY5EtdSy3v89h+dntfKRL8dVQOdx3i8YDN1s73Vd58yk2xZiem7fTH8kS/nz
+hQZ8F6+PncgeXD4e/KZIqF0aFdEOB+uukVPxF++JvmzVZeVOt7tzPYguBG2mVB82
++pX5ATZ+CaI12dN7HB9h1jnh8ybeKPwIlnqLYgfmIgu9+547qhdg0YmtUYyPe9Yo
+iczSaZC7JPownD5Rln1IkEe4Ioxg1OjYXpa2+6J5kA6QxClvKJ1CgOZYvDiyXBDl
+wpZlVHzkFNOzBpGKO3GxkTO6kNGEdmW5lsHORACu/LmdyJoNchc+m0goLVJgnx4k
+aFaqsS/S+Fy+0+oGg5Kn3JTjqBwh2jvh/yGjlfKIsOs3BgyMdwCHArBldeGdLSrc
+6jOQmvsioa5UcDcwmet7MzhWYQNVzuj/dRgqJbR2B6zqJziBNs9D1FfPvUJFrgPc
+++yNs/9njlL80iW9ifuey5GgV2bHj2RuW+A2UL61h/R86ASF5KMAfPGG1s9+vXnZ
+5HgB/ppMNRObk49XrO/NL7WQCOfXjJLFS+otS7X4gUTDQGrkpJ7d5dnYRVwiL1vg
+KnETrtR92P5fwFW2HtCda8A227XNevGgj7icY8Oxt8rn8OyUPVQ=
+=gm8x
+-----END PGP SIGNATURE-----

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

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

Added: dev/lucene/lucene-solr-8.6.1-RC2-rev6e11a1c3f0599f1c918bc69c4f51928d23160e99/solr/maven/org/apache/solr/solr-cell/maven-metadata.xml
==============================================================================
--- dev/lucene/lucene-solr-8.6.1-RC2-rev6e11a1c3f0599f1c918bc69c4f51928d23160e99/solr/maven/org/apache/solr/solr-cell/maven-metadata.xml (added)
+++ dev/lucene/lucene-solr-8.6.1-RC2-rev6e11a1c3f0599f1c918bc69c4f51928d23160e99/solr/maven/org/apache/solr/solr-cell/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-cell</artifactId>
+  <version>8.6.1</version>
+  <versioning>
+    <versions>
+      <version>8.6.1</version>
+    </versions>
+    <lastUpdated>20200810173516</lastUpdated>
+  </versioning>
+</metadata>

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

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

Added: dev/lucene/lucene-solr-8.6.1-RC2-rev6e11a1c3f0599f1c918bc69c4f51928d23160e99/solr/maven/org/apache/solr/solr-clustering/8.6.1/solr-clustering-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-clustering/8.6.1/solr-clustering-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-clustering/8.6.1/solr-clustering-8.6.1-javadoc.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-8.6.1-RC2-rev6e11a1c3f0599f1c918bc69c4f51928d23160e99/solr/maven/org/apache/solr/solr-clustering/8.6.1/solr-clustering-8.6.1-javadoc.jar.asc (added)
+++ dev/lucene/lucene-solr-8.6.1-RC2-rev6e11a1c3f0599f1c918bc69c4f51928d23160e99/solr/maven/org/apache/solr/solr-clustering/8.6.1/solr-clustering-8.6.1-javadoc.jar.asc Mon Aug 10 18:54:58 2020
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCAAdFiEEUOPuHJHH4MtN+wB7NpQk/Jjz9uwFAl8xhWcACgkQNpQk/Jjz
+9uxwsA//Xy2DX1GdQw7nDRi8LqKPAJnqwwJBKVVJAa6qMrKWqjH8XfRMdxkrtK6j
+DF/atbkx+3tIBnQd7BaNySv/Y6JlLAlj22xFu9ttY0uBp8Q3HLein3LRV/pv9wsn
+rQ4zix3MsVvU2xgAxRquD2Uw7jOcsLpDBzF0JRPBY11HarSa30LcJGsxU2FHiHVD
+nqHUDFuFH3jiU60SGglCZ1WPStN5XCUrBdITY8iUunao+qzHJDy7j1N07k4Rtyra
+zHDbhloPKIMhBcCvxCH3ocqOSqbITeTK8S+Qg5vbT18D4WLPpbgw3/4h1WbPsiCr
+l65QXPVt6G0H5bTeeLQJEFMkSW/0PNlcWR/Vkt/iPAnJZ6R9ntjOqLQOrgW9OtC5
+YLc021nCdM/EQRUp5sE/XTrBXCDvvryIeRzcRH7cVcjXn3bzA0DAMf+cTZe8KeQq
+szCZ0bA3zAa+3L6LRz8aOjb5akMLL5Lknj8maF5euUM2uWN5I2Kn2M0QLLxgTvH1
+MYEGSv07/Oz2wk1joaN8y0XhBTRgUoTvWqNA8XH8kzuHp+fB+ZRI2AKZMtA0Ah9X
+BASEGdwD1IEUsrBZayHwR9NwXfBzUSL99MxYq9izqyvNHb7fT0LQic/YhiTudYSw
+GqEFZpPk6rhiU2bqBAW8MjqnkVVvhfSkIY9dGHn1tOi/5fmwmX0=
+=J7S3
+-----END PGP SIGNATURE-----

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

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

Added: dev/lucene/lucene-solr-8.6.1-RC2-rev6e11a1c3f0599f1c918bc69c4f51928d23160e99/solr/maven/org/apache/solr/solr-clustering/8.6.1/solr-clustering-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-clustering/8.6.1/solr-clustering-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-clustering/8.6.1/solr-clustering-8.6.1-sources.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-8.6.1-RC2-rev6e11a1c3f0599f1c918bc69c4f51928d23160e99/solr/maven/org/apache/solr/solr-clustering/8.6.1/solr-clustering-8.6.1-sources.jar.asc (added)
+++ dev/lucene/lucene-solr-8.6.1-RC2-rev6e11a1c3f0599f1c918bc69c4f51928d23160e99/solr/maven/org/apache/solr/solr-clustering/8.6.1/solr-clustering-8.6.1-sources.jar.asc Mon Aug 10 18:54:58 2020
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCAAdFiEEUOPuHJHH4MtN+wB7NpQk/Jjz9uwFAl8xhWcACgkQNpQk/Jjz
+9uyPCw//a0Pl5+CodT/lZOS6bVWGwU++X5phG2X+xwqQx7E4XWW3dt4o3M3djHeu
+sG1aVAq8kJNd7XN75QpkyNRzjepJzNuGUu3nOW6naR3ZPJT6hsYkC05exfvuoW2z
+Tv/tkAWJvD1c3NWhd+A7Eg4+l3EBg6OiiwD2xI4HTf1Fj1F4YfmT7wHON8Sgj1lr
+4g6XykaEFbLPnnSQXE3QZyPeK3ik3ejlWkLKRKCtKvPF7d2B0dKSmeKzm/woAecC
+j8Oi466yOUmoQY7xWl4jGzMhsT/TCnhAEqfnOYK/Gcqu2WL/sDRJANm2AxSrO9eC
+9uQs1bshcvGFEqvNZQrURCQtxMwpeS37M+a4S+a2CW9bPh6UnOyrRWC6pw79zPir
+8tP6tfk9UF8PtRkMKrlPn0HWklTyEyyNH+++GCfXjvpNlltzU2AJIP8QjxF5f0bU
+SOfBY3VpvM6Ne8krsjGmIq0UmzcDLGVDQ+9k67Znm6q14NPLi/ZIb4fFPMTF9cbf
+YT/z0HmOa5DAWE33YRdi0hJ8j24ZGBrnWl95fJPjbbyWESwyGbZrg/dzXX/cYVOP
+sPThfezXtdbzER11QIEEnZ+ajIEhY07HRRpVU8zXTZUlZZc/qbz3PUljI5mMnj6a
+d0mp1MBjWuT6RvHWi/iMhEFUE0vRvaL+1DXJvjAMsTz5UhpyLnc=
+=f6QW
+-----END PGP SIGNATURE-----

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

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

Added: dev/lucene/lucene-solr-8.6.1-RC2-rev6e11a1c3f0599f1c918bc69c4f51928d23160e99/solr/maven/org/apache/solr/solr-clustering/8.6.1/solr-clustering-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-clustering/8.6.1/solr-clustering-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-clustering/8.6.1/solr-clustering-8.6.1.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-8.6.1-RC2-rev6e11a1c3f0599f1c918bc69c4f51928d23160e99/solr/maven/org/apache/solr/solr-clustering/8.6.1/solr-clustering-8.6.1.jar.asc (added)
+++ dev/lucene/lucene-solr-8.6.1-RC2-rev6e11a1c3f0599f1c918bc69c4f51928d23160e99/solr/maven/org/apache/solr/solr-clustering/8.6.1/solr-clustering-8.6.1.jar.asc Mon Aug 10 18:54:58 2020
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCAAdFiEEUOPuHJHH4MtN+wB7NpQk/Jjz9uwFAl8xhWgACgkQNpQk/Jjz
+9uwn7RAAt0FycRLpHL5EI+9PmqENGefYl8Ib971LQ/6B839N9kJW7xsfw26CPuqN
+WJmzY3uySnupv6Hq/E24CPrW/jYx9bn+UtqcEEE8tSExlTVImRu1HcsQnfHl/jjY
+/bZV/lp54ocsSEEQsVVAdp4ZZXJ06T34MsDbayL7ZgeNo9Sl26gr5nzhInzlylnT
+6IqX0l0zTLpZIV0fjrLY7rJKNyERy+EDN09CY1hcSxv3cLwyhmFO0z1VXiEkmL+D
+BAScx6ss8sGWHWKso1vv7KSSZymOi2ezIp7eD+ZmrT+9Vezt6HKfjLkMvioLI/Zb
+BzmvDbzAueGRJt4R4wVAy9lBBEo8g+ZHLuZbbCHuevWHsPf8LwV0gAfzQC1CKbuP
+kRhkIniYXq8j7NT7DSpS5k51Hg5iPL5oE+r0FKaDF6cf/nbN2nPMPSiEuqPpAx44
+7MJK/fkKcfU0dWNmTOeRIfPyOSPoaxp7jpHOSQOCoAKq0CjCaZnpD7C8KzfIA6Ce
+qPVvG2wcGYM3ZBIxvUxshtGn0O72AjGMAM9mS7gToZlCOJthkvyN2SqITanBYJTE
+6eLnHVNSBrXVxyRf1GwqDPIgkg0ubGcjBUBd6ewBeTFu8D88mN6yADNbwKsLtX+2
+pbV/zZuqkh6wZoCt/qAq8rTI+hznC4+fD1KSBUGj7EWUnLTgvjA=
+=feA/
+-----END PGP SIGNATURE-----

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

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

Added: dev/lucene/lucene-solr-8.6.1-RC2-rev6e11a1c3f0599f1c918bc69c4f51928d23160e99/solr/maven/org/apache/solr/solr-clustering/8.6.1/solr-clustering-8.6.1.pom
==============================================================================
--- dev/lucene/lucene-solr-8.6.1-RC2-rev6e11a1c3f0599f1c918bc69c4f51928d23160e99/solr/maven/org/apache/solr/solr-clustering/8.6.1/solr-clustering-8.6.1.pom (added)
+++ dev/lucene/lucene-solr-8.6.1-RC2-rev6e11a1c3f0599f1c918bc69c4f51928d23160e99/solr/maven/org/apache/solr/solr-clustering/8.6.1/solr-clustering-8.6.1.pom Mon Aug 10 18:54:58 2020
@@ -0,0 +1,597 @@
+<!--
+  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-clustering</artifactId>
+  <packaging>jar</packaging>
+  <name>Apache Solr Clustering</name>
+  <description>Apache Solr Clustering</description>
+  <properties>
+    <module-directory>solr/contrib/clustering</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.carrotsearch.thirdparty</groupId>
+      <artifactId>simple-xml-safe</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.carrot2</groupId>
+      <artifactId>carrot2-mini</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.carrot2.attributes</groupId>
+      <artifactId>attributes-binder</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.carrot2.shaded</groupId>
+      <artifactId>carrot2-guava</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>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>
+
+
+  </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-clustering/8.6.1/solr-clustering-8.6.1.pom.asc
==============================================================================
--- dev/lucene/lucene-solr-8.6.1-RC2-rev6e11a1c3f0599f1c918bc69c4f51928d23160e99/solr/maven/org/apache/solr/solr-clustering/8.6.1/solr-clustering-8.6.1.pom.asc (added)
+++ dev/lucene/lucene-solr-8.6.1-RC2-rev6e11a1c3f0599f1c918bc69c4f51928d23160e99/solr/maven/org/apache/solr/solr-clustering/8.6.1/solr-clustering-8.6.1.pom.asc Mon Aug 10 18:54:58 2020
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCAAdFiEEUOPuHJHH4MtN+wB7NpQk/Jjz9uwFAl8xhWgACgkQNpQk/Jjz
+9uytJxAAzYDjo1mBVql+d5uhyRaJVKD2KuSG75Qz97AT99S/G/4zymVg1vRwluFU
+9HJoEnZGLVwxvN5dleIbfHDU6McRwVemOSZ8gBWmGQ2on0TogCTMSgUPgHqh2k2p
+MZMAQE96o+Cfa2tSTTeezYA1wysPYTIEEnU/HjW2hpYnmbLOXnQexrFYRLgCXdyT
+U98afTOaaXwUZNPBEUMZkg2rvuQpFY3jEAipTBAmuzI7iNEaiIkzVO9aUDkOiRKI
+EmE0lZOC5QRt1LJKHerm/MHYePMc6+twLGOP8vgbQMR8Gckd2ct3mwUWHFKRFbXS
+dfrILdCQ/dEa9Gb3IUb66107oQHo/R0TK8ILEP9IaAado1kKrMeaVLuma6C0lzZF
+KDXuGWWDNlV3/DRkMqfYl6FcVfSkXl1JlqEorRnAbaK4J/YjC+HZdZZwqIwJJr5G
+gT5g+j9jia0NnOjfPX+YdNj8HrqCYhMtKR3Yfh1TiogaXiCkilj3YunEbV+aNIHO
+Tlyc9yasKGwqHPRbr/x+zWfOZqpSIGU8G5864Pw+yqZ6UTZh6ZMdo1vp/xUHFwUV
+Yq60BnTDawWz3UUZDGp+RdJTtPrdCpIQbrO0FLvwQn0SjcZZ3+IcdKkTgYEWtgcm
+x3BFLgFb5OOWRpvvrG/6pxsbK2VPLCqyl0uDdDAJ269SOAuk3y8=
+=AdGa
+-----END PGP SIGNATURE-----

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

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

Added: dev/lucene/lucene-solr-8.6.1-RC2-rev6e11a1c3f0599f1c918bc69c4f51928d23160e99/solr/maven/org/apache/solr/solr-clustering/maven-metadata.xml
==============================================================================
--- dev/lucene/lucene-solr-8.6.1-RC2-rev6e11a1c3f0599f1c918bc69c4f51928d23160e99/solr/maven/org/apache/solr/solr-clustering/maven-metadata.xml (added)
+++ dev/lucene/lucene-solr-8.6.1-RC2-rev6e11a1c3f0599f1c918bc69c4f51928d23160e99/solr/maven/org/apache/solr/solr-clustering/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-clustering</artifactId>
+  <version>8.6.1</version>
+  <versioning>
+    <versions>
+      <version>8.6.1</version>
+    </versions>
+    <lastUpdated>20200810173507</lastUpdated>
+  </versioning>
+</metadata>

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

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

Added: dev/lucene/lucene-solr-8.6.1-RC2-rev6e11a1c3f0599f1c918bc69c4f51928d23160e99/solr/maven/org/apache/solr/solr-core/8.6.1/solr-core-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-core/8.6.1/solr-core-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-core/8.6.1/solr-core-8.6.1-javadoc.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-8.6.1-RC2-rev6e11a1c3f0599f1c918bc69c4f51928d23160e99/solr/maven/org/apache/solr/solr-core/8.6.1/solr-core-8.6.1-javadoc.jar.asc (added)
+++ dev/lucene/lucene-solr-8.6.1-RC2-rev6e11a1c3f0599f1c918bc69c4f51928d23160e99/solr/maven/org/apache/solr/solr-core/8.6.1/solr-core-8.6.1-javadoc.jar.asc Mon Aug 10 18:54:58 2020
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCAAdFiEEUOPuHJHH4MtN+wB7NpQk/Jjz9uwFAl8xhWgACgkQNpQk/Jjz
+9ux4rQ//Zo3ohbe9azuqaldf3YQ4raui5b7zFptqk9q+DdPGBK/j59D6NzJ11qyz
+K1iwxGvIbShomooUrAQ4b+V6DKvWIuxHo4VPP1su51r9e8KvoDUZiG222YwnIl4U
+FrJNfoSCqmokIFpyFtoiM2T0Sm3joE9LXzpHdzuqQbWJboyLKTQdAc+BMzbXM30W
+bHSEwjhEqF3W6xMRtO6LzqNZDxRKP2aU31Oafrhl7n8UchalqZZvVOLQxh1InXRs
+rxCbeUDiTEnkTj1GK/kVa54mo3Sb8kHn56Ht2FzL6SEwevzOsSFHQUg0jvJMoPn3
+1R+AOtcOiJpMvfmi4QL6z8nYlL5fagsfOmqI1UauUEQx16JaCKawcQmRqtHPWrkF
+yhK7JOerjf6XTAuhwpDwi1kdAZ7k3foC2U2gNNHdptM+0sZHYT/D6jGsk4eESwIH
+lAH9u5LACAKiLd/YtzdXsmCTMWpAwewTRLZXvCmdARoIUS9sXQyN1nLhzSWKxuWu
+5nQpGElq5zSmuHABbPpvpEsg3qGqnULcJPspfqIW8RFgWdTABEVTkXxxZBOgKmaM
+4LfyUnc8+UGbEnCEOHSIoQYJ4wFtF+ar/VH4MMnZU+eEyEvGqK0xoExGBas8qB5B
+ev0aTS6s1FVwfmBO89tMp+P/qXrH7E1T3yXG5Ssn+Mvt185i0jg=
+=Z1Lv
+-----END PGP SIGNATURE-----

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

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

Added: dev/lucene/lucene-solr-8.6.1-RC2-rev6e11a1c3f0599f1c918bc69c4f51928d23160e99/solr/maven/org/apache/solr/solr-core/8.6.1/solr-core-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-core/8.6.1/solr-core-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-core/8.6.1/solr-core-8.6.1-sources.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-8.6.1-RC2-rev6e11a1c3f0599f1c918bc69c4f51928d23160e99/solr/maven/org/apache/solr/solr-core/8.6.1/solr-core-8.6.1-sources.jar.asc (added)
+++ dev/lucene/lucene-solr-8.6.1-RC2-rev6e11a1c3f0599f1c918bc69c4f51928d23160e99/solr/maven/org/apache/solr/solr-core/8.6.1/solr-core-8.6.1-sources.jar.asc Mon Aug 10 18:54:58 2020
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCAAdFiEEUOPuHJHH4MtN+wB7NpQk/Jjz9uwFAl8xhWgACgkQNpQk/Jjz
+9uxQvBAAjWb8P7ljT1wG9Xe7o6214Zl2HaDSTuXOHNaQi0ncqoR7ru4frHCDjetw
+xbsfg5ETWnuDE9BQ+SIWtJk0t1AT/eTn7SldEtZbmn+ZLk3EVqE3ovEbno0qP+El
+N4i+T0CN4UMxKbtLAmhGf17/7UikUlDw/9m8c8RiYYH+pcXLelkREtC4UWrvyGi3
+gnQMYZHCbzPI5GujDGOoy1C3pE8JdsXv6fz+7Z6Rht+6M4HAn1QPy6qUxSIRpU5X
+QvkbmTa7pebnp+CMZ7EAiT1A1x5kAktcriprnaZZD/mSpB0ltfFpaRVphbMXLb+8
+ydVYhk1I1AoW18vMZnHb+qyb+ZED9tzq8Er8Sr1Cp32be31KNW//4g3gurnR+vxj
+xBdFjBGaEf7ucJNdF7TsMXN2i3rSHeAoS18xp+zxcmIh2Pe2LU4fxXFokoLxxTSM
+qxqud8mFrJbbGXDaQnyZb6Z9JzMxivPd5bh1ifIjZflsihSigPQW8netiDiHnDYG
+KuSiCNED24t12FVgkdpJwrnNHeJ1vlQ+GDG1GMcxQzolLUeqjo2vfcEcx6ea20XO
+JQnPOjA2zqhoww0EhhNZ7TjENuxTO9KFqVYC9jxaA7MRiR51bkhVg/yQND2I6SHh
+TGaMnosyRTyX1eqXA4VPCU4Nm2+E5n4X/iPWYSBFKthcS5zmbtc=
+=tlCY
+-----END PGP SIGNATURE-----

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

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

Added: dev/lucene/lucene-solr-8.6.1-RC2-rev6e11a1c3f0599f1c918bc69c4f51928d23160e99/solr/maven/org/apache/solr/solr-core/8.6.1/solr-core-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-core/8.6.1/solr-core-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-core/8.6.1/solr-core-8.6.1.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-8.6.1-RC2-rev6e11a1c3f0599f1c918bc69c4f51928d23160e99/solr/maven/org/apache/solr/solr-core/8.6.1/solr-core-8.6.1.jar.asc (added)
+++ dev/lucene/lucene-solr-8.6.1-RC2-rev6e11a1c3f0599f1c918bc69c4f51928d23160e99/solr/maven/org/apache/solr/solr-core/8.6.1/solr-core-8.6.1.jar.asc Mon Aug 10 18:54:58 2020
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCAAdFiEEUOPuHJHH4MtN+wB7NpQk/Jjz9uwFAl8xhWkACgkQNpQk/Jjz
+9uyYlRAAng47dp1gtUA1+I2NaSWIkRBcqCd8mFc6AifP1SoOTF0X3NsvU0yOQ0Jo
+8aFlY+KNmsxoz/0BFgW9jaA6daKNWrbwqO8FhbJNhwdUIYk6KuZHJfaqlp8RTgok
+eR1YRj7pl8ni+ccoaq41azc6lz53V+CBiRyPLPandZ2sNBzAQxJ3gIch3lSIertz
+8vmVufPUaR0v6mR8EbynS6PJZZfBxMoYjip6odLyQZ2w5UjRID2Zv2mNgHyrPZHk
+3/1aC/6ztOKIaGUuBj+txKLtwXPp1pHXDkrAkKy9vlYjWLyPKCrdE3OjczqB9QNc
+is6Bb506K//Kra+TgIySIZ/hhQ0F1YzyEPE49JGrP35IgQliqDb7MO85gqgtp5zU
+p1ROBRuEicqu0Rmek8GcOMJGm1aOx+tJfpBOj2DIRlc9K3mr1uFuSrOnXjxZzrlo
+0n4cicivP234X9rwk2cGql6ZBb179C7xG2jHV8JjNe/UQNJTN+zkgA7jikXk53wc
++miVwTorEgbh/AlqXtxeEkyu5LbxFlCJwhIiQN39J09vFYVX6WwTAY/F6T5kW+w9
+Kq7KHhXF6MABcluDxAeKjfFs/+OtI6WbIb1i+OkHw3lTBElMI5URmFgtHSA0HsKy
+o+7uKBNLBO6QpFjsUgVThzvOohbq4g1hMS3gAoOpWkPBGX+iCBA=
+=1UQj
+-----END PGP SIGNATURE-----

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

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