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 2017/04/21 11:50:12 UTC

svn commit: r19232 [16/22] - in /dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75: ./ 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-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-cell/6.5.1/solr-cell-6.5.1.pom
==============================================================================
--- dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-cell/6.5.1/solr-cell-6.5.1.pom (added)
+++ dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-cell/6.5.1/solr-cell-6.5.1.pom Fri Apr 21 11:50:09 2017
@@ -0,0 +1,593 @@
+<!--
+  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/maven-v4_0_0.xsd">
+  <modelVersion>4.0.0</modelVersion>
+  <parent>
+    <groupId>org.apache.solr</groupId>
+    <artifactId>solr-parent</artifactId>
+    <version>6.5.1</version>
+    <relativePath>../../pom.xml</relativePath>
+  </parent>
+  <groupId>org.apache.solr</groupId>
+  <artifactId>solr-cell</artifactId>
+  <packaging>jar</packaging>
+  <name>Apache Solr Content Extraction Library</name>
+  <description>
+    Apache Solr Content Extraction Library integrates Apache Tika 
+    content extraction framework into Solr
+  </description>
+  <properties>
+    <module-directory>solr/contrib/extraction</module-directory>
+    <relative-top-level>../../../..</relative-top-level>
+    <module-path>${relative-top-level}/${module-directory}</module-path>
+  </properties>
+  <scm>
+    <connection>scm:git:${vc-anonymous-base-url}</connection>
+    <developerConnection>scm:git:${vc-dev-base-url}</developerConnection>
+    <url>${vc-browse-base-url};f=${module-directory}</url>
+  </scm>
+  <dependencies>
+    <dependency>
+      <!-- lucene-test-framework dependency must be declared before lucene-core -->
+      <!-- This dependency cannot be put into solr-parent, because local        -->
+      <!-- dependencies are always ordered before inherited dependencies.       -->
+      <groupId>org.apache.lucene</groupId>
+      <artifactId>lucene-test-framework</artifactId>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.solr</groupId>
+      <artifactId>solr-test-framework</artifactId>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.lucene</groupId>
+      <artifactId>lucene-analyzers-common</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.lucene</groupId>
+      <artifactId>lucene-analyzers-kuromoji</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.lucene</groupId>
+      <artifactId>lucene-analyzers-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-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.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.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.ibm.icu</groupId>
+      <artifactId>icu4j</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.pff</groupId>
+      <artifactId>java-libpst</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.tdunning</groupId>
+      <artifactId>t-digest</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>commons-cli</groupId>
+      <artifactId>commons-cli</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>commons-codec</groupId>
+      <artifactId>commons-codec</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>commons-collections</groupId>
+      <artifactId>commons-collections</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>commons-configuration</groupId>
+      <artifactId>commons-configuration</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>jdom</groupId>
+      <artifactId>jdom</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>joda-time</groupId>
+      <artifactId>joda-time</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>log4j</groupId>
+      <artifactId>log4j</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>net.hydromatic</groupId>
+      <artifactId>eigenbase-properties</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>net.sourceforge.jmatio</groupId>
+      <artifactId>jmatio</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-compress</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.commons</groupId>
+      <artifactId>commons-exec</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</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.htrace</groupId>
+      <artifactId>htrace-core</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.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-jdk15</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.bouncycastle</groupId>
+      <artifactId>bcprov-jdk15</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.ccil.cowan.tagsoup</groupId>
+      <artifactId>tagsoup</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.codehaus.jackson</groupId>
+      <artifactId>jackson-core-asl</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.codehaus.jackson</groupId>
+      <artifactId>jackson-mapper-asl</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-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.gagravarr</groupId>
+      <artifactId>vorbis-java-core</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.gagravarr</groupId>
+      <artifactId>vorbis-java-tika</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.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.slf4j</groupId>
+      <artifactId>slf4j-log4j12</artifactId>
+      <optional>true</optional>
+    </dependency>
+    <dependency>
+      <groupId>org.tukaani</groupId>
+      <artifactId>xz</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>rome</groupId>
+      <artifactId>rome</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-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-cell/6.5.1/solr-cell-6.5.1.pom.asc
==============================================================================
--- dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-cell/6.5.1/solr-cell-6.5.1.pom.asc (added)
+++ dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-cell/6.5.1/solr-cell-6.5.1.pom.asc Fri Apr 21 11:50:09 2017
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v2
+
+iQIcBAABCAAGBQJY+d5sAAoJEPmME8+loTXYcZIP+QEXW1SyzeVj4yptzAKSFUJX
+q7k3q1DzLJyKqeNBDprFK0FyHl+KZ5ZWVMfSj11T1OteQ73T3sIOnwtKoitPZEtA
+LLaMkwmlKEiuyW4aZdwZDRT6yH97PlwinOGBxUThRtKsdUwAiyXsSaZYydNYyFkj
+lNAjRAt9SITuy39hDl/Uaxei1w9dKvj/pl0NCAfl2s0scbxRMYAmQg1qancll965
+8pw3jJboSTikLtavAYxCNdIGQg2p+GIfzfe11GEfDpDfUsTPqEEUlZ1ttxrDYGoX
+YynygrQ9+LEC4xpQ/lzQBKxMu+DSNQM/N8rztUqA7x2wcHXVEvbNyUIYiwYJD/PB
+5i1A+FjETuA+g8RxtwYVDbxUKrnjyDJx9RwJuOGNvdGpRugx3LBMCjBQUbp5Jvbw
+vhF9dunqFMk0sYVSfCCdf1M7xarLsnvq5/NB1I/lIed3zZvWx6ZAzRJGjk/QPfgR
+Uvz+bUr4yeUu/iIEqfz4zSARj6iD42EjiSOD6w6w6WUPdytuhz2gyS8XvD1y9C0/
+GqCiZNviw2FoRryK81xk1imgBYGSml6Q1CTIF2MeurQyQNV2ShL20pjsA9VBIHoF
+Dahr0Mhzq1a8sgcyMXnStBeDMCLfSUUB86hTQA5BjIaotCSh2fFsyff4/356eMap
+wNrpoN0KHPpx4Vf4hw83
+=RXgd
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-cell/6.5.1/solr-cell-6.5.1.pom.md5
==============================================================================
--- dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-cell/6.5.1/solr-cell-6.5.1.pom.md5 (added)
+++ dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-cell/6.5.1/solr-cell-6.5.1.pom.md5 Fri Apr 21 11:50:09 2017
@@ -0,0 +1 @@
+02e2602b33ace5b407acdad0c4611968
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-cell/6.5.1/solr-cell-6.5.1.pom.sha1
==============================================================================
--- dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-cell/6.5.1/solr-cell-6.5.1.pom.sha1 (added)
+++ dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-cell/6.5.1/solr-cell-6.5.1.pom.sha1 Fri Apr 21 11:50:09 2017
@@ -0,0 +1 @@
+fb15981ec1c0177032221b692c8c367339de60f1
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-cell/maven-metadata.xml
==============================================================================
--- dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-cell/maven-metadata.xml (added)
+++ dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-cell/maven-metadata.xml Fri Apr 21 11:50:09 2017
@@ -0,0 +1,12 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<metadata>
+  <groupId>org.apache.solr</groupId>
+  <artifactId>solr-cell</artifactId>
+  <version>6.5.1</version>
+  <versioning>
+    <versions>
+      <version>6.5.1</version>
+    </versions>
+    <lastUpdated>20170421102618</lastUpdated>
+  </versioning>
+</metadata>

