You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by ji...@apache.org on 2019/03/07 15:32:47 UTC

svn commit: r32806 [14/18] - in /dev/lucene/lucene-solr-8.0.0-RC3-reva9d80bf18af04850ea21dcf88a40367559fb246e: ./ 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.0.0-RC3-reva9d80bf18af04850ea21dcf88a40367559fb246e/solr/maven/org/apache/solr/solr-cell/8.0.0/solr-cell-8.0.0.pom
==============================================================================
--- dev/lucene/lucene-solr-8.0.0-RC3-reva9d80bf18af04850ea21dcf88a40367559fb246e/solr/maven/org/apache/solr/solr-cell/8.0.0/solr-cell-8.0.0.pom (added)
+++ dev/lucene/lucene-solr-8.0.0-RC3-reva9d80bf18af04850ea21dcf88a40367559fb246e/solr/maven/org/apache/solr/solr-cell/8.0.0/solr-cell-8.0.0.pom Thu Mar  7 15:32:44 2019
@@ -0,0 +1,704 @@
+<!--
+  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.0.0</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.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.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-beanutils</groupId>
+      <artifactId>commons-beanutils</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>commons-cli</groupId>
+      <artifactId>commons-cli</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>commons-codec</groupId>
+      <artifactId>commons-codec</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>commons-collections</groupId>
+      <artifactId>commons-collections</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>commons-fileupload</groupId>
+      <artifactId>commons-fileupload</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>commons-io</groupId>
+      <artifactId>commons-io</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>commons-lang</groupId>
+      <artifactId>commons-lang</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>de.l3s.boilerpipe</groupId>
+      <artifactId>boilerpipe</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>dom4j</groupId>
+      <artifactId>dom4j</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>info.ganglia.gmetric4j</groupId>
+      <artifactId>gmetric4j</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>io.dropwizard.metrics</groupId>
+      <artifactId>metrics-core</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>io.dropwizard.metrics</groupId>
+      <artifactId>metrics-ganglia</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-jvm</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-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.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.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.aspectj</groupId>
+      <artifactId>aspectjrt</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.noggit</groupId>
+      <artifactId>noggit</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.ow2.asm</groupId>
+      <artifactId>asm</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.ow2.asm</groupId>
+      <artifactId>asm-commons</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.restlet.jee</groupId>
+      <artifactId>org.restlet</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.restlet.jee</groupId>
+      <artifactId>org.restlet.ext.servlet</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.rrd4j</groupId>
+      <artifactId>rrd4j</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.slf4j</groupId>
+      <artifactId>jcl-over-slf4j</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.slf4j</groupId>
+      <artifactId>jul-to-slf4j</artifactId>
+      <optional>true</optional>
+    </dependency>
+    <dependency>
+      <groupId>org.slf4j</groupId>
+      <artifactId>slf4j-api</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.tallison</groupId>
+      <artifactId>jmatio</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.tukaani</groupId>
+      <artifactId>xz</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>xerces</groupId>
+      <artifactId>xercesImpl</artifactId>
+    </dependency>
+
+
+  </dependencies>
+  <build>
+    <sourceDirectory>${module-path}/src/java</sourceDirectory>
+    <testSourceDirectory>${module-path}/src/test</testSourceDirectory>
+    <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.0.0-RC3-reva9d80bf18af04850ea21dcf88a40367559fb246e/solr/maven/org/apache/solr/solr-cell/8.0.0/solr-cell-8.0.0.pom.asc
==============================================================================
--- dev/lucene/lucene-solr-8.0.0-RC3-reva9d80bf18af04850ea21dcf88a40367559fb246e/solr/maven/org/apache/solr/solr-cell/8.0.0/solr-cell-8.0.0.pom.asc (added)
+++ dev/lucene/lucene-solr-8.0.0-RC3-reva9d80bf18af04850ea21dcf88a40367559fb246e/solr/maven/org/apache/solr/solr-cell/8.0.0/solr-cell-8.0.0.pom.asc Thu Mar  7 15:32:44 2019
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v2
+
+iQIcBAABCAAGBQJcgTMuAAoJEPmME8+loTXYLsMP/1o9U712E0MbvC/sGlK8bur2
+3bgNar/hBbdTxcFp/I/lQCwX1Qaw859CBsXXdr0Rwy8ESMQVYjFx9OvYZfWp8Gl4
+OUU8MCy8LWO3JRibLGmpVAhmR5+9PIlVO8eAQZwPRH9zfEe8bwswMABMagO/nVYv
+H62Q8wXBwIzkM7PLVYDd1Inyqs3Uq24jWTc9zdhC6lemyPCy7IHKg6M4dQczoowy
+B/1pR1y4uvOt//iWUMKkzxwFNcUbTM65adHGBDfmzcBrcGq97sg7ihuV183gNzpS
+bflvsoPmszDU00ABcLHh0CIsiF2LAR3wAmeRsd2a5HkzNcEUkc3BDj0F8l7jDrHx
+Pnt1uX3yyOZN0kv5fTpJj/ppCaCGWZcQOT0eEIcmI/gR2HJDGz83RN95uGRe6PlE
+okjJjKCQTO/MTOEAnYZyhK1BiLa1r5uAspfR79MsW5tLag8fYxdCVAoZvU2oSv/j
+od1wGKJrIbNgDfrcdPZjIiAwUBMWBxz+j5J2vsUTdcbAP/XYa8Vm+PCebXfOCynm
+avr0pg76mz34aM+s37nKikDx+9AJqLt2FtPd6/qhP7WOSczUW0f6M0xyG/VJRi/t
+ETsFizmAZp92XGF/NaminHW93F7JB0PtXd0tsBZIZ9QcK404oIDWiCJdAxk7ZTq2
+PpPEw7MxUFTJELTfS1PR
+=g214
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-8.0.0-RC3-reva9d80bf18af04850ea21dcf88a40367559fb246e/solr/maven/org/apache/solr/solr-cell/8.0.0/solr-cell-8.0.0.pom.md5
==============================================================================
--- dev/lucene/lucene-solr-8.0.0-RC3-reva9d80bf18af04850ea21dcf88a40367559fb246e/solr/maven/org/apache/solr/solr-cell/8.0.0/solr-cell-8.0.0.pom.md5 (added)
+++ dev/lucene/lucene-solr-8.0.0-RC3-reva9d80bf18af04850ea21dcf88a40367559fb246e/solr/maven/org/apache/solr/solr-cell/8.0.0/solr-cell-8.0.0.pom.md5 Thu Mar  7 15:32:44 2019
@@ -0,0 +1 @@
+96c8bf1afe822ef82c245f89cf2a395c
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.0.0-RC3-reva9d80bf18af04850ea21dcf88a40367559fb246e/solr/maven/org/apache/solr/solr-cell/8.0.0/solr-cell-8.0.0.pom.sha1
==============================================================================
--- dev/lucene/lucene-solr-8.0.0-RC3-reva9d80bf18af04850ea21dcf88a40367559fb246e/solr/maven/org/apache/solr/solr-cell/8.0.0/solr-cell-8.0.0.pom.sha1 (added)
+++ dev/lucene/lucene-solr-8.0.0-RC3-reva9d80bf18af04850ea21dcf88a40367559fb246e/solr/maven/org/apache/solr/solr-cell/8.0.0/solr-cell-8.0.0.pom.sha1 Thu Mar  7 15:32:44 2019
@@ -0,0 +1 @@
+efe6ca4b418f97c039f214b28db53e45b634f02d
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.0.0-RC3-reva9d80bf18af04850ea21dcf88a40367559fb246e/solr/maven/org/apache/solr/solr-cell/maven-metadata.xml
==============================================================================
--- dev/lucene/lucene-solr-8.0.0-RC3-reva9d80bf18af04850ea21dcf88a40367559fb246e/solr/maven/org/apache/solr/solr-cell/maven-metadata.xml (added)
+++ dev/lucene/lucene-solr-8.0.0-RC3-reva9d80bf18af04850ea21dcf88a40367559fb246e/solr/maven/org/apache/solr/solr-cell/maven-metadata.xml Thu Mar  7 15:32:44 2019
@@ -0,0 +1,12 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<metadata>
+  <groupId>org.apache.solr</groupId>
+  <artifactId>solr-cell</artifactId>
+  <version>8.0.0</version>
+  <versioning>
+    <versions>
+      <version>8.0.0</version>
+    </versions>
+    <lastUpdated>20190307150456</lastUpdated>
+  </versioning>
+</metadata>

