You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by ro...@apache.org on 2019/02/13 15:52:05 UTC

svn commit: r32478 [14/18] - in /dev/lucene/lucene-solr-8.0.0-RC1-rev6a817b1c304bff9b9ca6d91f810d1c928ef761c5: ./ 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-RC1-rev6a817b1c304bff9b9ca6d91f810d1c928ef761c5/solr/maven/org/apache/solr/solr-cell/8.0.0/solr-cell-8.0.0.pom
==============================================================================
--- dev/lucene/lucene-solr-8.0.0-RC1-rev6a817b1c304bff9b9ca6d91f810d1c928ef761c5/solr/maven/org/apache/solr/solr-cell/8.0.0/solr-cell-8.0.0.pom (added)
+++ dev/lucene/lucene-solr-8.0.0-RC1-rev6a817b1c304bff9b9ca6d91f810d1c928ef761c5/solr/maven/org/apache/solr/solr-cell/8.0.0/solr-cell-8.0.0.pom Wed Feb 13 15:52:00 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>

Propchange: dev/lucene/lucene-solr-8.0.0-RC1-rev6a817b1c304bff9b9ca6d91f810d1c928ef761c5/solr/maven/org/apache/solr/solr-cell/8.0.0/solr-cell-8.0.0.pom
------------------------------------------------------------------------------
    svn:eol-style = native

Added: dev/lucene/lucene-solr-8.0.0-RC1-rev6a817b1c304bff9b9ca6d91f810d1c928ef761c5/solr/maven/org/apache/solr/solr-cell/8.0.0/solr-cell-8.0.0.pom.asc
==============================================================================
--- dev/lucene/lucene-solr-8.0.0-RC1-rev6a817b1c304bff9b9ca6d91f810d1c928ef761c5/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-RC1-rev6a817b1c304bff9b9ca6d91f810d1c928ef761c5/solr/maven/org/apache/solr/solr-cell/8.0.0/solr-cell-8.0.0.pom.asc Wed Feb 13 15:52:00 2019
@@ -0,0 +1,11 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQEzBAABCAAdFiEExdzTqriXCX14Fb1rBp6XQfPZf9YFAlxj4NoACgkQBp6XQfPZ
+f9a7/gf+JN1YjCKPOyueQfqzTowlLiG6nq74+RvTM5Zc9ck3OtIUdHpv04+wBGyL
+nU6+eiEa0a+dkiRmkgWThzmdnGe0TO0MBTAc4dhuL97schBM/imaNL1WfRewG69M
+uzBTDvJrq+0U3h/tQhJ1+2aVer3TXAjnvk2kgtK1gD/VXJnmiw2+1pPQ98Iv42vl
+O9WY5TGiuHbSjSet9rucctPZh/GeW0M6d2iruyFtbsgcNxbr8DjedvN7Y4iWINs/
+rUiFq16mWofM0lhwqCS8rBaSe+fJgVcdOW1rzZLFStWEHQoNOPaEa0dYl66Nl1Gx
+V/A2WcJkXZnk1N3tQuKjQIAitfgV1A==
+=o1Rp
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-8.0.0-RC1-rev6a817b1c304bff9b9ca6d91f810d1c928ef761c5/solr/maven/org/apache/solr/solr-cell/8.0.0/solr-cell-8.0.0.pom.md5
==============================================================================
--- dev/lucene/lucene-solr-8.0.0-RC1-rev6a817b1c304bff9b9ca6d91f810d1c928ef761c5/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-RC1-rev6a817b1c304bff9b9ca6d91f810d1c928ef761c5/solr/maven/org/apache/solr/solr-cell/8.0.0/solr-cell-8.0.0.pom.md5 Wed Feb 13 15:52:00 2019
@@ -0,0 +1 @@
+96c8bf1afe822ef82c245f89cf2a395c
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.0.0-RC1-rev6a817b1c304bff9b9ca6d91f810d1c928ef761c5/solr/maven/org/apache/solr/solr-cell/8.0.0/solr-cell-8.0.0.pom.sha1
==============================================================================
--- dev/lucene/lucene-solr-8.0.0-RC1-rev6a817b1c304bff9b9ca6d91f810d1c928ef761c5/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-RC1-rev6a817b1c304bff9b9ca6d91f810d1c928ef761c5/solr/maven/org/apache/solr/solr-cell/8.0.0/solr-cell-8.0.0.pom.sha1 Wed Feb 13 15:52:00 2019
@@ -0,0 +1 @@
+efe6ca4b418f97c039f214b28db53e45b634f02d
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.0.0-RC1-rev6a817b1c304bff9b9ca6d91f810d1c928ef761c5/solr/maven/org/apache/solr/solr-cell/maven-metadata.xml
==============================================================================
--- dev/lucene/lucene-solr-8.0.0-RC1-rev6a817b1c304bff9b9ca6d91f810d1c928ef761c5/solr/maven/org/apache/solr/solr-cell/maven-metadata.xml (added)
+++ dev/lucene/lucene-solr-8.0.0-RC1-rev6a817b1c304bff9b9ca6d91f810d1c928ef761c5/solr/maven/org/apache/solr/solr-cell/maven-metadata.xml Wed Feb 13 15:52:00 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>20190213091439</lastUpdated>
+  </versioning>
+</metadata>