Added: dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-cell/maven-metadata.xml.md5
==============================================================================
--- dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-cell/maven-metadata.xml.md5 (added)
+++ dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-cell/maven-metadata.xml.md5 Fri Apr 21 11:50:09 2017
@@ -0,0 +1 @@
+c1825cc414b6fe4d8dd614740dd926fc
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-cell/maven-metadata.xml.sha1
==============================================================================
--- dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-cell/maven-metadata.xml.sha1 (added)
+++ dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-cell/maven-metadata.xml.sha1 Fri Apr 21 11:50:09 2017
@@ -0,0 +1 @@
+149d36394b42667fe68cdf63db251dbfa23fd1f9
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-clustering/6.5.1/solr-clustering-6.5.1-javadoc.jar
==============================================================================
Binary file - no diff available.

Propchange: dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-clustering/6.5.1/solr-clustering-6.5.1-javadoc.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-clustering/6.5.1/solr-clustering-6.5.1-javadoc.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-clustering/6.5.1/solr-clustering-6.5.1-javadoc.jar.asc (added)
+++ dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-clustering/6.5.1/solr-clustering-6.5.1-javadoc.jar.asc Fri Apr 21 11:50:09 2017
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v2
+
+iQIcBAABCAAGBQJY+d5tAAoJEPmME8+loTXYFLkQAL7n2CmOxnDe+E7Ivv2KpRvP
+gZK4g7ua1cfUMlDtWgaNS977FpholA3IYqxfNemTLvwRZ8AJQsN8yDq53jPM99ES
++bLF163pnhGzncOhB/nRB+Exvu+kBEtiW9jFiNiG4iiGtj6TAetz13hVW820QWcZ
+BqURL5zLm63KbQrpmsb6v8ccMUBTv3t0i9lmXOx2PkcUGv0qftG6HIfxPxaG+M9s
+w3QUs4cPK763sqXA8Uy5l8iEPOBPUUuL/ybncD+PIuV1KDXBdQs/YMrKFyfpG3lT
+ekWQ9y5yaQ0Fm64aHs2/+WVn5O4XFTEwU8pIzwCxRfcXk2CEn6HEsB2MOTcDwruC
+nldZW/yXlnTJHp+vJEkwQ0qXBWUL5VjMJuup8JmiqAZU8ue4QUzuhaLjH0RcPYI2
+BIECy6PK0muOkWoRxG67XTIs/sJaZuVb42rEAfvwtsOkbmw3ZKimiHpGQx8bc5QP
+isUnLltZWTee2SgVaDPDgTaPXOx7UBrD5FX8gRJeyvxRkVF+XUdNqB+v6xFO1CP2
+q28sp1sbq4XFIWqXrTBT4ucyAlSPjZ3doQ3YfiGEtIyVjSetApcViRp1bNn4sFfU
+SsdCIA2WC2YDjHFhmsCV7ZbldV72iemTmLtzQJw5/dzjIj6tiwMnxv9Iig5Nl+Lh
+iVaffNVrMp0tQFnx0OjH
+=hYbY
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-clustering/6.5.1/solr-clustering-6.5.1-javadoc.jar.md5
==============================================================================
--- dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-clustering/6.5.1/solr-clustering-6.5.1-javadoc.jar.md5 (added)
+++ dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-clustering/6.5.1/solr-clustering-6.5.1-javadoc.jar.md5 Fri Apr 21 11:50:09 2017
@@ -0,0 +1 @@
+8820f1b5875239485fe222e725349e3d
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-clustering/6.5.1/solr-clustering-6.5.1-javadoc.jar.sha1
==============================================================================
--- dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-clustering/6.5.1/solr-clustering-6.5.1-javadoc.jar.sha1 (added)
+++ dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-clustering/6.5.1/solr-clustering-6.5.1-javadoc.jar.sha1 Fri Apr 21 11:50:09 2017
@@ -0,0 +1 @@
+033d75d62009ac2bbc129a59f549f988503d91a1
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-clustering/6.5.1/solr-clustering-6.5.1-sources.jar
==============================================================================
Binary file - no diff available.