Added: dev/lucene/lucene-solr-8.0.0-RC3-reva9d80bf18af04850ea21dcf88a40367559fb246e/solr/maven/org/apache/solr/solr-cell/maven-metadata.xml.md5
==============================================================================
--- dev/lucene/lucene-solr-8.0.0-RC3-reva9d80bf18af04850ea21dcf88a40367559fb246e/solr/maven/org/apache/solr/solr-cell/maven-metadata.xml.md5 (added)
+++ dev/lucene/lucene-solr-8.0.0-RC3-reva9d80bf18af04850ea21dcf88a40367559fb246e/solr/maven/org/apache/solr/solr-cell/maven-metadata.xml.md5 Thu Mar  7 15:32:44 2019
@@ -0,0 +1 @@
+fe5c6beb6862012deef6d248357ac71f
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.0.0-RC3-reva9d80bf18af04850ea21dcf88a40367559fb246e/solr/maven/org/apache/solr/solr-cell/maven-metadata.xml.sha1
==============================================================================
--- dev/lucene/lucene-solr-8.0.0-RC3-reva9d80bf18af04850ea21dcf88a40367559fb246e/solr/maven/org/apache/solr/solr-cell/maven-metadata.xml.sha1 (added)
+++ dev/lucene/lucene-solr-8.0.0-RC3-reva9d80bf18af04850ea21dcf88a40367559fb246e/solr/maven/org/apache/solr/solr-cell/maven-metadata.xml.sha1 Thu Mar  7 15:32:44 2019
@@ -0,0 +1 @@
+f1ef6c984208db08ba8a2ac4d79cd21f3ee98e7d
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.0.0-RC3-reva9d80bf18af04850ea21dcf88a40367559fb246e/solr/maven/org/apache/solr/solr-clustering/8.0.0/solr-clustering-8.0.0-javadoc.jar
==============================================================================
Binary file - no diff available.