Propchange: dev/lucene/lucene-solr-8.0.0-RC1-rev6a817b1c304bff9b9ca6d91f810d1c928ef761c5/solr/maven/org/apache/solr/solr-cell/maven-metadata.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Added: dev/lucene/lucene-solr-8.0.0-RC1-rev6a817b1c304bff9b9ca6d91f810d1c928ef761c5/solr/maven/org/apache/solr/solr-cell/maven-metadata.xml.md5
==============================================================================
--- dev/lucene/lucene-solr-8.0.0-RC1-rev6a817b1c304bff9b9ca6d91f810d1c928ef761c5/solr/maven/org/apache/solr/solr-cell/maven-metadata.xml.md5 (added)
+++ dev/lucene/lucene-solr-8.0.0-RC1-rev6a817b1c304bff9b9ca6d91f810d1c928ef761c5/solr/maven/org/apache/solr/solr-cell/maven-metadata.xml.md5 Wed Feb 13 15:52:00 2019
@@ -0,0 +1 @@
+cb3ec87ce79526ab92f23a1e821aa7ae
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.0.0-RC1-rev6a817b1c304bff9b9ca6d91f810d1c928ef761c5/solr/maven/org/apache/solr/solr-cell/maven-metadata.xml.sha1
==============================================================================
--- dev/lucene/lucene-solr-8.0.0-RC1-rev6a817b1c304bff9b9ca6d91f810d1c928ef761c5/solr/maven/org/apache/solr/solr-cell/maven-metadata.xml.sha1 (added)
+++ dev/lucene/lucene-solr-8.0.0-RC1-rev6a817b1c304bff9b9ca6d91f810d1c928ef761c5/solr/maven/org/apache/solr/solr-cell/maven-metadata.xml.sha1 Wed Feb 13 15:52:00 2019
@@ -0,0 +1 @@
+5be1573f00ced48c3d17534e1b997ad05f4c2d91
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.0.0-RC1-rev6a817b1c304bff9b9ca6d91f810d1c928ef761c5/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-RC1-rev6a817b1c304bff9b9ca6d91f810d1c928ef761c5/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-RC1-rev6a817b1c304bff9b9ca6d91f810d1c928ef761c5/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-RC1-rev6a817b1c304bff9b9ca6d91f810d1c928ef761c5/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-RC1-rev6a817b1c304bff9b9ca6d91f810d1c928ef761c5/solr/maven/org/apache/solr/solr-clustering/8.0.0/solr-clustering-8.0.0-javadoc.jar.asc Wed Feb 13 15:52:00 2019
@@ -0,0 +1,11 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQEzBAABCAAdFiEExdzTqriXCX14Fb1rBp6XQfPZf9YFAlxj4NoACgkQBp6XQfPZ
+f9YnKgf/fTYdFp8v+0FGfvMVBZNM1IxH9HU+VFZeVXTQJbOXys+dn5+o6DSiexOs
+lIGZBsmDhYkDoj0ckLlD2IRvQvWRbTMReHbkdOrcY3fpw9aTFZqhc0n0QZF0SQjT
+W4ga8J3lkxikmLOFCmuFCqC8ynIVPn9RO/YHI+nTimjb3bvfm/1fBNfQCofXfaEm
+bB3/VWRyDtkiIHLpVLPEAzFGpbpniCb+4HBiO3zmreXqCQIr0ESbs5fMWhQk92w0
+pQ/jcX0Yxx9bfjVY0YXxewPTJoc9wLEa3aBOa4CqQCwLTnkCN/3ASYmp/7eTIByB
+CXE/DCeCL1RbGE/Z6hrxxgZqwKtLGQ==
+=CWBU
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-8.0.0-RC1-rev6a817b1c304bff9b9ca6d91f810d1c928ef761c5/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-RC1-rev6a817b1c304bff9b9ca6d91f810d1c928ef761c5/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-RC1-rev6a817b1c304bff9b9ca6d91f810d1c928ef761c5/solr/maven/org/apache/solr/solr-clustering/8.0.0/solr-clustering-8.0.0-javadoc.jar.md5 Wed Feb 13 15:52:00 2019
@@ -0,0 +1 @@
+8762752f572480c9c9a95e2cb25fa467
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.0.0-RC1-rev6a817b1c304bff9b9ca6d91f810d1c928ef761c5/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-RC1-rev6a817b1c304bff9b9ca6d91f810d1c928ef761c5/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-RC1-rev6a817b1c304bff9b9ca6d91f810d1c928ef761c5/solr/maven/org/apache/solr/solr-clustering/8.0.0/solr-clustering-8.0.0-javadoc.jar.sha1 Wed Feb 13 15:52:00 2019
@@ -0,0 +1 @@
+620448b8e6a9e3819796bb25bde7d9302a9e4379
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.0.0-RC1-rev6a817b1c304bff9b9ca6d91f810d1c928ef761c5/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-RC1-rev6a817b1c304bff9b9ca6d91f810d1c928ef761c5/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-RC1-rev6a817b1c304bff9b9ca6d91f810d1c928ef761c5/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-RC1-rev6a817b1c304bff9b9ca6d91f810d1c928ef761c5/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-RC1-rev6a817b1c304bff9b9ca6d91f810d1c928ef761c5/solr/maven/org/apache/solr/solr-clustering/8.0.0/solr-clustering-8.0.0-sources.jar.asc Wed Feb 13 15:52:00 2019
@@ -0,0 +1,11 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQEzBAABCAAdFiEExdzTqriXCX14Fb1rBp6XQfPZf9YFAlxj4NoACgkQBp6XQfPZ
+f9ZUkQf6A/sm3azyBtsD+pKmgkhxtcwYPGtxlraW/GKpgWIpU042ar5PvR37tKJw
+IDuPbWchcFugdtz5oAdncDBuvkvxh11OoYh3rMzYpYkbg93P5hvIhCl4v7Z4mN2O
+gjUCqsG6xVup7zmn2YoQ9ca5DFTuGh3jUbUuKgy4sbuXEIbAWuKdC4ab3LIzZ5Em
+be+iNdC7no1Iwvw6UUs0KyeeBJNbNlFpAAQO3W0cfOtl0HQLG5x6lK+jNJbA/wx0
+yisYRSwiI3yF6WU8ZOXXfU7AN77VB0Mk2K1uHoFBSAiOD/fTwDUmbdVwbB+quooY
+baDgrj12VaP76MugZpw5QHvW2IHjjw==
+=2KCn
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-8.0.0-RC1-rev6a817b1c304bff9b9ca6d91f810d1c928ef761c5/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-RC1-rev6a817b1c304bff9b9ca6d91f810d1c928ef761c5/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-RC1-rev6a817b1c304bff9b9ca6d91f810d1c928ef761c5/solr/maven/org/apache/solr/solr-clustering/8.0.0/solr-clustering-8.0.0-sources.jar.md5 Wed Feb 13 15:52:00 2019
@@ -0,0 +1 @@
+97c90fa2c7ef1d3e4519dd75c14574c3
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.0.0-RC1-rev6a817b1c304bff9b9ca6d91f810d1c928ef761c5/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-RC1-rev6a817b1c304bff9b9ca6d91f810d1c928ef761c5/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-RC1-rev6a817b1c304bff9b9ca6d91f810d1c928ef761c5/solr/maven/org/apache/solr/solr-clustering/8.0.0/solr-clustering-8.0.0-sources.jar.sha1 Wed Feb 13 15:52:00 2019
@@ -0,0 +1 @@
+0e14a875b22d01feefd15daeba81a88bffe5ddd3
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.0.0-RC1-rev6a817b1c304bff9b9ca6d91f810d1c928ef761c5/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-RC1-rev6a817b1c304bff9b9ca6d91f810d1c928ef761c5/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-RC1-rev6a817b1c304bff9b9ca6d91f810d1c928ef761c5/solr/maven/org/apache/solr/solr-clustering/8.0.0/solr-clustering-8.0.0.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-8.0.0-RC1-rev6a817b1c304bff9b9ca6d91f810d1c928ef761c5/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-RC1-rev6a817b1c304bff9b9ca6d91f810d1c928ef761c5/solr/maven/org/apache/solr/solr-clustering/8.0.0/solr-clustering-8.0.0.jar.asc Wed Feb 13 15:52:00 2019
@@ -0,0 +1,11 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQEzBAABCAAdFiEExdzTqriXCX14Fb1rBp6XQfPZf9YFAlxj4NoACgkQBp6XQfPZ
+f9YqOgf+OXeLF3M3petQ9B0e0pAD23+A3MUPzUv/eVDqWxZMz+ib4p1unlFKlkbG
+4jZrV+R41nZZnMgkIv4rhv8QTUqM2u0/q/2qAmMEktZP94oI95hR9ygx3xSenfdB
+RjQnqRs4MvUSU2GAFMq+vjZ/U5LA68J+qufqSbVq/gs2ExsBq8EW9uKPH3Nn0WWz
+euNtQfWqW1z2EVr2p5dpoULxtiqqpN7G9gPZASFvflUHUZXb5DDjmNMfttweb3Z5
+GC4WesWK7lZqlAMTt/upetiDAokcb7bS2MdJkZlNFl0WYYjGfWMeaT0+gm0t6apS
+VR9JUAUkb9rk5iu44ELYLRE2iMLfQQ==
+=i+QM
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-8.0.0-RC1-rev6a817b1c304bff9b9ca6d91f810d1c928ef761c5/solr/maven/org/apache/solr/solr-clustering/8.0.0/solr-clustering-8.0.0.jar.md5
==============================================================================
--- dev/lucene/lucene-solr-8.0.0-RC1-rev6a817b1c304bff9b9ca6d91f810d1c928ef761c5/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-RC1-rev6a817b1c304bff9b9ca6d91f810d1c928ef761c5/solr/maven/org/apache/solr/solr-clustering/8.0.0/solr-clustering-8.0.0.jar.md5 Wed Feb 13 15:52:00 2019
@@ -0,0 +1 @@
+167787b88532190c9a35de39075a8aba
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.0.0-RC1-rev6a817b1c304bff9b9ca6d91f810d1c928ef761c5/solr/maven/org/apache/solr/solr-clustering/8.0.0/solr-clustering-8.0.0.jar.sha1
==============================================================================
--- dev/lucene/lucene-solr-8.0.0-RC1-rev6a817b1c304bff9b9ca6d91f810d1c928ef761c5/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-RC1-rev6a817b1c304bff9b9ca6d91f810d1c928ef761c5/solr/maven/org/apache/solr/solr-clustering/8.0.0/solr-clustering-8.0.0.jar.sha1 Wed Feb 13 15:52:00 2019
@@ -0,0 +1 @@
+b107a3c4e90f487fc204230bc4ef9e9522044ae1
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.0.0-RC1-rev6a817b1c304bff9b9ca6d91f810d1c928ef761c5/solr/maven/org/apache/solr/solr-clustering/8.0.0/solr-clustering-8.0.0.pom
==============================================================================
--- dev/lucene/lucene-solr-8.0.0-RC1-rev6a817b1c304bff9b9ca6d91f810d1c928ef761c5/solr/maven/org/apache/solr/solr-clustering/8.0.0/solr-clustering-8.0.0.pom (added)
+++ dev/lucene/lucene-solr-8.0.0-RC1-rev6a817b1c304bff9b9ca6d91f810d1c928ef761c5/solr/maven/org/apache/solr/solr-clustering/8.0.0/solr-clustering-8.0.0.pom Wed Feb 13 15:52:00 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>