Propchange: dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-clustering/6.5.1/solr-clustering-6.5.1-sources.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-clustering/6.5.1/solr-clustering-6.5.1-sources.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-clustering/6.5.1/solr-clustering-6.5.1-sources.jar.asc (added)
+++ dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-clustering/6.5.1/solr-clustering-6.5.1-sources.jar.asc Fri Apr 21 11:50:09 2017
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v2
+
+iQIcBAABCAAGBQJY+d5tAAoJEPmME8+loTXY/zYP/0IDeYCgr6lWJqBBWFShcP+D
+jXLAk9vvL1lOW/8Dh9Y4e0uDnsFMFNJe+U+yzTmDmHHdOlN2Loe9jK9x/OhnT5Nm
+LIdYdlPcZIthd1GI3u9uD0U8URV2pWsulbVS8fOWctq7J0IQjEx8GXDzGXqAr7Qx
+VNEoR5nTnJ6rP7hCXjyLHYhY7HlNGoqQoxPmxMijd/70PKUuDjEoMWafLiF9t+ch
+JDrtGu9dv1zLl4QrUUKPO2qrqSzoXtGe9U5laTAPIhdS0enYFFLbaa/TPMvkoMrT
+9xHjBGoIF6Fh2e3zPIrlT8xKLOEAAf1ZRrKke0S5qsIYp0X5LBwYjTJqpzNcyQzS
+Tf+4+KkIe8Lrl1FCeg+qJ4i5pt8ZZjbEStHHFf8/9fkNvXNsrHvXhhWUp1zpnzTD
+vGoeL3f1K2vz7srUujJ9LdnFE8oDQOQ0tzWbA90pYT9DCom0dST99L5AVMyww+67
+IW2DTULlaImf24xBTVbcQjaKvlthYzvOEbeq7J0XBOKlogdtLbqheuHeT8ZX1++f
+JfWD3whuAzLht0RW0cABEP0c6a1jM//4Cs4gkWlDq2j7q8+lFS3/eA2SNQ5c5f4z
+dXkKzsfrDa055/a0DJzISnnPlM25p2eGXpwQjNsKwEawUFWqoTdW2ZgZEqxNzwp5
+c+SAfdRER1OFDfjmzRrf
+=O4uS
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-clustering/6.5.1/solr-clustering-6.5.1-sources.jar.md5
==============================================================================
--- dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-clustering/6.5.1/solr-clustering-6.5.1-sources.jar.md5 (added)
+++ dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-clustering/6.5.1/solr-clustering-6.5.1-sources.jar.md5 Fri Apr 21 11:50:09 2017
@@ -0,0 +1 @@
+ec4ef0b6aca3f9e2f1e8a698afd4f51d
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-clustering/6.5.1/solr-clustering-6.5.1-sources.jar.sha1
==============================================================================
--- dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-clustering/6.5.1/solr-clustering-6.5.1-sources.jar.sha1 (added)
+++ dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-clustering/6.5.1/solr-clustering-6.5.1-sources.jar.sha1 Fri Apr 21 11:50:09 2017
@@ -0,0 +1 @@
+e7ab042bd1b4858959a92a4a0933282c784defd3
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-clustering/6.5.1/solr-clustering-6.5.1.jar
==============================================================================
Binary file - no diff available.