Propchange: dev/lucene/lucene-solr-8.0.0-RC3-reva9d80bf18af04850ea21dcf88a40367559fb246e/solr/maven/org/apache/solr/solr-clustering/8.0.0/solr-clustering-8.0.0-javadoc.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: dev/lucene/lucene-solr-8.0.0-RC3-reva9d80bf18af04850ea21dcf88a40367559fb246e/solr/maven/org/apache/solr/solr-clustering/8.0.0/solr-clustering-8.0.0-javadoc.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-8.0.0-RC3-reva9d80bf18af04850ea21dcf88a40367559fb246e/solr/maven/org/apache/solr/solr-clustering/8.0.0/solr-clustering-8.0.0-javadoc.jar.asc (added)
+++ dev/lucene/lucene-solr-8.0.0-RC3-reva9d80bf18af04850ea21dcf88a40367559fb246e/solr/maven/org/apache/solr/solr-clustering/8.0.0/solr-clustering-8.0.0-javadoc.jar.asc Thu Mar  7 15:32:44 2019
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v2
+
+iQIcBAABCAAGBQJcgTMvAAoJEPmME8+loTXY4UUP/R18ltLpY9uwZmJYsnkjFIM3
+M7dVpgUI7fDePx9M94TY3XeDq6uIce+SGkF7i9aW+TN1K6Oz5IYPHxydMn17GngP
+LL4GmCJn85c5zv+w4Sp7ONunbB75ZPJdPWsD3qb/lZKBA8PSPNOTKxk6211ey34i
+sargDuegWT6OHFLVz7Gpnl7LOjpNFPYmyZSkJY4mfoJNCZGkK7syZcdwpE/d8Nun
+1Npi9IN4x9YTbHmPMXLxuL7La9MHXZiS+//vP6FgneyzSyuwtXa48hz2QRrsLgeX
+GhCF8Inws5O1aqM4LYjvUYX9ZPH+S3bmXLuoJje8PxtufPvySwFeJBUcloBIbDLC
+kFN4zx1SFMhmKNq1uPcV2QCmSdPc/e51o2CL6OSTWFwZjZD7o2TBsxXQazxVxPbV
+9Eram4d1rV08gNZh4s8SP2VEhk+mJXO+5W/uOuv7iGRHxy0NKEs08sQ2U8Cd0rRF
+VNjEiV0+jppN1460znF91ekVZjh7itUH343vrIFNcO6+sBZKTjO5D583o6DceKkH
+LnjjVRoFFxe/XCY09nL6DwzFCWQBMtznHsNTSq+WJG+rWbkc5kPZu8BIXLQ+Cra1
+M+aJ2wkhl04JxWv15jzq0//ADpewvDuyDHdQmWr4VtIbPL+Pa8nD2Nrru18zY+al
+HCLywNULMCVOAb5KmR5j
+=khnU
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-8.0.0-RC3-reva9d80bf18af04850ea21dcf88a40367559fb246e/solr/maven/org/apache/solr/solr-clustering/8.0.0/solr-clustering-8.0.0-javadoc.jar.md5
==============================================================================
--- dev/lucene/lucene-solr-8.0.0-RC3-reva9d80bf18af04850ea21dcf88a40367559fb246e/solr/maven/org/apache/solr/solr-clustering/8.0.0/solr-clustering-8.0.0-javadoc.jar.md5 (added)
+++ dev/lucene/lucene-solr-8.0.0-RC3-reva9d80bf18af04850ea21dcf88a40367559fb246e/solr/maven/org/apache/solr/solr-clustering/8.0.0/solr-clustering-8.0.0-javadoc.jar.md5 Thu Mar  7 15:32:44 2019
@@ -0,0 +1 @@
+8b1cdf7e1fa0165ab3e54d76422181bb
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.0.0-RC3-reva9d80bf18af04850ea21dcf88a40367559fb246e/solr/maven/org/apache/solr/solr-clustering/8.0.0/solr-clustering-8.0.0-javadoc.jar.sha1
==============================================================================
--- dev/lucene/lucene-solr-8.0.0-RC3-reva9d80bf18af04850ea21dcf88a40367559fb246e/solr/maven/org/apache/solr/solr-clustering/8.0.0/solr-clustering-8.0.0-javadoc.jar.sha1 (added)
+++ dev/lucene/lucene-solr-8.0.0-RC3-reva9d80bf18af04850ea21dcf88a40367559fb246e/solr/maven/org/apache/solr/solr-clustering/8.0.0/solr-clustering-8.0.0-javadoc.jar.sha1 Thu Mar  7 15:32:44 2019
@@ -0,0 +1 @@
+fe14f2869106ede8461606577f200f883667775c
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.0.0-RC3-reva9d80bf18af04850ea21dcf88a40367559fb246e/solr/maven/org/apache/solr/solr-clustering/8.0.0/solr-clustering-8.0.0-sources.jar
==============================================================================
Binary file - no diff available.

Propchange: dev/lucene/lucene-solr-8.0.0-RC3-reva9d80bf18af04850ea21dcf88a40367559fb246e/solr/maven/org/apache/solr/solr-clustering/8.0.0/solr-clustering-8.0.0-sources.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: dev/lucene/lucene-solr-8.0.0-RC3-reva9d80bf18af04850ea21dcf88a40367559fb246e/solr/maven/org/apache/solr/solr-clustering/8.0.0/solr-clustering-8.0.0-sources.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-8.0.0-RC3-reva9d80bf18af04850ea21dcf88a40367559fb246e/solr/maven/org/apache/solr/solr-clustering/8.0.0/solr-clustering-8.0.0-sources.jar.asc (added)
+++ dev/lucene/lucene-solr-8.0.0-RC3-reva9d80bf18af04850ea21dcf88a40367559fb246e/solr/maven/org/apache/solr/solr-clustering/8.0.0/solr-clustering-8.0.0-sources.jar.asc Thu Mar  7 15:32:44 2019
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v2
+
+iQIcBAABCAAGBQJcgTMvAAoJEPmME8+loTXYPr8QAIOE3HI8bHwsW2tgPu+afFia
+Tk7zEsOEg8tDWVDvkMHhEWHKtbUMbCoGgqESC0fCN2g2KDCT3cvETAxJtVmHdCIy
+E7dutog5VNcUIgUf79BHmjrU1QfCilhCL01MdfJXQExQ0SLKtqs4Y6yxrnt0fJjf
+YqXWRRhnRg56tGJtvFT5geDhwC8Mhq1nUHsJmjj+92kHlVI80wYhlHXwNlRkuN17
+tIeSqr0VL0qn76GkbnSD5xrpDHWf9jEJA6NZ5QPe2aDnQBPBmU4S6tvtAe7InziE
+mkRvBIetei0STcXEjK+Mp5cJC7tLZLIvUd580ubfnnLJq722G97C2JdLCizmznaR
+0LuqAnCKSZYbtTZsU5FjIniwK6sfXOVR5C11zGJh1n9fgacjtp8S883fPK74xdA/
+nQxEiuVJl7K/cSJQgC6OsWeGHZxVbe24+U80pm2Ew0JbS28ogNbrn30q/zu7UOgU
+EUSsd4PzdZjDvzFSH/2/NSXnKlESYSyJIjyOaD1KuxGG/liP7/zkb7c1xjZkTPLP
+NMb4e8k2d7iXdkcM6HvWwMmYUlRK7qGAXucecavcqsB7jp4g7B7BFlzMSAioSA1h
+wcCH/F6/ghw5jnX3SGigGYdXOEh6HAZ2omY4H02l6RX4IJRB3Rnzb+HrJhAonZhf
+lDt4W3EduwP0QBd0bbEF
+=ry3+
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-8.0.0-RC3-reva9d80bf18af04850ea21dcf88a40367559fb246e/solr/maven/org/apache/solr/solr-clustering/8.0.0/solr-clustering-8.0.0-sources.jar.md5
==============================================================================
--- dev/lucene/lucene-solr-8.0.0-RC3-reva9d80bf18af04850ea21dcf88a40367559fb246e/solr/maven/org/apache/solr/solr-clustering/8.0.0/solr-clustering-8.0.0-sources.jar.md5 (added)
+++ dev/lucene/lucene-solr-8.0.0-RC3-reva9d80bf18af04850ea21dcf88a40367559fb246e/solr/maven/org/apache/solr/solr-clustering/8.0.0/solr-clustering-8.0.0-sources.jar.md5 Thu Mar  7 15:32:44 2019
@@ -0,0 +1 @@
+c5fe94d26bbec9e7eeda17b8d9e4c973
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.0.0-RC3-reva9d80bf18af04850ea21dcf88a40367559fb246e/solr/maven/org/apache/solr/solr-clustering/8.0.0/solr-clustering-8.0.0-sources.jar.sha1
==============================================================================
--- dev/lucene/lucene-solr-8.0.0-RC3-reva9d80bf18af04850ea21dcf88a40367559fb246e/solr/maven/org/apache/solr/solr-clustering/8.0.0/solr-clustering-8.0.0-sources.jar.sha1 (added)
+++ dev/lucene/lucene-solr-8.0.0-RC3-reva9d80bf18af04850ea21dcf88a40367559fb246e/solr/maven/org/apache/solr/solr-clustering/8.0.0/solr-clustering-8.0.0-sources.jar.sha1 Thu Mar  7 15:32:44 2019
@@ -0,0 +1 @@
+ce4e6da2d77f4886bfa0419ec7f4d76e97fbafae
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.0.0-RC3-reva9d80bf18af04850ea21dcf88a40367559fb246e/solr/maven/org/apache/solr/solr-clustering/8.0.0/solr-clustering-8.0.0.jar
==============================================================================
Binary file - no diff available.