Propchange: dev/lucene/lucene-solr-8.0.0-RC1-rev6a817b1c304bff9b9ca6d91f810d1c928ef761c5/solr/maven/org/apache/solr/solr-clustering/8.0.0/solr-clustering-8.0.0.pom
------------------------------------------------------------------------------
    svn:eol-style = native

Added: dev/lucene/lucene-solr-8.0.0-RC1-rev6a817b1c304bff9b9ca6d91f810d1c928ef761c5/solr/maven/org/apache/solr/solr-clustering/8.0.0/solr-clustering-8.0.0.pom.asc
==============================================================================
--- dev/lucene/lucene-solr-8.0.0-RC1-rev6a817b1c304bff9b9ca6d91f810d1c928ef761c5/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-RC1-rev6a817b1c304bff9b9ca6d91f810d1c928ef761c5/solr/maven/org/apache/solr/solr-clustering/8.0.0/solr-clustering-8.0.0.pom.asc Wed Feb 13 15:52:00 2019
@@ -0,0 +1,11 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQEzBAABCAAdFiEExdzTqriXCX14Fb1rBp6XQfPZf9YFAlxj4NsACgkQBp6XQfPZ
+f9awqQgAmpNZp7nlliRIAjQgO4UN/6be0WjCKBXrSIeoONBZgqzBc2SLf4CVhs9y
+cjuD1iKHVPgIh8na/l5itsxPn8yOs5QQNTrugb0NgVUfXhoov+A7oJVkLryxLeAT
+f7A1B6Q3eagMN6jPX1YBDxBfAHZEStL4+c7RlTRQyIBpVvH/Xep3Pi81ttvL+lgc
+9KnDon7oHeALKbrMymvHKV9OHmJBom7Py1y6d/PAfaQTVMRvm596HdeNy8T+eeYm
+yhXzoAb4dRcpYAL5FxU2bIPUWZNy9Ofs1MucaQqYemKICJKCvNhl13U2DmMZF8s/
+H/Sl3q332Cd0k05wc0aOpSxp9DTr9A==
+=pez3
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-8.0.0-RC1-rev6a817b1c304bff9b9ca6d91f810d1c928ef761c5/solr/maven/org/apache/solr/solr-clustering/8.0.0/solr-clustering-8.0.0.pom.md5
==============================================================================
--- dev/lucene/lucene-solr-8.0.0-RC1-rev6a817b1c304bff9b9ca6d91f810d1c928ef761c5/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-RC1-rev6a817b1c304bff9b9ca6d91f810d1c928ef761c5/solr/maven/org/apache/solr/solr-clustering/8.0.0/solr-clustering-8.0.0.pom.md5 Wed Feb 13 15:52:00 2019
@@ -0,0 +1 @@
+985947b821920e479229ed122a6998f2
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.0.0-RC1-rev6a817b1c304bff9b9ca6d91f810d1c928ef761c5/solr/maven/org/apache/solr/solr-clustering/8.0.0/solr-clustering-8.0.0.pom.sha1
==============================================================================
--- dev/lucene/lucene-solr-8.0.0-RC1-rev6a817b1c304bff9b9ca6d91f810d1c928ef761c5/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-RC1-rev6a817b1c304bff9b9ca6d91f810d1c928ef761c5/solr/maven/org/apache/solr/solr-clustering/8.0.0/solr-clustering-8.0.0.pom.sha1 Wed Feb 13 15:52:00 2019
@@ -0,0 +1 @@
+0ae9892a203a358311583352ae4ce72f69a82794
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.0.0-RC1-rev6a817b1c304bff9b9ca6d91f810d1c928ef761c5/solr/maven/org/apache/solr/solr-clustering/maven-metadata.xml
==============================================================================
--- dev/lucene/lucene-solr-8.0.0-RC1-rev6a817b1c304bff9b9ca6d91f810d1c928ef761c5/solr/maven/org/apache/solr/solr-clustering/maven-metadata.xml (added)
+++ dev/lucene/lucene-solr-8.0.0-RC1-rev6a817b1c304bff9b9ca6d91f810d1c928ef761c5/solr/maven/org/apache/solr/solr-clustering/maven-metadata.xml Wed Feb 13 15:52:00 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>20190213091423</lastUpdated>
+  </versioning>
+</metadata>