Propchange: dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-clustering/6.5.1/solr-clustering-6.5.1.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-clustering/6.5.1/solr-clustering-6.5.1.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-clustering/6.5.1/solr-clustering-6.5.1.jar.asc (added)
+++ dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-clustering/6.5.1/solr-clustering-6.5.1.jar.asc Fri Apr 21 11:50:09 2017
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v2
+
+iQIcBAABCAAGBQJY+d5uAAoJEPmME8+loTXY5I8P/iPPg2epL1owsAJ/XTwuZUWy
+NxqNych3cRDiWr/QCBXNDjy/MWLuXYn6ZRYCkxpWcWlR8CcyJHoJJkAorTa1vGTe
+g5k++Jv9b8smDj6OG6jHf9ICooEtBfSZKkLLCmw45I6BGE4ijeJ3AaovEJ83/YV/
+ueRTUZbspM9+VYmwXkZaf0c9JZLPQmKWdvSlDlUu0US2deWh0fAzITxLt9Gy4Arq
+eqw1mBVqYbnnkw88WnGrf6DXzpCgmXvOkDrxerc7TNvVlO2mU39Cm/WAMKUOXFaC
+75sKV6+Yd8mT5xlWjhBiMUbW3lpi6ASFizW5AOHd4TdEmZI/fm0Cq5DkSb/d3Jim
+Xfc+xhHklPRWZIrgXAObg8E8+g7KDt1gKhSB6s6tvNTVrvu28VLUzE1nEf0Y6KhR
+I8SHBt+rFfoASYpQDnYq4h1CwA7r5WYO857TPr7/GZ4T+ZZR8/bDydu3XbSAFm7k
++q3M4M8VZHxh51RpS8r7bdWiP0NhTipRoYZ8EBnJRithyYr9b0+OuczKje6WJ/op
+pYD7OXZ8HjF8iIEsZ5gxx9bCEWgTdU+NEvnB+wdcs4qvhVDQOXYHcY4TtVNUQr4Q
+rV2Ku3Zii1M4Q0xkSBrjb6/I0kEpEp5psKUqdYn2/3dyNxv1vvnvZamUN4MvGZSw
+jYvwAH5aMPdZ7wTQ3eNo
+=hXRP
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-clustering/6.5.1/solr-clustering-6.5.1.jar.md5
==============================================================================
--- dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-clustering/6.5.1/solr-clustering-6.5.1.jar.md5 (added)
+++ dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-clustering/6.5.1/solr-clustering-6.5.1.jar.md5 Fri Apr 21 11:50:09 2017
@@ -0,0 +1 @@
+b833ee02d7eac5f9a5c2680e680f5044
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-clustering/6.5.1/solr-clustering-6.5.1.jar.sha1
==============================================================================
--- dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-clustering/6.5.1/solr-clustering-6.5.1.jar.sha1 (added)
+++ dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-clustering/6.5.1/solr-clustering-6.5.1.jar.sha1 Fri Apr 21 11:50:09 2017
@@ -0,0 +1 @@
+5acc37e65b521067cc6612156d7e3109689075e2
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-clustering/6.5.1/solr-clustering-6.5.1.pom
==============================================================================
--- dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-clustering/6.5.1/solr-clustering-6.5.1.pom (added)
+++ dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-clustering/6.5.1/solr-clustering-6.5.1.pom Fri Apr 21 11:50:09 2017
@@ -0,0 +1,466 @@
+<!--
+  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/maven-v4_0_0.xsd">
+  <modelVersion>4.0.0</modelVersion>
+  <parent>
+    <groupId>org.apache.solr</groupId>
+    <artifactId>solr-parent</artifactId>
+    <version>6.5.1</version>
+    <relativePath>../../pom.xml</relativePath>
+  </parent>
+  <groupId>org.apache.solr</groupId>
+  <artifactId>solr-clustering</artifactId>
+  <packaging>jar</packaging>
+  <name>Apache Solr Clustering</name>
+  <description>Apache Solr Clustering</description>
+  <properties>
+    <module-directory>solr/contrib/clustering</module-directory>
+    <relative-top-level>../../../..</relative-top-level>
+    <module-path>${relative-top-level}/${module-directory}</module-path>
+  </properties>
+  <scm>
+    <connection>scm:git:${vc-anonymous-base-url}</connection>
+    <developerConnection>scm:git:${vc-dev-base-url}</developerConnection>
+    <url>${vc-browse-base-url};f=${module-directory}</url>
+  </scm>
+  <dependencies>
+    <dependency>
+      <!-- lucene-test-framework dependency must be declared before lucene-core -->
+      <!-- This dependency cannot be put into solr-parent, because local        -->
+      <!-- dependencies are always ordered before inherited dependencies.       -->
+      <groupId>org.apache.lucene</groupId>
+      <artifactId>lucene-test-framework</artifactId>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.solr</groupId>
+      <artifactId>solr-test-framework</artifactId>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.lucene</groupId>
+      <artifactId>lucene-analyzers-common</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.lucene</groupId>
+      <artifactId>lucene-analyzers-kuromoji</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.lucene</groupId>
+      <artifactId>lucene-analyzers-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-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.tdunning</groupId>
+      <artifactId>t-digest</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>commons-cli</groupId>
+      <artifactId>commons-cli</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>commons-codec</groupId>
+      <artifactId>commons-codec</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>commons-collections</groupId>
+      <artifactId>commons-collections</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>commons-configuration</groupId>
+      <artifactId>commons-configuration</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>joda-time</groupId>
+      <artifactId>joda-time</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>log4j</groupId>
+      <artifactId>log4j</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-exec</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</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.htrace</groupId>
+      <artifactId>htrace-core</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.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.jackson</groupId>
+      <artifactId>jackson-core-asl</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.codehaus.jackson</groupId>
+      <artifactId>jackson-mapper-asl</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-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.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.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>
+    <dependency>
+      <groupId>org.slf4j</groupId>
+      <artifactId>slf4j-log4j12</artifactId>
+      <optional>true</optional>
+    </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-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-clustering/6.5.1/solr-clustering-6.5.1.pom.asc
==============================================================================
--- dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-clustering/6.5.1/solr-clustering-6.5.1.pom.asc (added)
+++ dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-clustering/6.5.1/solr-clustering-6.5.1.pom.asc Fri Apr 21 11:50:09 2017
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v2
+
+iQIcBAABCAAGBQJY+d5uAAoJEPmME8+loTXYEmoP/24eC5I9JRnb52rdDfburi5K
+AplqCF5SsiCc95DESJNQNbH6rJQxog5HbgNHdnLEJXFgh98+hAkz9tHF2RzPelcS
+CMjh+BzFxU9F1p30vK1XtCs/f6yoQbNsjTl+f68bvKIDzdF73krlhb1dFklPTb7H
+dn8Vo5WRrikV+Hh0Q28jziQH3AoRlxmga4BzRalxthORKeOVzn1vxpnjU5Qx+EL0
+K/VJ1fforzjKYyVeWz5n9gWAxIKtxzxtGNlEijIkirzFeWxpbcZQ1/HdWNLIiytH
+gB3IXGe9WEUmN9lmyCK5gh7LAurtFyRNTXZvVlUEgWaZCNN7yJv4F2TrWnzSjoO7
+UZ1PlbSnZOnzTQoEoVOjgQtfZdKiEWnbxUyFFJGs8v5ec87E8Mz2XWYFtW34mOUO
+GK8QniEKMhqczRiKqcSEIoy0RcUH0QqxDVX0mXomQqnvQhU+sEqh7PNrIzReKy1d
+VY/hy+07C9CcppUjsY5FPHU8ZUXMR2sBlsrjyVn0DzOH7UnrkclMURxraj4ndEUD
+lmja/FkCUzrvN7hmMuGKNpdeO75wZ1mXZHE49NETbm4nht8YvuUT9B50xKpflVk6
+taYza/6ninZ7aZpQCpBdadQCRYRF+LDZCIhvn43id6Wfw2k0JSwUkZ7cU6PKv4aa
+jF4Jwx5HhM5lvPU0n6oU
+=0MSV
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-clustering/6.5.1/solr-clustering-6.5.1.pom.md5
==============================================================================
--- dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-clustering/6.5.1/solr-clustering-6.5.1.pom.md5 (added)
+++ dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-clustering/6.5.1/solr-clustering-6.5.1.pom.md5 Fri Apr 21 11:50:09 2017
@@ -0,0 +1 @@
+ef96d150fe4eb06cd06af739c0f3cf11
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-clustering/6.5.1/solr-clustering-6.5.1.pom.sha1
==============================================================================
--- dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-clustering/6.5.1/solr-clustering-6.5.1.pom.sha1 (added)
+++ dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-clustering/6.5.1/solr-clustering-6.5.1.pom.sha1 Fri Apr 21 11:50:09 2017
@@ -0,0 +1 @@
+a047af77ff98ace94fb0168795afa96d23e48c9f
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-clustering/maven-metadata.xml
==============================================================================
--- dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-clustering/maven-metadata.xml (added)
+++ dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-clustering/maven-metadata.xml Fri Apr 21 11:50:09 2017
@@ -0,0 +1,12 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<metadata>
+  <groupId>org.apache.solr</groupId>
+  <artifactId>solr-clustering</artifactId>
+  <version>6.5.1</version>
+  <versioning>
+    <versions>
+      <version>6.5.1</version>
+    </versions>
+    <lastUpdated>20170421102610</lastUpdated>
+  </versioning>
+</metadata>