Propchange: dev/lucene/lucene-solr-8.0.0-RC3-reva9d80bf18af04850ea21dcf88a40367559fb246e/solr/maven/org/apache/solr/solr-clustering/8.0.0/solr-clustering-8.0.0.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: dev/lucene/lucene-solr-8.0.0-RC3-reva9d80bf18af04850ea21dcf88a40367559fb246e/solr/maven/org/apache/solr/solr-clustering/8.0.0/solr-clustering-8.0.0.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-8.0.0-RC3-reva9d80bf18af04850ea21dcf88a40367559fb246e/solr/maven/org/apache/solr/solr-clustering/8.0.0/solr-clustering-8.0.0.jar.asc (added)
+++ dev/lucene/lucene-solr-8.0.0-RC3-reva9d80bf18af04850ea21dcf88a40367559fb246e/solr/maven/org/apache/solr/solr-clustering/8.0.0/solr-clustering-8.0.0.jar.asc Thu Mar  7 15:32:44 2019
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v2
+
+iQIcBAABCAAGBQJcgTMwAAoJEPmME8+loTXY464P/RpgqdKYOt8ivVGJm8yfy02X
+6xUqEb5tVkNrzbLCpJ8xfCuJWNzBiOFZvoR6x1Uy2JjuBxqqasI6Nu8QJSAXO0Kw
+TkaxDeY54eYDfA8zmxmgg56aV4oh88v7q2HUVOpuDa2lw87FXEu9E/qfNiikJRHB
+WAfJiUOHjoQ8qOn3xnjpmcjqIcirKTfndO2T0ksCnfEFX969+6APIUSCw5HUp+1c
+Uz/8GtdDp/ewCY2jYPMMiiKOvNNxZ1JD2XA8/3QF5xZGm4wPBQ5LaGxiYNWuHUCd
+BuoGTDksNDlXLK42/b9zt8LSCPFTWuDa3/DV0ItqJnlsFJRwFqV0EhTwJnYgGVxP
+Sbdycz4C9E2RSf95QryVrlaAO6TTcKpfteUCy2UQsesuBGCuvdS1/DOSxqAiMT11
+aeYWWE87/ZQ99WpqQc8FsWEbTBwoGZC+LKvjW78DsAGiyIAjk3j0KkjvC8XtyfbR
+BvDlEJ1GkrpRMDi3RFkDNEQVZsChcBYRQQrMkt+aw7baDcUb+P8bPTAk6eqetBih
+QCzk+yLf2XPJ1C3RfZX6PBxafSGVbwj30rG6oV+qutKwfffnTdt+4XsBuCaFDxTp
+Q0DieYYUY1UqlqdYEJmzAgJ/X0glyieVJe3Zk0dMzg8U7eyPp54WIe+unvB9zKjH
+FZwFXbrago5HqNJL+tvR
+=UeYw
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-8.0.0-RC3-reva9d80bf18af04850ea21dcf88a40367559fb246e/solr/maven/org/apache/solr/solr-clustering/8.0.0/solr-clustering-8.0.0.jar.md5
==============================================================================
--- dev/lucene/lucene-solr-8.0.0-RC3-reva9d80bf18af04850ea21dcf88a40367559fb246e/solr/maven/org/apache/solr/solr-clustering/8.0.0/solr-clustering-8.0.0.jar.md5 (added)
+++ dev/lucene/lucene-solr-8.0.0-RC3-reva9d80bf18af04850ea21dcf88a40367559fb246e/solr/maven/org/apache/solr/solr-clustering/8.0.0/solr-clustering-8.0.0.jar.md5 Thu Mar  7 15:32:44 2019
@@ -0,0 +1 @@
+2fe45bd6c1fb6437c0f35061f41cfcc6
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.0.0-RC3-reva9d80bf18af04850ea21dcf88a40367559fb246e/solr/maven/org/apache/solr/solr-clustering/8.0.0/solr-clustering-8.0.0.jar.sha1
==============================================================================
--- dev/lucene/lucene-solr-8.0.0-RC3-reva9d80bf18af04850ea21dcf88a40367559fb246e/solr/maven/org/apache/solr/solr-clustering/8.0.0/solr-clustering-8.0.0.jar.sha1 (added)
+++ dev/lucene/lucene-solr-8.0.0-RC3-reva9d80bf18af04850ea21dcf88a40367559fb246e/solr/maven/org/apache/solr/solr-clustering/8.0.0/solr-clustering-8.0.0.jar.sha1 Thu Mar  7 15:32:44 2019
@@ -0,0 +1 @@
+a190120ef8c50cb7493f98f850eed11c6fce866a
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.0.0-RC3-reva9d80bf18af04850ea21dcf88a40367559fb246e/solr/maven/org/apache/solr/solr-clustering/8.0.0/solr-clustering-8.0.0.pom
==============================================================================
--- dev/lucene/lucene-solr-8.0.0-RC3-reva9d80bf18af04850ea21dcf88a40367559fb246e/solr/maven/org/apache/solr/solr-clustering/8.0.0/solr-clustering-8.0.0.pom (added)
+++ dev/lucene/lucene-solr-8.0.0-RC3-reva9d80bf18af04850ea21dcf88a40367559fb246e/solr/maven/org/apache/solr/solr-clustering/8.0.0/solr-clustering-8.0.0.pom Thu Mar  7 15:32:44 2019
@@ -0,0 +1,549 @@
+<!--
+  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.0.0</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.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.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.lmax</groupId>
+      <artifactId>disruptor</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.tdunning</groupId>
+      <artifactId>t-digest</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>commons-beanutils</groupId>
+      <artifactId>commons-beanutils</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>commons-cli</groupId>
+      <artifactId>commons-cli</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>commons-codec</groupId>
+      <artifactId>commons-codec</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>commons-collections</groupId>
+      <artifactId>commons-collections</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>commons-fileupload</groupId>
+      <artifactId>commons-fileupload</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>commons-io</groupId>
+      <artifactId>commons-io</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>commons-lang</groupId>
+      <artifactId>commons-lang</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>dom4j</groupId>
+      <artifactId>dom4j</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>info.ganglia.gmetric4j</groupId>
+      <artifactId>gmetric4j</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>io.dropwizard.metrics</groupId>
+      <artifactId>metrics-core</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>io.dropwizard.metrics</groupId>
+      <artifactId>metrics-ganglia</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-jvm</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.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.zookeeper</groupId>
+      <artifactId>zookeeper</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.noggit</groupId>
+      <artifactId>noggit</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.simpleframework</groupId>
+      <artifactId>simple-xml</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.0.0-RC3-reva9d80bf18af04850ea21dcf88a40367559fb246e/solr/maven/org/apache/solr/solr-clustering/8.0.0/solr-clustering-8.0.0.pom.asc
==============================================================================
--- dev/lucene/lucene-solr-8.0.0-RC3-reva9d80bf18af04850ea21dcf88a40367559fb246e/solr/maven/org/apache/solr/solr-clustering/8.0.0/solr-clustering-8.0.0.pom.asc (added)
+++ dev/lucene/lucene-solr-8.0.0-RC3-reva9d80bf18af04850ea21dcf88a40367559fb246e/solr/maven/org/apache/solr/solr-clustering/8.0.0/solr-clustering-8.0.0.pom.asc Thu Mar  7 15:32:44 2019
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v2
+
+iQIcBAABCAAGBQJcgTMxAAoJEPmME8+loTXY4z8QAKQiA0y1yxm6wQhdfefZB5PK
+ddu+VicPPimA+o4OxXJ8dv6rCIhooUkOpgsslJTcH4b3Pj0mzrr08qX6D07aG2lg
+s/rQfKr6U8lDJdGlaVC9FiHWHYUQrevPnWY4LBPy+0ont4c7Kxn17anX3wQVnCZc
+2CGA7ePmn2uP/5KvhrhJo5bvGssidt+FU4K/nZYGp/XMDFKxCfEsb9d63LA/HLgm
+jhxSvqjmKW5K1ftatjL/LJuOetLZL8XNKPJRBok3aidvC4XRXOdPwBnl5meXuF3C
+grXo7E4tsJYbVtR9kryOhBDaP+wyY19wGlwH3EjmFtU2AnAavHLnPOTDMGOU8DTX
+TG4TYv7KR2Nh9fwsE8KZTYboVwl/ad6LVOukwidLjROIETDMW3TZRKlKBONUKxkH
+qQdVtTjP1coo3jaZE04RnlfkH3O5ETfvueL0cypz0LyESR0bzO6qiq49W65NUGQA
+RM/usq3YGn5CtaSxD+ygRsOD6BeJWqE4G3l6/nX9LX+uhwajfsOtu/2JX9ggpU4r
+WnUZ/f/2IGbuaxhGVmE5GJktsxmwYSKtJxsZf5t3+cwGlIy2cvrCUBEEtk2346Nz
+untxFdACh0V/pYPOOE6uqQi5WWV1XeBCyI/esk6WdEfRQdA6AcYWCMafRIc58J0F
+qE9XSPCU9XIfsD6cESLN
+=hpPL
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-8.0.0-RC3-reva9d80bf18af04850ea21dcf88a40367559fb246e/solr/maven/org/apache/solr/solr-clustering/8.0.0/solr-clustering-8.0.0.pom.md5
==============================================================================
--- dev/lucene/lucene-solr-8.0.0-RC3-reva9d80bf18af04850ea21dcf88a40367559fb246e/solr/maven/org/apache/solr/solr-clustering/8.0.0/solr-clustering-8.0.0.pom.md5 (added)
+++ dev/lucene/lucene-solr-8.0.0-RC3-reva9d80bf18af04850ea21dcf88a40367559fb246e/solr/maven/org/apache/solr/solr-clustering/8.0.0/solr-clustering-8.0.0.pom.md5 Thu Mar  7 15:32:44 2019
@@ -0,0 +1 @@
+985947b821920e479229ed122a6998f2
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.0.0-RC3-reva9d80bf18af04850ea21dcf88a40367559fb246e/solr/maven/org/apache/solr/solr-clustering/8.0.0/solr-clustering-8.0.0.pom.sha1
==============================================================================
--- dev/lucene/lucene-solr-8.0.0-RC3-reva9d80bf18af04850ea21dcf88a40367559fb246e/solr/maven/org/apache/solr/solr-clustering/8.0.0/solr-clustering-8.0.0.pom.sha1 (added)
+++ dev/lucene/lucene-solr-8.0.0-RC3-reva9d80bf18af04850ea21dcf88a40367559fb246e/solr/maven/org/apache/solr/solr-clustering/8.0.0/solr-clustering-8.0.0.pom.sha1 Thu Mar  7 15:32:44 2019
@@ -0,0 +1 @@
+0ae9892a203a358311583352ae4ce72f69a82794
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.0.0-RC3-reva9d80bf18af04850ea21dcf88a40367559fb246e/solr/maven/org/apache/solr/solr-clustering/maven-metadata.xml
==============================================================================
--- dev/lucene/lucene-solr-8.0.0-RC3-reva9d80bf18af04850ea21dcf88a40367559fb246e/solr/maven/org/apache/solr/solr-clustering/maven-metadata.xml (added)
+++ dev/lucene/lucene-solr-8.0.0-RC3-reva9d80bf18af04850ea21dcf88a40367559fb246e/solr/maven/org/apache/solr/solr-clustering/maven-metadata.xml Thu Mar  7 15:32:44 2019
@@ -0,0 +1,12 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<metadata>
+  <groupId>org.apache.solr</groupId>
+  <artifactId>solr-clustering</artifactId>
+  <version>8.0.0</version>
+  <versioning>
+    <versions>
+      <version>8.0.0</version>
+    </versions>
+    <lastUpdated>20190307150444</lastUpdated>
+  </versioning>
+</metadata>