Propchange: dev/lucene/lucene-solr-8.0.0-RC1-rev6a817b1c304bff9b9ca6d91f810d1c928ef761c5/solr/maven/org/apache/solr/solr-clustering/maven-metadata.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Added: dev/lucene/lucene-solr-8.0.0-RC1-rev6a817b1c304bff9b9ca6d91f810d1c928ef761c5/solr/maven/org/apache/solr/solr-clustering/maven-metadata.xml.md5
==============================================================================
--- dev/lucene/lucene-solr-8.0.0-RC1-rev6a817b1c304bff9b9ca6d91f810d1c928ef761c5/solr/maven/org/apache/solr/solr-clustering/maven-metadata.xml.md5 (added)
+++ dev/lucene/lucene-solr-8.0.0-RC1-rev6a817b1c304bff9b9ca6d91f810d1c928ef761c5/solr/maven/org/apache/solr/solr-clustering/maven-metadata.xml.md5 Wed Feb 13 15:52:00 2019
@@ -0,0 +1 @@
+e3fbc7694af464808ecdcce6d691fa33
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.0.0-RC1-rev6a817b1c304bff9b9ca6d91f810d1c928ef761c5/solr/maven/org/apache/solr/solr-clustering/maven-metadata.xml.sha1
==============================================================================
--- dev/lucene/lucene-solr-8.0.0-RC1-rev6a817b1c304bff9b9ca6d91f810d1c928ef761c5/solr/maven/org/apache/solr/solr-clustering/maven-metadata.xml.sha1 (added)
+++ dev/lucene/lucene-solr-8.0.0-RC1-rev6a817b1c304bff9b9ca6d91f810d1c928ef761c5/solr/maven/org/apache/solr/solr-clustering/maven-metadata.xml.sha1 Wed Feb 13 15:52:00 2019
@@ -0,0 +1 @@
+0b85ec14eaa7612f46f9bbe67eac35f80a90ea61
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.0.0-RC1-rev6a817b1c304bff9b9ca6d91f810d1c928ef761c5/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-RC1-rev6a817b1c304bff9b9ca6d91f810d1c928ef761c5/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-RC1-rev6a817b1c304bff9b9ca6d91f810d1c928ef761c5/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-RC1-rev6a817b1c304bff9b9ca6d91f810d1c928ef761c5/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-RC1-rev6a817b1c304bff9b9ca6d91f810d1c928ef761c5/solr/maven/org/apache/solr/solr-core/8.0.0/solr-core-8.0.0-javadoc.jar.asc Wed Feb 13 15:52:00 2019
@@ -0,0 +1,11 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQEzBAABCAAdFiEExdzTqriXCX14Fb1rBp6XQfPZf9YFAlxj4NsACgkQBp6XQfPZ
+f9YNmggA1ijuNwK9EdFuVgesuVxRTbAe8on8SX5qlpjHGGc0MCpV0/7HnEsT3TUU
+XORHZQ7nZ1bRxhRKDa44XRYbR8Z/hfzycVfF4Bbmsgj4REJ6XTI8r+9AKxJlTq8T
+twxxGsVELtR50/iWy1UAhefOgRr+rS1GmCk51wBlZIJG4BlPTa6SY495zUF9sS8J
+xU5k3nc+aapjd3jozUYNarqArDm6UrPMuHhL1SLZHns4DAC8OrygjlgrxXr2oOiT
+MKvMiP6w0xXbQmZR5nqZ8fI9sw5daGtFraeDsk6setIFs16uS9PJuWJ64aYjxrLE
+6mg8/UZNmCw0tdvfAjXnaC5e1FhuKQ==
+=exst
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-8.0.0-RC1-rev6a817b1c304bff9b9ca6d91f810d1c928ef761c5/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-RC1-rev6a817b1c304bff9b9ca6d91f810d1c928ef761c5/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-RC1-rev6a817b1c304bff9b9ca6d91f810d1c928ef761c5/solr/maven/org/apache/solr/solr-core/8.0.0/solr-core-8.0.0-javadoc.jar.md5 Wed Feb 13 15:52:00 2019
@@ -0,0 +1 @@
+16f10a228877496675238a5768987e3d
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.0.0-RC1-rev6a817b1c304bff9b9ca6d91f810d1c928ef761c5/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-RC1-rev6a817b1c304bff9b9ca6d91f810d1c928ef761c5/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-RC1-rev6a817b1c304bff9b9ca6d91f810d1c928ef761c5/solr/maven/org/apache/solr/solr-core/8.0.0/solr-core-8.0.0-javadoc.jar.sha1 Wed Feb 13 15:52:00 2019
@@ -0,0 +1 @@
+d5dfac54fc87e0b323f9733196ac3e60ed9f7cc8
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.0.0-RC1-rev6a817b1c304bff9b9ca6d91f810d1c928ef761c5/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-RC1-rev6a817b1c304bff9b9ca6d91f810d1c928ef761c5/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-RC1-rev6a817b1c304bff9b9ca6d91f810d1c928ef761c5/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-RC1-rev6a817b1c304bff9b9ca6d91f810d1c928ef761c5/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-RC1-rev6a817b1c304bff9b9ca6d91f810d1c928ef761c5/solr/maven/org/apache/solr/solr-core/8.0.0/solr-core-8.0.0-sources.jar.asc Wed Feb 13 15:52:00 2019
@@ -0,0 +1,11 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQEzBAABCAAdFiEExdzTqriXCX14Fb1rBp6XQfPZf9YFAlxj4NsACgkQBp6XQfPZ
+f9Z3HQgArBW9ID8nIMB0EAzJ1TjRWXiGMhC0e5TvuA7cBo5bCJAgd0cd8IfIyMMd
+xSIvx2OaU2vjw0OcrUkht9jnHjLYhSQZ7+0hqrWdV2pGneNqeXiT5MOsbGSNg2pD
+XNntCK3wqcR4Xe1eI4SMC1V+zVLsaWSQMBxVEWACbniCLV38BRbIzlGO5rxNr/NV
+tkjkcmJJVQ02QEf2zy/crSBLUHDwDfrh7tGTDiawqYEHjAIXA4zsYF2LAr6fu1jM
+oR4Hm+HiYUJ1pVaXMHo2uquFPQf/ryOgaPWn5qHBpqWZv13mEXxL9nZOjTz58+am
+qfE8po0/Cs7cI4XPog15iZW82tr6nQ==
+=REwJ
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-8.0.0-RC1-rev6a817b1c304bff9b9ca6d91f810d1c928ef761c5/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-RC1-rev6a817b1c304bff9b9ca6d91f810d1c928ef761c5/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-RC1-rev6a817b1c304bff9b9ca6d91f810d1c928ef761c5/solr/maven/org/apache/solr/solr-core/8.0.0/solr-core-8.0.0-sources.jar.md5 Wed Feb 13 15:52:00 2019
@@ -0,0 +1 @@
+c149fa60754ee94710d0151a82d2acfa
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.0.0-RC1-rev6a817b1c304bff9b9ca6d91f810d1c928ef761c5/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-RC1-rev6a817b1c304bff9b9ca6d91f810d1c928ef761c5/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-RC1-rev6a817b1c304bff9b9ca6d91f810d1c928ef761c5/solr/maven/org/apache/solr/solr-core/8.0.0/solr-core-8.0.0-sources.jar.sha1 Wed Feb 13 15:52:00 2019
@@ -0,0 +1 @@
+b57df4301537855bed31182434b08ab57e7fd86c
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.0.0-RC1-rev6a817b1c304bff9b9ca6d91f810d1c928ef761c5/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-RC1-rev6a817b1c304bff9b9ca6d91f810d1c928ef761c5/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-RC1-rev6a817b1c304bff9b9ca6d91f810d1c928ef761c5/solr/maven/org/apache/solr/solr-core/8.0.0/solr-core-8.0.0.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-8.0.0-RC1-rev6a817b1c304bff9b9ca6d91f810d1c928ef761c5/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-RC1-rev6a817b1c304bff9b9ca6d91f810d1c928ef761c5/solr/maven/org/apache/solr/solr-core/8.0.0/solr-core-8.0.0.jar.asc Wed Feb 13 15:52:00 2019
@@ -0,0 +1,11 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQEzBAABCAAdFiEExdzTqriXCX14Fb1rBp6XQfPZf9YFAlxj4NsACgkQBp6XQfPZ
+f9YGFQgAkzUEL4BqE9X/qADzv+MmTluQD5jF3sMSJ/M5El1Rxp0ruE5fBswPhkls
+1sOeXoIzrQjuTfPjADFX0DcF8wJ9j8pmqQ8JVXrL3Xck9V0OEyQeWmixjquQdPgs
+eRceMpCmWE69MBhAsvSPF5QmIJ79I/b1QbLpkfpDGLY8A/YBU/1bTSK4jMitiQjI
+9UWAj9YTa/wEVYrG89fE3uOAf6o87WQDs+s3QtTlGWVRgASAOQZfvDAp62Sxlkck
+qL4Hph3Z7gpGyfGnE2r930WJ7DdW7pQrq8K3CNtdcFzxZxI7IquI7JSTuoyjoNoL
++1+YGb7xGExMU6p7rtbFPya+d8Uq0w==
+=ElZu
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-8.0.0-RC1-rev6a817b1c304bff9b9ca6d91f810d1c928ef761c5/solr/maven/org/apache/solr/solr-core/8.0.0/solr-core-8.0.0.jar.md5
==============================================================================
--- dev/lucene/lucene-solr-8.0.0-RC1-rev6a817b1c304bff9b9ca6d91f810d1c928ef761c5/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-RC1-rev6a817b1c304bff9b9ca6d91f810d1c928ef761c5/solr/maven/org/apache/solr/solr-core/8.0.0/solr-core-8.0.0.jar.md5 Wed Feb 13 15:52:00 2019
@@ -0,0 +1 @@
+ff0d71aca44a116632d3d0c79a2d34f9
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.0.0-RC1-rev6a817b1c304bff9b9ca6d91f810d1c928ef761c5/solr/maven/org/apache/solr/solr-core/8.0.0/solr-core-8.0.0.jar.sha1
==============================================================================
--- dev/lucene/lucene-solr-8.0.0-RC1-rev6a817b1c304bff9b9ca6d91f810d1c928ef761c5/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-RC1-rev6a817b1c304bff9b9ca6d91f810d1c928ef761c5/solr/maven/org/apache/solr/solr-core/8.0.0/solr-core-8.0.0.jar.sha1 Wed Feb 13 15:52:00 2019
@@ -0,0 +1 @@
+938fa40b30528b14f1cbeff7e3f353bfcaa7dd0d
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.0.0-RC1-rev6a817b1c304bff9b9ca6d91f810d1c928ef761c5/solr/maven/org/apache/solr/solr-core/8.0.0/solr-core-8.0.0.pom
==============================================================================
--- dev/lucene/lucene-solr-8.0.0-RC1-rev6a817b1c304bff9b9ca6d91f810d1c928ef761c5/solr/maven/org/apache/solr/solr-core/8.0.0/solr-core-8.0.0.pom (added)
+++ dev/lucene/lucene-solr-8.0.0-RC1-rev6a817b1c304bff9b9ca6d91f810d1c928ef761c5/solr/maven/org/apache/solr/solr-core/8.0.0/solr-core-8.0.0.pom Wed Feb 13 15:52:00 2019
@@ -0,0 +1,535 @@
+<!--
+  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-core</artifactId>
+  <packaging>jar</packaging>
+  <name>Apache Solr Core</name>
+  <description>Apache Solr Core</description>
+  <properties>
+    <module-directory>solr/core</module-directory>
+    <relative-top-level>../../../../..</relative-top-level>
+    <module-path>${relative-top-level}/${module-directory}/src/java</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>
+      <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-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.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.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}</sourceDirectory>
+    <resources>
+      <resource>
+        <directory>${module-path}/../resources</directory>
+      </resource>
+    </resources>
+    <testSourceDirectory/>
+    <testResources/>
+    <plugins>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-surefire-plugin</artifactId>
+        <configuration>
+          <skip>true</skip> <!-- Tests are run from solr-core-tests module -->
+        </configuration>
+      </plugin>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-compiler-plugin</artifactId>
+        <configuration>
+          <skip>true</skip> <!-- This skips test compilation - tests are run from solr-core-tests module -->
+        </configuration>
+      </plugin>
+      <plugin>
+        <groupId>de.thetaphi</groupId>
+        <artifactId>forbiddenapis</artifactId>
+        <executions>
+          <execution>
+            <id>solr-shared-test-check-forbidden-apis</id>
+            <phase>none</phase> <!-- Block inherited execution -->
+          </execution>
+        </executions>
+      </plugin>
+    </plugins>
+  </build>
+</project>

Propchange: dev/lucene/lucene-solr-8.0.0-RC1-rev6a817b1c304bff9b9ca6d91f810d1c928ef761c5/solr/maven/org/apache/solr/solr-core/8.0.0/solr-core-8.0.0.pom
------------------------------------------------------------------------------
    svn:eol-style = native