Added: dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-clustering/maven-metadata.xml.md5
==============================================================================
--- dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-clustering/maven-metadata.xml.md5 (added)
+++ dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-clustering/maven-metadata.xml.md5 Fri Apr 21 11:50:09 2017
@@ -0,0 +1 @@
+6a7361fbeee5c2eb2fb941c8a06e5827
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-clustering/maven-metadata.xml.sha1
==============================================================================
--- dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-clustering/maven-metadata.xml.sha1 (added)
+++ dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-clustering/maven-metadata.xml.sha1 Fri Apr 21 11:50:09 2017
@@ -0,0 +1 @@
+1e1ee4c511c90919618efd9acbd0368e1c0ec2f0
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-core/6.5.1/solr-core-6.5.1-javadoc.jar
==============================================================================
Binary file - no diff available.

Propchange: dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-core/6.5.1/solr-core-6.5.1-javadoc.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-core/6.5.1/solr-core-6.5.1-javadoc.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-core/6.5.1/solr-core-6.5.1-javadoc.jar.asc (added)
+++ dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-core/6.5.1/solr-core-6.5.1-javadoc.jar.asc Fri Apr 21 11:50:09 2017
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v2
+
+iQIcBAABCAAGBQJY+d5vAAoJEPmME8+loTXYRxsP/2ZAU6fYgCzzxVmNOileBrTq
+1uZCFCUcD0dLao3Lh03IHNL4Oq/B4xn1Jse222us8Q9vykdm8kmPTVEf/QiaV/Ek
+TEKHvcK2AUjBEP1AYXA5mE+ZqpHsrWT2pLI3zz7dpZgkurskkHo9zXrDPH4YreP6
+1koUrSkVElTn85iDvY+e/gugQoy4pxjMPCG05zAcdsxfMM49UA1log/TUyoJkEDW
+VUTgnYkOTsGEPioQM8JPQoC4+8CfcxTv7tkZuFtka9hUWkWcCq/a0+zyxosBN8Qa
+JudAf0cURp0lxUQw4jJAzLEUNCvLiY2Q7GQ0Znb3Vv79AcJ+yw2BbgEZexRDAUIk
+QhW4PC76/XVIxOrioRX/YnJTx4wZBY7ugdvo1GQFKTnXyQjd9cqbVyxEoSqxKf++
+AVPWwKaqvx1DG1mAa+WdP7I2GbhEY7ROFb6qFNz9fEqfxx1bApoKi+5ad58K1NId
+D7Y3hlUudQl6rCwVJXj/lnEN3FKir2tcVhyY/ylB5qKKFB+1xGUz/wwKL1uts7Tv
+sp8+dPvA04CK48EGvDFXEZczdUm7Ut+vE8pLFfad/UDbrKsgoWHtX3V8bzx1H2zd
+MdL1jt59YJT1j+X6g3Tgt+dICNj1UjtNRd1EvLMgRV7vdeFDQaZxNV4kUspE9pHb
+7xMDM/6M8szpqK7Pio2o
+=oIdl
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-core/6.5.1/solr-core-6.5.1-javadoc.jar.md5
==============================================================================
--- dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-core/6.5.1/solr-core-6.5.1-javadoc.jar.md5 (added)
+++ dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-core/6.5.1/solr-core-6.5.1-javadoc.jar.md5 Fri Apr 21 11:50:09 2017
@@ -0,0 +1 @@
+b94b00b36cfc652f09c92cb08a257342
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-core/6.5.1/solr-core-6.5.1-javadoc.jar.sha1
==============================================================================
--- dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-core/6.5.1/solr-core-6.5.1-javadoc.jar.sha1 (added)
+++ dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-core/6.5.1/solr-core-6.5.1-javadoc.jar.sha1 Fri Apr 21 11:50:09 2017
@@ -0,0 +1 @@
+fb5fd7d4c6de04cdbefd5cefc73b4bce31b8eb3b
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-core/6.5.1/solr-core-6.5.1-sources.jar
==============================================================================
Binary file - no diff available.