Added: dev/lucene/lucene-solr-8.0.0-RC3-reva9d80bf18af04850ea21dcf88a40367559fb246e/solr/maven/org/apache/solr/solr-clustering/maven-metadata.xml.md5
==============================================================================
--- dev/lucene/lucene-solr-8.0.0-RC3-reva9d80bf18af04850ea21dcf88a40367559fb246e/solr/maven/org/apache/solr/solr-clustering/maven-metadata.xml.md5 (added)
+++ dev/lucene/lucene-solr-8.0.0-RC3-reva9d80bf18af04850ea21dcf88a40367559fb246e/solr/maven/org/apache/solr/solr-clustering/maven-metadata.xml.md5 Thu Mar  7 15:32:44 2019
@@ -0,0 +1 @@
+75713ae9ce73c06de9d76a417a13ad30
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.0.0-RC3-reva9d80bf18af04850ea21dcf88a40367559fb246e/solr/maven/org/apache/solr/solr-clustering/maven-metadata.xml.sha1
==============================================================================
--- dev/lucene/lucene-solr-8.0.0-RC3-reva9d80bf18af04850ea21dcf88a40367559fb246e/solr/maven/org/apache/solr/solr-clustering/maven-metadata.xml.sha1 (added)
+++ dev/lucene/lucene-solr-8.0.0-RC3-reva9d80bf18af04850ea21dcf88a40367559fb246e/solr/maven/org/apache/solr/solr-clustering/maven-metadata.xml.sha1 Thu Mar  7 15:32:44 2019
@@ -0,0 +1 @@
+14272b2907205ef372f086c1b570e8908121e42b
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.0.0-RC3-reva9d80bf18af04850ea21dcf88a40367559fb246e/solr/maven/org/apache/solr/solr-core/8.0.0/solr-core-8.0.0-javadoc.jar
==============================================================================
Binary file - no diff available.