Propchange: dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-core/6.5.1/solr-core-6.5.1-sources.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-core/6.5.1/solr-core-6.5.1-sources.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-core/6.5.1/solr-core-6.5.1-sources.jar.asc (added)
+++ dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-core/6.5.1/solr-core-6.5.1-sources.jar.asc Fri Apr 21 11:50:09 2017
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v2
+
+iQIcBAABCAAGBQJY+d5wAAoJEPmME8+loTXYhT4QAKcz7E5nShnvVybAshYII8AS
+xBnxqEB1hIjJGGtMUIDoeyejjGTcT47oeTn43SfUgAO6yvgmybZC3o4OmdJcBIdD
+P4AqdStkrw9vm/336vU21jbzbFKZK0Bg6OGJckFdgczwzi77n/FlP9DPIlukOEb4
+RWGJpAcbGl9aYtNULYomnoZgELvqaRn3urDbuMyA7rKjaAccKZwTXGBhZgYj1ozk
+zO6HMNuVZbGWGSDiJy0h4WweiABGsUms4WX88JEpXEJfy73FQtMJ5dq4/DZ4VijG
+iVzaFWN2CUUxlt0F2Xu3Lw+iz1N0FNcqbJXHmAr/DNqI2ZgJ4kIUWwXBOYcV6mt8
+BMCOmqp2QKy6QGa54WeqlvetikS151HkONKU8XW4Ym4gCpWVTdLQvgy3/J/exlSu
+6g0epskEV43RGi+vKQMeJapZzIrPcxjYUbzPQX1uYSKylPZMka82Bod9Qdkd04yT
+zPjPHSwz6xfFRdrAlntreGSMU5T4PX/5FwFx5E4KWdi3x6inHVCv26+XR26IOPyt
+zq9XRu96IHxReov24rAjkufn69IDhBrmM1F3tBobRJAwMKc9z8VgdhS5tEBEPB4U
+1rpIildZmjMU6tgS1P/Oj1WKF5BPVe00wKV4+r54iT3W3sxON5DhwtjE9LvVBnUU
+YTf0JGCFQfhQmCzxuoeH
+=4agQ
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-core/6.5.1/solr-core-6.5.1-sources.jar.md5
==============================================================================
--- dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-core/6.5.1/solr-core-6.5.1-sources.jar.md5 (added)
+++ dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-core/6.5.1/solr-core-6.5.1-sources.jar.md5 Fri Apr 21 11:50:09 2017
@@ -0,0 +1 @@
+1f3592d25bac52a7eab6ed9f3370f3e0
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-core/6.5.1/solr-core-6.5.1-sources.jar.sha1
==============================================================================
--- dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-core/6.5.1/solr-core-6.5.1-sources.jar.sha1 (added)
+++ dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-core/6.5.1/solr-core-6.5.1-sources.jar.sha1 Fri Apr 21 11:50:09 2017
@@ -0,0 +1 @@
+2286294b7abab302d8c7345c72d1dbf3f90b4e9d
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-core/6.5.1/solr-core-6.5.1.jar
==============================================================================
Binary file - no diff available.

Propchange: dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-core/6.5.1/solr-core-6.5.1.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-core/6.5.1/solr-core-6.5.1.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-core/6.5.1/solr-core-6.5.1.jar.asc (added)
+++ dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-core/6.5.1/solr-core-6.5.1.jar.asc Fri Apr 21 11:50:09 2017
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v2
+
+iQIcBAABCAAGBQJY+d5wAAoJEPmME8+loTXYMogQALVZHzJtEA3JDJLU5oMGyf/P
+I5d3RdeKZwkPtwu1LnIdL0ARa67YMSBq7OBhzowu5Tyi/ugvMbHK8Gkd4XXf8Bbe
+a/cpgbnOmuENhrLu/l4zUmwXQf0No7kMWe/javr5+lnEUzbUZrVeemuCLY1/HmiZ
+NtFZ9siC7PagttoYIM4p+QvRj1HmDCXWLAZ3BN3pKVmdb3AO5hv3vBXuckxChybr
+J7/L79RLLfjH4wVVHLcIS7wCu9i6lrxwqAkAhXiOAg8CHI0COkLfFxJg4i8UoKK+
+RGzHPdgvkWxrYFfWpojs0bY44/RDuz4ZfGtB9zvlhCdE3u0NeFDktO3aGbmbN1LR
+9u78JAJm9ULgwzT7qyFjXAUC+xWEQVeU6eYufqxIdU6rAGqvRvI4vhjyP0KfF3gJ
+hgnwQ2EWRZ098hz0IozvGRbe2yLVExL+eqbSmqr6juAICnGrgKQ25ek85qNw3QtJ
+2bmTvYdNVd4j9RZdcItYZz3/xKHlW6B0k66ra0NRcsnK2TGRzXmg5haMT0uoTiN0
+slg4p8Q+7zUIpZfZjwXXRiBcoxoaj42g+eepnIlAqyGWXEoiV3PunWxH1q70MRWd
+wsxEgb9eRcyCb86sZ5tfhJtA/MOp8SVPfeI12vK51Y5E1r44jsBl6Vhn49RheP8C
+BvzO1C0mUdv9wle0BN/1
+=4Q4S
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-core/6.5.1/solr-core-6.5.1.jar.md5
==============================================================================
--- dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-core/6.5.1/solr-core-6.5.1.jar.md5 (added)
+++ dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-core/6.5.1/solr-core-6.5.1.jar.md5 Fri Apr 21 11:50:09 2017
@@ -0,0 +1 @@
+00182c0b2eafd9e738a01a3acbee9277
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-core/6.5.1/solr-core-6.5.1.jar.sha1
==============================================================================
--- dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-core/6.5.1/solr-core-6.5.1.jar.sha1 (added)
+++ dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-core/6.5.1/solr-core-6.5.1.jar.sha1 Fri Apr 21 11:50:09 2017
@@ -0,0 +1 @@
+f0fb2a1c0600f88b399f9de170814a022923faaa
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-core/6.5.1/solr-core-6.5.1.pom
==============================================================================
--- dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-core/6.5.1/solr-core-6.5.1.pom (added)
+++ dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-core/6.5.1/solr-core-6.5.1.pom Fri Apr 21 11:50:09 2017
@@ -0,0 +1,452 @@
+<!--
+  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/maven-v4_0_0.xsd">
+  <modelVersion>4.0.0</modelVersion>
+  <parent>
+    <groupId>org.apache.solr</groupId>
+    <artifactId>solr-parent</artifactId>
+    <version>6.5.1</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-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-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.tdunning</groupId>
+      <artifactId>t-digest</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>commons-cli</groupId>
+      <artifactId>commons-cli</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>commons-codec</groupId>
+      <artifactId>commons-codec</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>commons-collections</groupId>
+      <artifactId>commons-collections</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>commons-configuration</groupId>
+      <artifactId>commons-configuration</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>joda-time</groupId>
+      <artifactId>joda-time</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>log4j</groupId>
+      <artifactId>log4j</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-exec</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</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.htrace</groupId>
+      <artifactId>htrace-core</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.zookeeper</groupId>
+      <artifactId>zookeeper</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.codehaus.jackson</groupId>
+      <artifactId>jackson-core-asl</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.codehaus.jackson</groupId>
+      <artifactId>jackson-mapper-asl</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-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.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.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.slf4j</groupId>
+      <artifactId>slf4j-log4j12</artifactId>
+      <optional>true</optional>
+    </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>

Added: dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-core/6.5.1/solr-core-6.5.1.pom.asc
==============================================================================
--- dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-core/6.5.1/solr-core-6.5.1.pom.asc (added)
+++ dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-core/6.5.1/solr-core-6.5.1.pom.asc Fri Apr 21 11:50:09 2017
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v2
+
+iQIcBAABCAAGBQJY+d5xAAoJEPmME8+loTXYokYQAKx6VzvSRyNduyQSq6iMi7Ct
+HyXOeiq1sewlcmjn+TfS2TbFYoBhDhF4UPKDw7rx+xG4UL1+ktFw8iXDwX5G8VMf
+DTt9sNkOyZAYt8/yWG3twB9qC79ZccTbkrFe8jfO6WSXMMkeHVOqePqslQbg3U8Y
+vgzZLwED0ry37i7qOQdrPrVwWc4cf1cFntguNV5Zicu2C4sFiKeDfu4HKQaTaW/w
+7FTW1rTWcfq1Vtk+dRdGVFMECZhXy6UaqIfFsh/+vklAaenUDqc5W4WW4sBxwG9R
+EBg8nr8ss9WDs7tQTx+0Z0+Tlh7XwRGg85Wv65xyecxI02I81UBSqVUwesArf3mT
+ugPd5lrgqvDnNhAWAQRp4xhjHNdG1jIBwOUGHvPlQFr/r9tdKt9HQFu0LETTFnOX
+4ZVOVCsM6yoJyl/DLfBUw1VxqrVMsxBIiHLXIDvoVvlXEdzNMZrKQuIobP7DNE7t
+9iygMLhQPk3I6g3VgpsKz35oEr0R86YY6CzPuTSSMc2cxx/VyokeMIvVsSnXhi3z
+S8xoxhFlJylZPYjXaZDgDty7f5xw8/ef3VD2GN6PtJ8e3jQ3q+lulEXqFFpJd1wN
+g3uV/qjzBNWgS/1yGtdUKvMcjvE93eV+uHpS0q2ZD9zLyFmOxAb1WQ81bF5yRQbz
+M7nXaXEMP22qVWIqGuMn
+=j7Sd
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-core/6.5.1/solr-core-6.5.1.pom.md5
==============================================================================
--- dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-core/6.5.1/solr-core-6.5.1.pom.md5 (added)
+++ dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-core/6.5.1/solr-core-6.5.1.pom.md5 Fri Apr 21 11:50:09 2017
@@ -0,0 +1 @@
+3d3ec1fecbf11abee535e0b8e3a55c16
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-core/6.5.1/solr-core-6.5.1.pom.sha1
==============================================================================
--- dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-core/6.5.1/solr-core-6.5.1.pom.sha1 (added)
+++ dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-core/6.5.1/solr-core-6.5.1.pom.sha1 Fri Apr 21 11:50:09 2017
@@ -0,0 +1 @@
+d669485f72ea3226ca611d2e58f7896bd9db19c2
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-core/maven-metadata.xml
==============================================================================
--- dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-core/maven-metadata.xml (added)
+++ dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-core/maven-metadata.xml Fri Apr 21 11:50:09 2017
@@ -0,0 +1,12 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<metadata>
+  <groupId>org.apache.solr</groupId>
+  <artifactId>solr-core</artifactId>
+  <version>6.5.1</version>
+  <versioning>
+    <versions>
+      <version>6.5.1</version>
+    </versions>
+    <lastUpdated>20170421102557</lastUpdated>
+  </versioning>
+</metadata>