Propchange: dev/lucene/lucene-solr-8.0.0-RC3-reva9d80bf18af04850ea21dcf88a40367559fb246e/solr/maven/org/apache/solr/solr-core/8.0.0/solr-core-8.0.0-javadoc.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: dev/lucene/lucene-solr-8.0.0-RC3-reva9d80bf18af04850ea21dcf88a40367559fb246e/solr/maven/org/apache/solr/solr-core/8.0.0/solr-core-8.0.0-javadoc.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-8.0.0-RC3-reva9d80bf18af04850ea21dcf88a40367559fb246e/solr/maven/org/apache/solr/solr-core/8.0.0/solr-core-8.0.0-javadoc.jar.asc (added)
+++ dev/lucene/lucene-solr-8.0.0-RC3-reva9d80bf18af04850ea21dcf88a40367559fb246e/solr/maven/org/apache/solr/solr-core/8.0.0/solr-core-8.0.0-javadoc.jar.asc Thu Mar  7 15:32:44 2019
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v2
+
+iQIcBAABCAAGBQJcgTMxAAoJEPmME8+loTXY2ZAP/2bN6lrAwrmMWUK3IixqbGAZ
+uj1Q34fEeJfbUfsS7WWR/5ttLy03QQIjEIUWL4HH/ITB5kf2mR/ppHUjMv4s/W3B
+s8buwjq54ZPfaSnrT08l/rpYRYsDaDty/6bbP17ofUFSDW6FKfkwGaDhDK05qg8j
+vccmbFiZDYa0gaIWgdF5Nu4OQkzyWL8d9lL3gYffZKONDw/zGQGJgYLbGWBPAAki
+Z4ED0WjsV+rkt2DnjcA3qofQ2IfNJgHvO6Pd9JuwbJYE+JCzJTqdhGobSWC4ugSh
+xDIae75EnB49gVRqSQGKKVxfN0a6PPX98bbbuxdKoKzjwBn36QPLoLimqiivUgRr
+W8ky7ku9kpFj3Muy/d9btBEHvczSvf4Q8QJi2l0EP90Y4yspuIDkbAs5zz6J2XWG
+9zUKmAq47zr97R+Pw/7CcEadqMiShsaWlzuBkRp+wfwOSqbI3xWrIlqXMQyudFW9
+dCOhOdfIeD7RXeY7s8OG47IbsohJ7KDoh2m8hOkFAkPek6Tt9XGvBcB00nMNoHHd
+Qidg5eEGa0vG2Q9LdkpMxRFLMrXyAuQJTEOhLY/oinZPaQtwyL3Px2jClf9eG/5b
+rsFB45BzVzh6DxsfISBDsBBxusLB4FR2r4bjPYrj6pV2jLY+hdmxLwl3/docVdnB
+OBsKunqt9nSlLAdMm9om
+=U3e9
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-8.0.0-RC3-reva9d80bf18af04850ea21dcf88a40367559fb246e/solr/maven/org/apache/solr/solr-core/8.0.0/solr-core-8.0.0-javadoc.jar.md5
==============================================================================
--- dev/lucene/lucene-solr-8.0.0-RC3-reva9d80bf18af04850ea21dcf88a40367559fb246e/solr/maven/org/apache/solr/solr-core/8.0.0/solr-core-8.0.0-javadoc.jar.md5 (added)
+++ dev/lucene/lucene-solr-8.0.0-RC3-reva9d80bf18af04850ea21dcf88a40367559fb246e/solr/maven/org/apache/solr/solr-core/8.0.0/solr-core-8.0.0-javadoc.jar.md5 Thu Mar  7 15:32:44 2019
@@ -0,0 +1 @@
+6615c9f039f8e6b08c9821c740946c60
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.0.0-RC3-reva9d80bf18af04850ea21dcf88a40367559fb246e/solr/maven/org/apache/solr/solr-core/8.0.0/solr-core-8.0.0-javadoc.jar.sha1
==============================================================================
--- dev/lucene/lucene-solr-8.0.0-RC3-reva9d80bf18af04850ea21dcf88a40367559fb246e/solr/maven/org/apache/solr/solr-core/8.0.0/solr-core-8.0.0-javadoc.jar.sha1 (added)
+++ dev/lucene/lucene-solr-8.0.0-RC3-reva9d80bf18af04850ea21dcf88a40367559fb246e/solr/maven/org/apache/solr/solr-core/8.0.0/solr-core-8.0.0-javadoc.jar.sha1 Thu Mar  7 15:32:44 2019
@@ -0,0 +1 @@
+bf1277d6e731df45646a1452e032a9619ed848f5
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.0.0-RC3-reva9d80bf18af04850ea21dcf88a40367559fb246e/solr/maven/org/apache/solr/solr-core/8.0.0/solr-core-8.0.0-sources.jar
==============================================================================
Binary file - no diff available.