Added: dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-core/maven-metadata.xml.md5
==============================================================================
--- dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-core/maven-metadata.xml.md5 (added)
+++ dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-core/maven-metadata.xml.md5 Fri Apr 21 11:50:09 2017
@@ -0,0 +1 @@
+fd53680516e00bc6e5f1a80c9cc166a4
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-core/maven-metadata.xml.sha1
==============================================================================
--- dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-core/maven-metadata.xml.sha1 (added)
+++ dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-core/maven-metadata.xml.sha1 Fri Apr 21 11:50:09 2017
@@ -0,0 +1 @@
+2eccce00b66dac6d2ad8f370e76f3d06f724bee5
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-dataimporthandler-extras/6.5.1/solr-dataimporthandler-extras-6.5.1-javadoc.jar
==============================================================================
Binary file - no diff available.

Propchange: dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-dataimporthandler-extras/6.5.1/solr-dataimporthandler-extras-6.5.1-javadoc.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-dataimporthandler-extras/6.5.1/solr-dataimporthandler-extras-6.5.1-javadoc.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-dataimporthandler-extras/6.5.1/solr-dataimporthandler-extras-6.5.1-javadoc.jar.asc (added)
+++ dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-dataimporthandler-extras/6.5.1/solr-dataimporthandler-extras-6.5.1-javadoc.jar.asc Fri Apr 21 11:50:09 2017
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v2
+
+iQIcBAABCAAGBQJY+d5xAAoJEPmME8+loTXYKTYQAN/CsQBONvgJni9D5q0dRDrR
+e2TIqaSt8IERXxon7WrMqeNXsaqFEZ5pR0oMKBLZrAexZ3MfgX8nvOt7XuZjAC0A
+2NQHZ5UBHCqquSejmGY4sCnxBEeTmMuqInsyu9vmRc/4VCleDplvE2RBRo80hEXp
+D43CHwJNKgpoBavy73Dg0v7WFtMKgbS6r5h2e/9xfyZ5WsrtHTpFyZs5tVOXINzH
+M9GxdEtVq7xnQ3Z4P5Cakmtln69aFYSE2W3EnD1nrd5aTziNzoLA2SqOIBGFp7P1
+c6keYsnh7DNd9iOAZgwN1Q/eu5PlYaqisBTIJINXftzDSra2qY8A1aCpEwcNU4Dk
+MDHdiZhYtYIV3Bto9bDew1dLyocd5BNE0ffOH2RoVismPNXgmcpUB7Rr3SDR++OP
+1fJG+q4TgJxEvQHmRXgjkGTOh29zyWja++G8bKwyprr/JE8jdJxqUdNM3lENUzVg
+XBnKYuNYimKjQ+QyhWjcDwQG9d6g+SdaqP4uBV53U1fIZkq1Iuw1XKbK8wP1Uv6x
+Y7KIQ0eABPTSoBKbgflCjFAl6YsyT7QfH1eu1C1f23RUr1xQTmtcnqENuiNVpCfB
+BhyxgrpIkgfnFICnpSRZZBrlEr2t77sKJTIqNOzApMlrVy6Z1p6iv4b5+61XhUNU
+As1zT5Ewksx+PFXYdo+S
+=frhn
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-dataimporthandler-extras/6.5.1/solr-dataimporthandler-extras-6.5.1-javadoc.jar.md5
==============================================================================
--- dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-dataimporthandler-extras/6.5.1/solr-dataimporthandler-extras-6.5.1-javadoc.jar.md5 (added)
+++ dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-dataimporthandler-extras/6.5.1/solr-dataimporthandler-extras-6.5.1-javadoc.jar.md5 Fri Apr 21 11:50:09 2017
@@ -0,0 +1 @@
+6ccf4f9e49bf4ecacfa87c393e14d27a
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-dataimporthandler-extras/6.5.1/solr-dataimporthandler-extras-6.5.1-javadoc.jar.sha1
==============================================================================
--- dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-dataimporthandler-extras/6.5.1/solr-dataimporthandler-extras-6.5.1-javadoc.jar.sha1 (added)
+++ dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-dataimporthandler-extras/6.5.1/solr-dataimporthandler-extras-6.5.1-javadoc.jar.sha1 Fri Apr 21 11:50:09 2017
@@ -0,0 +1 @@
+1925e20a3f9f1ebd521e02cb0859b11ac8c84676
\ No newline at end of file