Propchange: dev/lucene/lucene-solr-8.0.0-RC3-reva9d80bf18af04850ea21dcf88a40367559fb246e/solr/maven/org/apache/solr/solr-core/8.0.0/solr-core-8.0.0-sources.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: dev/lucene/lucene-solr-8.0.0-RC3-reva9d80bf18af04850ea21dcf88a40367559fb246e/solr/maven/org/apache/solr/solr-core/8.0.0/solr-core-8.0.0-sources.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-8.0.0-RC3-reva9d80bf18af04850ea21dcf88a40367559fb246e/solr/maven/org/apache/solr/solr-core/8.0.0/solr-core-8.0.0-sources.jar.asc (added)
+++ dev/lucene/lucene-solr-8.0.0-RC3-reva9d80bf18af04850ea21dcf88a40367559fb246e/solr/maven/org/apache/solr/solr-core/8.0.0/solr-core-8.0.0-sources.jar.asc Thu Mar  7 15:32:44 2019
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v2
+
+iQIcBAABCAAGBQJcgTMyAAoJEPmME8+loTXY2kcP/AzCVxoM3EbsNOhjZO8ThUo7
+eKaSqY1DcGa7ufXK0jB7746qDBgedbpyb2FN7BBOQe9lVORbPUAePlEo2rdBe/fe
+blwTbvsBlRfCsLogE55zFPOsXd58Yx+6FjBbpiH1cfofSBv/Cfq0YXMBZ6cnty0U
+SBApc0Tfis5odGOvMgl17h6V63h7yjeUk7klnIMnoNv1k6IBHA6hbvgke3DxPL8q
+h3wObUeHXRX6jYTrnFk5bp4pd6Gm7PJaXDQ+w40UNCknPD2ww65lKelrlBjd6MKc
+lt8mKFWsbaps1sg89HhApiD3bGf75mNa5HBLKSOG4Y94D6IrMrS6GjgJWosJCc8M
+aTHQPRhfwMi4z5k1uFjcMlrM1wE14hK6Aon+OBsIn1L1jk/Vix8mNNgVhV9Ol94A
+9SOQWye6W/QtAf222CGTn+gqmdntbvOBrHFJ039WhDRxRrh0b2qZKqrW8DA8R68p
+Z6EWXLAAcbTpCF3FNGWoiN6v2pX6CqFEEBTQMwMqzw/b+ALFf9rBA0qoGVtDCMST
+ztdtNMj/WeOXJeo6sd+Z902mKE8deAC2kDjzXKR5z3DtGGW5IU/ZfaFFRxWpbRR1
+OeYcSyfZdsctiak58KWeU8eMbgmhlHUhe3gnOvkiHFqBijhmVh5chFHoOsSPwZgb
+qrG58G7u9wlzHJ7K1l12
+=1fXu
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-8.0.0-RC3-reva9d80bf18af04850ea21dcf88a40367559fb246e/solr/maven/org/apache/solr/solr-core/8.0.0/solr-core-8.0.0-sources.jar.md5
==============================================================================
--- dev/lucene/lucene-solr-8.0.0-RC3-reva9d80bf18af04850ea21dcf88a40367559fb246e/solr/maven/org/apache/solr/solr-core/8.0.0/solr-core-8.0.0-sources.jar.md5 (added)
+++ dev/lucene/lucene-solr-8.0.0-RC3-reva9d80bf18af04850ea21dcf88a40367559fb246e/solr/maven/org/apache/solr/solr-core/8.0.0/solr-core-8.0.0-sources.jar.md5 Thu Mar  7 15:32:44 2019
@@ -0,0 +1 @@
+9feb819dde13a7cd538dd21b47d901ff
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.0.0-RC3-reva9d80bf18af04850ea21dcf88a40367559fb246e/solr/maven/org/apache/solr/solr-core/8.0.0/solr-core-8.0.0-sources.jar.sha1
==============================================================================
--- dev/lucene/lucene-solr-8.0.0-RC3-reva9d80bf18af04850ea21dcf88a40367559fb246e/solr/maven/org/apache/solr/solr-core/8.0.0/solr-core-8.0.0-sources.jar.sha1 (added)
+++ dev/lucene/lucene-solr-8.0.0-RC3-reva9d80bf18af04850ea21dcf88a40367559fb246e/solr/maven/org/apache/solr/solr-core/8.0.0/solr-core-8.0.0-sources.jar.sha1 Thu Mar  7 15:32:44 2019
@@ -0,0 +1 @@
+6aea2ec059efe795d264cf2efc650f27c99c6173
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.0.0-RC3-reva9d80bf18af04850ea21dcf88a40367559fb246e/solr/maven/org/apache/solr/solr-core/8.0.0/solr-core-8.0.0.jar
==============================================================================
Binary file - no diff available.

Propchange: dev/lucene/lucene-solr-8.0.0-RC3-reva9d80bf18af04850ea21dcf88a40367559fb246e/solr/maven/org/apache/solr/solr-core/8.0.0/solr-core-8.0.0.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: dev/lucene/lucene-solr-8.0.0-RC3-reva9d80bf18af04850ea21dcf88a40367559fb246e/solr/maven/org/apache/solr/solr-core/8.0.0/solr-core-8.0.0.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-8.0.0-RC3-reva9d80bf18af04850ea21dcf88a40367559fb246e/solr/maven/org/apache/solr/solr-core/8.0.0/solr-core-8.0.0.jar.asc (added)
+++ dev/lucene/lucene-solr-8.0.0-RC3-reva9d80bf18af04850ea21dcf88a40367559fb246e/solr/maven/org/apache/solr/solr-core/8.0.0/solr-core-8.0.0.jar.asc Thu Mar  7 15:32:44 2019
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v2
+
+iQIcBAABCAAGBQJcgTMzAAoJEPmME8+loTXYkx0P/js3xHLa4HGi3THzEuaEW+8C
+LOwH/S5bmZzW0LRJ2mTNjBBnWTfdpC8Hw7F1564whCZG8QeZpBehiOFRpj6mb0mH
+mVRw8iHJ07fcvGMQeKOz2uOM/iBlN7W15bUxCtgOv++MO086ncsjfw2KTqwAhRXg
+zXw0Xl/g3OqhR15MAdUPUgUBqEFnK6bPT2ShRjtIGuDIj9yhSBvWMjRO7iL/42Gf
+MNqLWMOWN2IXkJA27fhTUX9roFNME9dZeIFRN7+6XMwOj4WCH5K3eHNRcWGhaczU
+bLOc18n4+ZDb3OO/zQaqxy9YMV9RRdYPgFqbhDsclFclc7B1XYWz6w24IJauRCjZ
+Ztcv3ZA4SHsxCrByTcWVBtNAW3X/WY1YA4dAHWbL3LAfnYfKojdJrcqUhVjOBMwJ
+nhv78GFEa6TT7TUxed842iJPO6MtgaXZ0KcHggSWVB1f+DPAeEaDh/MvL5FjA9/V
+fEK3bSZ5iWFl7gQtRY7NwvTgIJC93P79UhgeebV47h0aWYGwKF152Omrl0+joTFA
+qtyMUHKgsx/lpMUnFq9cWp2YWh8jYxd/CHcFfO4QM3dF07e6CtIG63NCnKUlnTLD
+/rksPN376k4qCwPX65DLSANrcqJ1ZISN+pWwpC9S1nc99ibTiTtVYR3nvu4TJ6uZ
+LNj/LPg15/IwMaob7NE0
+=Z9U2
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-8.0.0-RC3-reva9d80bf18af04850ea21dcf88a40367559fb246e/solr/maven/org/apache/solr/solr-core/8.0.0/solr-core-8.0.0.jar.md5
==============================================================================
--- dev/lucene/lucene-solr-8.0.0-RC3-reva9d80bf18af04850ea21dcf88a40367559fb246e/solr/maven/org/apache/solr/solr-core/8.0.0/solr-core-8.0.0.jar.md5 (added)
+++ dev/lucene/lucene-solr-8.0.0-RC3-reva9d80bf18af04850ea21dcf88a40367559fb246e/solr/maven/org/apache/solr/solr-core/8.0.0/solr-core-8.0.0.jar.md5 Thu Mar  7 15:32:44 2019
@@ -0,0 +1 @@
+8b988868d2489f4c47b6c9a5b4966a5f
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.0.0-RC3-reva9d80bf18af04850ea21dcf88a40367559fb246e/solr/maven/org/apache/solr/solr-core/8.0.0/solr-core-8.0.0.jar.sha1
==============================================================================
--- dev/lucene/lucene-solr-8.0.0-RC3-reva9d80bf18af04850ea21dcf88a40367559fb246e/solr/maven/org/apache/solr/solr-core/8.0.0/solr-core-8.0.0.jar.sha1 (added)
+++ dev/lucene/lucene-solr-8.0.0-RC3-reva9d80bf18af04850ea21dcf88a40367559fb246e/solr/maven/org/apache/solr/solr-core/8.0.0/solr-core-8.0.0.jar.sha1 Thu Mar  7 15:32:44 2019
@@ -0,0 +1 @@
+ab83eae58597b126687ebe909cc617cfde639af5
\ No newline at end of file