You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by jb...@apache.org on 2017/04/07 19:19:36 UTC

svn commit: r19082 [19/25] - in /dev/lucene/lucene-solr-6.5.1-RC1-revfa827447f5829fe729b779faed675775e3c0b7c8: ./ 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-RC1-revfa827447f5829fe729b779faed675775e3c0b7c8/solr/maven/org/apache/solr/solr-cell/6.5.1/solr-cell-6.5.1.pom
==============================================================================
--- dev/lucene/lucene-solr-6.5.1-RC1-revfa827447f5829fe729b779faed675775e3c0b7c8/solr/maven/org/apache/solr/solr-cell/6.5.1/solr-cell-6.5.1.pom (added)
+++ dev/lucene/lucene-solr-6.5.1-RC1-revfa827447f5829fe729b779faed675775e3c0b7c8/solr/maven/org/apache/solr/solr-cell/6.5.1/solr-cell-6.5.1.pom Fri Apr  7 19:19:32 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>

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

Added: dev/lucene/lucene-solr-6.5.1-RC1-revfa827447f5829fe729b779faed675775e3c0b7c8/solr/maven/org/apache/solr/solr-cell/6.5.1/solr-cell-6.5.1.pom.asc
==============================================================================
--- dev/lucene/lucene-solr-6.5.1-RC1-revfa827447f5829fe729b779faed675775e3c0b7c8/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-RC1-revfa827447f5829fe729b779faed675775e3c0b7c8/solr/maven/org/apache/solr/solr-cell/6.5.1/solr-cell-6.5.1.pom.asc Fri Apr  7 19:19:32 2017
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Comment: GPGTools - https://gpgtools.org
+
+iQIcBAABCgAGBQJY59AVAAoJEKM20MDuZMseU3AQAOB++QhwOvtW2Pn4iaywbv1P
+zVaoWLWS7/9ZISpLdK0yrSxx1POXafQUaM249nognMTxAAMEyEq7m2piS6N3TjL6
+MQdo3CU+igxUubyFKSl/rDlRXEQqFz5YSOdgUJ02mTc7WPyuouu+0HKC0cRAlOW9
+59jykr+HNIykhy43RnqGiiGW62xUsCQNlHh2rKNytydPhBot2UyXpN5BJXTf/Kyt
+Te713a1i+nl90q8Boj0YRo4ycZHnylWGIUh0NnsI/rHSHLKOZjSTLA2SffTaYGap
+I4bytRe4udGyHLyCHamjkOuQZxCYXk0pRgdb5J6AKPDfvCv+FUxF2qn6Gnt8r58+
+3qQJZhAI8mKQnjJbbhAbifa6DfAmvqf40rfXccpPqKDYJvqubxoM8ldYvuZ8gKO7
+SdTzJrNlFNe5NwtavLWOHno95Wmg+VCkFjVSVKImMnSSvn9eey0dBPlWF7YPTVGr
+BPMz2AIHzuuATuUtIoA+V70MLFTO0giosUhzYV2aH1vhR9N1xN/ANVv5bcwxCkF7
+R02lXu4ZFS5n0kePZTFJ7caRbQ988j06Z2V+GSswjkIZhAGY8Do+Oes+LmLOp00l
+DngvVly4t/fB+8X/aOFWOmFm4XLI2Bi/9IaaQnh1a4dzucqiW2gijO2BZrG8lLWP
+2icjQqwEX1Wh71xFyrBB
+=XWUG
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-6.5.1-RC1-revfa827447f5829fe729b779faed675775e3c0b7c8/solr/maven/org/apache/solr/solr-cell/6.5.1/solr-cell-6.5.1.pom.md5
==============================================================================
--- dev/lucene/lucene-solr-6.5.1-RC1-revfa827447f5829fe729b779faed675775e3c0b7c8/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-RC1-revfa827447f5829fe729b779faed675775e3c0b7c8/solr/maven/org/apache/solr/solr-cell/6.5.1/solr-cell-6.5.1.pom.md5 Fri Apr  7 19:19:32 2017
@@ -0,0 +1 @@
+02e2602b33ace5b407acdad0c4611968
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.5.1-RC1-revfa827447f5829fe729b779faed675775e3c0b7c8/solr/maven/org/apache/solr/solr-cell/6.5.1/solr-cell-6.5.1.pom.sha1
==============================================================================
--- dev/lucene/lucene-solr-6.5.1-RC1-revfa827447f5829fe729b779faed675775e3c0b7c8/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-RC1-revfa827447f5829fe729b779faed675775e3c0b7c8/solr/maven/org/apache/solr/solr-cell/6.5.1/solr-cell-6.5.1.pom.sha1 Fri Apr  7 19:19:32 2017
@@ -0,0 +1 @@
+fb15981ec1c0177032221b692c8c367339de60f1
\ No newline at end of file

Propchange: dev/lucene/lucene-solr-6.5.1-RC1-revfa827447f5829fe729b779faed675775e3c0b7c8/solr/maven/org/apache/solr/solr-cell/6.5.1/solr-cell-6.5.1.pom.sha1
------------------------------------------------------------------------------
    svn:eol-style = native

Added: dev/lucene/lucene-solr-6.5.1-RC1-revfa827447f5829fe729b779faed675775e3c0b7c8/solr/maven/org/apache/solr/solr-cell/maven-metadata.xml
==============================================================================
--- dev/lucene/lucene-solr-6.5.1-RC1-revfa827447f5829fe729b779faed675775e3c0b7c8/solr/maven/org/apache/solr/solr-cell/maven-metadata.xml (added)
+++ dev/lucene/lucene-solr-6.5.1-RC1-revfa827447f5829fe729b779faed675775e3c0b7c8/solr/maven/org/apache/solr/solr-cell/maven-metadata.xml Fri Apr  7 19:19:32 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>20170407174430</lastUpdated>
+  </versioning>
+</metadata>

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

Added: dev/lucene/lucene-solr-6.5.1-RC1-revfa827447f5829fe729b779faed675775e3c0b7c8/solr/maven/org/apache/solr/solr-cell/maven-metadata.xml.md5
==============================================================================
--- dev/lucene/lucene-solr-6.5.1-RC1-revfa827447f5829fe729b779faed675775e3c0b7c8/solr/maven/org/apache/solr/solr-cell/maven-metadata.xml.md5 (added)
+++ dev/lucene/lucene-solr-6.5.1-RC1-revfa827447f5829fe729b779faed675775e3c0b7c8/solr/maven/org/apache/solr/solr-cell/maven-metadata.xml.md5 Fri Apr  7 19:19:32 2017
@@ -0,0 +1 @@
+c8eec5e482021ab19ad733780952423f
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.5.1-RC1-revfa827447f5829fe729b779faed675775e3c0b7c8/solr/maven/org/apache/solr/solr-cell/maven-metadata.xml.sha1
==============================================================================
--- dev/lucene/lucene-solr-6.5.1-RC1-revfa827447f5829fe729b779faed675775e3c0b7c8/solr/maven/org/apache/solr/solr-cell/maven-metadata.xml.sha1 (added)
+++ dev/lucene/lucene-solr-6.5.1-RC1-revfa827447f5829fe729b779faed675775e3c0b7c8/solr/maven/org/apache/solr/solr-cell/maven-metadata.xml.sha1 Fri Apr  7 19:19:32 2017
@@ -0,0 +1 @@
+1d4fc9cb11662a571d428b6a54e228e3e3b78ebf
\ No newline at end of file

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

Added: dev/lucene/lucene-solr-6.5.1-RC1-revfa827447f5829fe729b779faed675775e3c0b7c8/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-RC1-revfa827447f5829fe729b779faed675775e3c0b7c8/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-RC1-revfa827447f5829fe729b779faed675775e3c0b7c8/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-RC1-revfa827447f5829fe729b779faed675775e3c0b7c8/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-RC1-revfa827447f5829fe729b779faed675775e3c0b7c8/solr/maven/org/apache/solr/solr-clustering/6.5.1/solr-clustering-6.5.1-javadoc.jar.asc Fri Apr  7 19:19:32 2017
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Comment: GPGTools - https://gpgtools.org
+
+iQIcBAABCgAGBQJY59AVAAoJEKM20MDuZMseEYEP/AhAMC5Fb8zBxuhO07Po0rvj
+4uoHRITaf8F/GsLp3W2rKJcZzDhdIf7BUa3ok0jlqZiig2CYPY3H3mNWqwFAeq9L
+GWSryExJV2ih7eQGPU831J11L9cZZEOwKjUgckOb8AJk6kiG2+0AzR9kTqc/gb6O
+eTjuyNDhf54VbYqGAPxn5M/kEeSo5J9tm2/sryBOMD4wUcqNUhNdKPSFPG1LHDNe
+miib+uKmfaRzQwqvNEq0/Tldgni8E2u4E3IT8BXKtaA8b3KY4XtdfG1jYLF1zPho
++9GkahqZvBuXdAyYiaUxQYA1OWtb/ZTSGNhiqN4EhoJ9f6EA3NyCv8uUHdpsL/Z1
+kCRJ6vbLQa/GHL/KeNipo7dfXr1+XGRelz/EAgs1YkCG9mxez/VdO7wWqBkvSMFU
+6RZbBd9CngoUOh4ExeDVI7OGL+wlqadQcIQrnTfD9Nb6jxr4k5JOeVANeYA8Ahfc
+xxf3j/XddT4mdD7ETC3ISXdxsAegapN+MABoEH9ODALKtipnPN/6q0cO6mSEpfT+
+LjqUmIZZ64Z96KrUphyhn5rcV7HHJToi/PjHgMDgeIMdmJRWHaRHT77Uv/IQcI4k
+8a/EXanrmA8oll8sdeiM8JR+WET1Bg94XodLL+mxp/zbsvrufv5NGsR3qqB6mPBe
+wigkWEIh5xMWZ+QgCsXM
+=xzpt
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-6.5.1-RC1-revfa827447f5829fe729b779faed675775e3c0b7c8/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-RC1-revfa827447f5829fe729b779faed675775e3c0b7c8/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-RC1-revfa827447f5829fe729b779faed675775e3c0b7c8/solr/maven/org/apache/solr/solr-clustering/6.5.1/solr-clustering-6.5.1-javadoc.jar.md5 Fri Apr  7 19:19:32 2017
@@ -0,0 +1 @@
+e349efef77be4e87eedf5cbc91e99936
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.5.1-RC1-revfa827447f5829fe729b779faed675775e3c0b7c8/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-RC1-revfa827447f5829fe729b779faed675775e3c0b7c8/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-RC1-revfa827447f5829fe729b779faed675775e3c0b7c8/solr/maven/org/apache/solr/solr-clustering/6.5.1/solr-clustering-6.5.1-javadoc.jar.sha1 Fri Apr  7 19:19:32 2017
@@ -0,0 +1 @@
+59cfe296bbbd615e62e91045ba11c000a7c2b0cd
\ No newline at end of file

Propchange: dev/lucene/lucene-solr-6.5.1-RC1-revfa827447f5829fe729b779faed675775e3c0b7c8/solr/maven/org/apache/solr/solr-clustering/6.5.1/solr-clustering-6.5.1-javadoc.jar.sha1
------------------------------------------------------------------------------
    svn:eol-style = native

Added: dev/lucene/lucene-solr-6.5.1-RC1-revfa827447f5829fe729b779faed675775e3c0b7c8/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-RC1-revfa827447f5829fe729b779faed675775e3c0b7c8/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-RC1-revfa827447f5829fe729b779faed675775e3c0b7c8/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-RC1-revfa827447f5829fe729b779faed675775e3c0b7c8/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-RC1-revfa827447f5829fe729b779faed675775e3c0b7c8/solr/maven/org/apache/solr/solr-clustering/6.5.1/solr-clustering-6.5.1-sources.jar.asc Fri Apr  7 19:19:32 2017
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Comment: GPGTools - https://gpgtools.org
+
+iQIcBAABCgAGBQJY59AVAAoJEKM20MDuZMseXvEP/jEXmFwE5gAMNG/GwsuJj/BT
+lzbX2uzj7x+eWhaegLcfxrlO4SZQJtTxx4ECeq4vLNFSXvDyEf7vyZce9W7HAwrG
+FIpy2JrMLxPLFV35Kx8vwX3+hvmUthE3ryYqZ9iofSY/8k91MfzUAmf/AKQzTimi
+Ssxw1PpXVtoanzvzONHRPoBzLeOggAL/Nk0KF7wqjmQSwtRXNqlaMkVwgbBW1TPh
+s7KOvBLRzpyXhXt+zs1qraYVY9nHHaMMczzjqnYNd0LkW2LayL7CQ/YrnsWyUHcU
+/BaC3KnNwH3KZrsG3pNo6jlE51HpRQiORO0qvj5XTa28fdq4Om8kYliUxxy96Jb7
+c+9IGxXCVQ8TLyYq5jJRQ9hzgAGrgmydArYcFtQvi1y1IAAKwuwZsZqjyThRi/1G
++A2CFx8ZLXHDc1fe2CLbLlDhrO7ZtC8GHyJ0xBk0PUGz27hTC8zT93nsGRn7JVew
+BpbkeCdc1b/sekZoo08cqnAFJj1qvV64AAKwAjL0+V8M3NMJfQ0sgud4RMl6F3QE
+dkyYg9TQR6aa8S2rDQVf48o9tRVVfnlNykDvdAWtZ0swHXtdeO3wCCAnLJ6hvwtx
+5KAjPzL4E+fWGcG3yDAdS7hEI26oid0E+bv9OOxb3fwNc4sMt74UfoeHmfsSQBKN
+4q//SUQLpAWM6S7g4PXh
+=85qN
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-6.5.1-RC1-revfa827447f5829fe729b779faed675775e3c0b7c8/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-RC1-revfa827447f5829fe729b779faed675775e3c0b7c8/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-RC1-revfa827447f5829fe729b779faed675775e3c0b7c8/solr/maven/org/apache/solr/solr-clustering/6.5.1/solr-clustering-6.5.1-sources.jar.md5 Fri Apr  7 19:19:32 2017
@@ -0,0 +1 @@
+913405e940da748a0ed78375e1609bf9
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.5.1-RC1-revfa827447f5829fe729b779faed675775e3c0b7c8/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-RC1-revfa827447f5829fe729b779faed675775e3c0b7c8/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-RC1-revfa827447f5829fe729b779faed675775e3c0b7c8/solr/maven/org/apache/solr/solr-clustering/6.5.1/solr-clustering-6.5.1-sources.jar.sha1 Fri Apr  7 19:19:32 2017
@@ -0,0 +1 @@
+714a04fd2b495d201479a7332e1e2f84b009ae23
\ No newline at end of file

Propchange: dev/lucene/lucene-solr-6.5.1-RC1-revfa827447f5829fe729b779faed675775e3c0b7c8/solr/maven/org/apache/solr/solr-clustering/6.5.1/solr-clustering-6.5.1-sources.jar.sha1
------------------------------------------------------------------------------
    svn:eol-style = native

Added: dev/lucene/lucene-solr-6.5.1-RC1-revfa827447f5829fe729b779faed675775e3c0b7c8/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-RC1-revfa827447f5829fe729b779faed675775e3c0b7c8/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-RC1-revfa827447f5829fe729b779faed675775e3c0b7c8/solr/maven/org/apache/solr/solr-clustering/6.5.1/solr-clustering-6.5.1.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-6.5.1-RC1-revfa827447f5829fe729b779faed675775e3c0b7c8/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-RC1-revfa827447f5829fe729b779faed675775e3c0b7c8/solr/maven/org/apache/solr/solr-clustering/6.5.1/solr-clustering-6.5.1.jar.asc Fri Apr  7 19:19:32 2017
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Comment: GPGTools - https://gpgtools.org
+
+iQIcBAABCgAGBQJY59AVAAoJEKM20MDuZMseF8wP/isqsF2SdkNLmPfJP6/PfGGb
+yprYOpMYcqvp3DAI4yhRiasHixgz7JCIoA3nv4hWfFit8x/X4MET9FlEwfxECmeM
+hDflnfOrNMd81mSztrjq700NPkjadwgpj3OplFn98yAkJyk5PHTnkDGfZ+nRfVtw
+M4SXbZzp+iJPHPgfhIko+VgwQTgAolBYSutcTf+D9DNED7a/3bnu5UkZT9B0d9vl
+E+8YL4PCfZBlH7QGToLNALTULX+66JhLBHYvCZdR4PUB2JmGAST8khrhA8gb6NBu
+7vduC95BuGHEkmeOhmlCsmJQ1cf/VD5N2Y8fGwyW7D/k0ne8GJwMM2+wSq8Nb4Jc
+lj9NJGav3j3lcSzlZ6Q0TppuGx3XIcmPDTpS9/Tzn2U/kPToJrzDxWrahIOMEnpo
+9m7huPZdnw07fjJBbo+skryFJXAIeG7nv5nXrvrdlAHHGENMGhkJCPow6358Q4Yu
+6TJNDmWhHHeiSt2qtR/jgKB/ZHmIhKoo1cLokN3rh/la0T/LdzQjxihmuLT/RhAA
+sA32qJHJFBG3o/tvCufowpouUjFELbS+FmideqBHFzdp0i9X/I7y/tsqnzNPi5o6
+DO9WsAD/JwWXZ/fxjtHZEiithuHaAu/WDy0J09VJ5fOg0DhBQNSmzflZbe2See21
+S0GtBbCXf0hsGH8BlETI
+=Nd/k
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-6.5.1-RC1-revfa827447f5829fe729b779faed675775e3c0b7c8/solr/maven/org/apache/solr/solr-clustering/6.5.1/solr-clustering-6.5.1.jar.md5
==============================================================================
--- dev/lucene/lucene-solr-6.5.1-RC1-revfa827447f5829fe729b779faed675775e3c0b7c8/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-RC1-revfa827447f5829fe729b779faed675775e3c0b7c8/solr/maven/org/apache/solr/solr-clustering/6.5.1/solr-clustering-6.5.1.jar.md5 Fri Apr  7 19:19:32 2017
@@ -0,0 +1 @@
+0e293adfb20d86d8a14ec6cf72996599
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.5.1-RC1-revfa827447f5829fe729b779faed675775e3c0b7c8/solr/maven/org/apache/solr/solr-clustering/6.5.1/solr-clustering-6.5.1.jar.sha1
==============================================================================
--- dev/lucene/lucene-solr-6.5.1-RC1-revfa827447f5829fe729b779faed675775e3c0b7c8/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-RC1-revfa827447f5829fe729b779faed675775e3c0b7c8/solr/maven/org/apache/solr/solr-clustering/6.5.1/solr-clustering-6.5.1.jar.sha1 Fri Apr  7 19:19:32 2017
@@ -0,0 +1 @@
+574e8795f81c4c2a05bde843f0534981f14e4250
\ No newline at end of file

Propchange: dev/lucene/lucene-solr-6.5.1-RC1-revfa827447f5829fe729b779faed675775e3c0b7c8/solr/maven/org/apache/solr/solr-clustering/6.5.1/solr-clustering-6.5.1.jar.sha1
------------------------------------------------------------------------------
    svn:eol-style = native

Added: dev/lucene/lucene-solr-6.5.1-RC1-revfa827447f5829fe729b779faed675775e3c0b7c8/solr/maven/org/apache/solr/solr-clustering/6.5.1/solr-clustering-6.5.1.pom
==============================================================================
--- dev/lucene/lucene-solr-6.5.1-RC1-revfa827447f5829fe729b779faed675775e3c0b7c8/solr/maven/org/apache/solr/solr-clustering/6.5.1/solr-clustering-6.5.1.pom (added)
+++ dev/lucene/lucene-solr-6.5.1-RC1-revfa827447f5829fe729b779faed675775e3c0b7c8/solr/maven/org/apache/solr/solr-clustering/6.5.1/solr-clustering-6.5.1.pom Fri Apr  7 19:19:32 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>

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

Added: dev/lucene/lucene-solr-6.5.1-RC1-revfa827447f5829fe729b779faed675775e3c0b7c8/solr/maven/org/apache/solr/solr-clustering/6.5.1/solr-clustering-6.5.1.pom.asc
==============================================================================
--- dev/lucene/lucene-solr-6.5.1-RC1-revfa827447f5829fe729b779faed675775e3c0b7c8/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-RC1-revfa827447f5829fe729b779faed675775e3c0b7c8/solr/maven/org/apache/solr/solr-clustering/6.5.1/solr-clustering-6.5.1.pom.asc Fri Apr  7 19:19:32 2017
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Comment: GPGTools - https://gpgtools.org
+
+iQIcBAABCgAGBQJY59AVAAoJEKM20MDuZMsei5sQALpkGrhp28ZdZEPEDPrP1fOw
+AR0KIgyYOtnm6j+Y4gzhzvQGWWQSyl43+JAZyobodPiTZBHWg76K7K1k+16LZ2Td
+O0WXKhtCTDACflLZCCvom8gtsxDX59ZrHgNElTTZFdlsPHWZYC4oEwUmmvYrf2/W
+GfZvI8lM0W9iwUTJZYxARixzGynEfFnfSsdFQgj0bb4mjFWqvHwDtizneWZRJt6Y
+yF7cP4kJ+IguLneKr8CbY9ZBlIm5oU0UH/kjz5fpmEbzKrXPAroQdqBsOvaQiLbb
+FoMvU04uspzsbbYIVcA5lD7SimjpQ8WkMwP9lJRXJYai5qWD0mREexL3IWU9oVyu
+Y8fTJzx5gF0OzNAhyUH6ddkRmZFgGOch9M18t9AbtHCQ25oygZh1+nV6R2KJ3sRi
+nUgix/eKQvHQDAKnmg/6v5Rbl4NEfKepC1DfAYnIerknfV9lRni0GiI/WCyM050L
+r8WDLUU9v+Cx8jV2rLOvHQJhkczvnjBRZK24xOH/GE35hoJlpmUxdePoSEzIPIZ0
+SqPYabP59WmUskW6OS7QI3cHBMP3qCy/5QcH72U0BIePuIRYe2enZS+u/HJcBd8+
+dQVUUS1/bOisZdR0zhFBg2W+BjQ/hb63rqNEXu+xNNWYQMvl0ktwUVW0fOXdT/+G
+UMppAYHO8ZWs4tGboFh7
+=j5BY
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-6.5.1-RC1-revfa827447f5829fe729b779faed675775e3c0b7c8/solr/maven/org/apache/solr/solr-clustering/6.5.1/solr-clustering-6.5.1.pom.md5
==============================================================================
--- dev/lucene/lucene-solr-6.5.1-RC1-revfa827447f5829fe729b779faed675775e3c0b7c8/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-RC1-revfa827447f5829fe729b779faed675775e3c0b7c8/solr/maven/org/apache/solr/solr-clustering/6.5.1/solr-clustering-6.5.1.pom.md5 Fri Apr  7 19:19:32 2017
@@ -0,0 +1 @@
+ef96d150fe4eb06cd06af739c0f3cf11
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.5.1-RC1-revfa827447f5829fe729b779faed675775e3c0b7c8/solr/maven/org/apache/solr/solr-clustering/6.5.1/solr-clustering-6.5.1.pom.sha1
==============================================================================
--- dev/lucene/lucene-solr-6.5.1-RC1-revfa827447f5829fe729b779faed675775e3c0b7c8/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-RC1-revfa827447f5829fe729b779faed675775e3c0b7c8/solr/maven/org/apache/solr/solr-clustering/6.5.1/solr-clustering-6.5.1.pom.sha1 Fri Apr  7 19:19:32 2017
@@ -0,0 +1 @@
+a047af77ff98ace94fb0168795afa96d23e48c9f
\ No newline at end of file

Propchange: dev/lucene/lucene-solr-6.5.1-RC1-revfa827447f5829fe729b779faed675775e3c0b7c8/solr/maven/org/apache/solr/solr-clustering/6.5.1/solr-clustering-6.5.1.pom.sha1
------------------------------------------------------------------------------
    svn:eol-style = native

Added: dev/lucene/lucene-solr-6.5.1-RC1-revfa827447f5829fe729b779faed675775e3c0b7c8/solr/maven/org/apache/solr/solr-clustering/maven-metadata.xml
==============================================================================
--- dev/lucene/lucene-solr-6.5.1-RC1-revfa827447f5829fe729b779faed675775e3c0b7c8/solr/maven/org/apache/solr/solr-clustering/maven-metadata.xml (added)
+++ dev/lucene/lucene-solr-6.5.1-RC1-revfa827447f5829fe729b779faed675775e3c0b7c8/solr/maven/org/apache/solr/solr-clustering/maven-metadata.xml Fri Apr  7 19:19:32 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>20170407174425</lastUpdated>
+  </versioning>
+</metadata>

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

Added: dev/lucene/lucene-solr-6.5.1-RC1-revfa827447f5829fe729b779faed675775e3c0b7c8/solr/maven/org/apache/solr/solr-clustering/maven-metadata.xml.md5
==============================================================================
--- dev/lucene/lucene-solr-6.5.1-RC1-revfa827447f5829fe729b779faed675775e3c0b7c8/solr/maven/org/apache/solr/solr-clustering/maven-metadata.xml.md5 (added)
+++ dev/lucene/lucene-solr-6.5.1-RC1-revfa827447f5829fe729b779faed675775e3c0b7c8/solr/maven/org/apache/solr/solr-clustering/maven-metadata.xml.md5 Fri Apr  7 19:19:32 2017
@@ -0,0 +1 @@
+d430aa7ba232520d915fe0f1d2d5c5ae
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.5.1-RC1-revfa827447f5829fe729b779faed675775e3c0b7c8/solr/maven/org/apache/solr/solr-clustering/maven-metadata.xml.sha1
==============================================================================
--- dev/lucene/lucene-solr-6.5.1-RC1-revfa827447f5829fe729b779faed675775e3c0b7c8/solr/maven/org/apache/solr/solr-clustering/maven-metadata.xml.sha1 (added)
+++ dev/lucene/lucene-solr-6.5.1-RC1-revfa827447f5829fe729b779faed675775e3c0b7c8/solr/maven/org/apache/solr/solr-clustering/maven-metadata.xml.sha1 Fri Apr  7 19:19:32 2017
@@ -0,0 +1 @@
+3833b7b681dccebf3d3539cdea8c1ac650d6f497
\ No newline at end of file

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

Added: dev/lucene/lucene-solr-6.5.1-RC1-revfa827447f5829fe729b779faed675775e3c0b7c8/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-RC1-revfa827447f5829fe729b779faed675775e3c0b7c8/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-RC1-revfa827447f5829fe729b779faed675775e3c0b7c8/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-RC1-revfa827447f5829fe729b779faed675775e3c0b7c8/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-RC1-revfa827447f5829fe729b779faed675775e3c0b7c8/solr/maven/org/apache/solr/solr-core/6.5.1/solr-core-6.5.1-javadoc.jar.asc Fri Apr  7 19:19:32 2017
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Comment: GPGTools - https://gpgtools.org
+
+iQIcBAABCgAGBQJY59AVAAoJEKM20MDuZMseIb0QAMTyAa0DJEQWRqTOU9pRiCM4
+oIYSzp6ZUOqGkSmDqTDYUiOzMD2MLC1xYN7KYnxQAZrjWdSPf7FRUa1WfGcv63zG
+sLQK+GZGwfPpSwrN/cpbFOVtQK/AY1w+7ypePUSJW0fRJw9OGxva15VuOPac5FRM
+vIfpK5Uya6zexbZ5igLylDPifww831Dz6N5rWn/iMAgK99+4TKAsXyMAb522BAyd
+ieg0xcMJJqxzqOXPuSW1FV3hexkSSlF4hZSCYq2h28d5U1pkUyt7EXKtVBea5FpN
+5vArLiaaIpuBU4KGaOTFcbO3TL6mct5lgoiAF5L/WRkhdbb8Arp3tht2i2n/M/8A
+uIl+bxYKh7aKCv6u5V5HQaSNW1VejYpLHpd/viM9Ub7zQfVIHA6Y2K+GiK2B0nLf
+fcUskn8nC9oj5xu+sZ8i+9OzFXn8YF//Cr8yOtPNkPAOFybz61OgaQzk2mMVNS5M
+MMWSZnDjKpx4f8CVzMAdCiFGOayRwR1KN24chUcNKORb+q0kF99AIBJrQXx0qj2J
+YXhz7gBRf5ZxF5wObMh/m5A3wxum05s6GZq4o5lJ0OMeThTb7QrYJh2KvK/nDBKx
+naVBFYXWLC0wTWQqjD4UIfWoaHA3EUxs1oX6CuAdOYMyRzcXikfl6SlmeE2JTeCn
+L1PvuKEEFc418MJR9Tnn
+=IrC9
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-6.5.1-RC1-revfa827447f5829fe729b779faed675775e3c0b7c8/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-RC1-revfa827447f5829fe729b779faed675775e3c0b7c8/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-RC1-revfa827447f5829fe729b779faed675775e3c0b7c8/solr/maven/org/apache/solr/solr-core/6.5.1/solr-core-6.5.1-javadoc.jar.md5 Fri Apr  7 19:19:32 2017
@@ -0,0 +1 @@
+87cc5a78c9374dce62ba8cee468ccd9f
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.5.1-RC1-revfa827447f5829fe729b779faed675775e3c0b7c8/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-RC1-revfa827447f5829fe729b779faed675775e3c0b7c8/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-RC1-revfa827447f5829fe729b779faed675775e3c0b7c8/solr/maven/org/apache/solr/solr-core/6.5.1/solr-core-6.5.1-javadoc.jar.sha1 Fri Apr  7 19:19:32 2017
@@ -0,0 +1 @@
+4c12b5197b9b47b85d607519b2d0009cd156e84e
\ No newline at end of file

Propchange: dev/lucene/lucene-solr-6.5.1-RC1-revfa827447f5829fe729b779faed675775e3c0b7c8/solr/maven/org/apache/solr/solr-core/6.5.1/solr-core-6.5.1-javadoc.jar.sha1
------------------------------------------------------------------------------
    svn:eol-style = native

Added: dev/lucene/lucene-solr-6.5.1-RC1-revfa827447f5829fe729b779faed675775e3c0b7c8/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-RC1-revfa827447f5829fe729b779faed675775e3c0b7c8/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-RC1-revfa827447f5829fe729b779faed675775e3c0b7c8/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-RC1-revfa827447f5829fe729b779faed675775e3c0b7c8/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-RC1-revfa827447f5829fe729b779faed675775e3c0b7c8/solr/maven/org/apache/solr/solr-core/6.5.1/solr-core-6.5.1-sources.jar.asc Fri Apr  7 19:19:32 2017
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Comment: GPGTools - https://gpgtools.org
+
+iQIcBAABCgAGBQJY59AVAAoJEKM20MDuZMsebMQQAIFqiK99a6PZXoqL7i4irATl
+lDPafAwHr2LXOUq2+9Kd2BRA+K8GQkrFeFvda77DX3r5bmZJZxVkxxwk9Wms6sQG
+kMWPJuFcdEtTYtpL6kMq5S2ZhbIqCz5VfgB1l4YeZVcFyLHgRB9bql+/gRa/vSdk
+kqHIUfRlJ7PugWdFKVcvzZyc6ZMzdd7dOnNbdeqeIV/G4Dbg1w20eOegWauF5yaY
+RioOAAimSOuMnaMiKobI6eEFLpuy8GgYThZMShGAhMEUXLuNx7hdbM8P6BvZS9eT
+NrgYjDSc8k1aVD3Ad0Zb4H9+etHg1JXZEEkfkrFkCCeDkSDwRYyRgMuFbMRaajAF
+OK3VfnLyWGEYOVuMHyrP1q6OXHH0+3qyOAoTeuTNTv33RK9t8a5Bq8uDCMFoProL
+RolasAdLSNvza7yodxBDbPfZ3GX1/tWLiD0GbdxmAiP8GkJF86D4a5+IdmtmF67i
+mVVpmQa3OD1IltKIwOXjXBuqW3soLLoJBn7wyhiOJoLO8cGiX+SJqTyOXA10K3n+
+MosSAmBRJcvOAAKZHT8hJmiMoY25e1geJFEL3YjA5M2UVJvDqRB5bHMZ7xvClbfX
+f672/s2iW2DbNRjKXY/jIvkMc9UvzVPpXCs2U3sBloCbCMXAgtgWsfKNa9LPe3q2
+menmgkyKkkOL1wEL110t
+=rXKV
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-6.5.1-RC1-revfa827447f5829fe729b779faed675775e3c0b7c8/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-RC1-revfa827447f5829fe729b779faed675775e3c0b7c8/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-RC1-revfa827447f5829fe729b779faed675775e3c0b7c8/solr/maven/org/apache/solr/solr-core/6.5.1/solr-core-6.5.1-sources.jar.md5 Fri Apr  7 19:19:32 2017
@@ -0,0 +1 @@
+72b827afdc78e2b341ef08be2265b3ff
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.5.1-RC1-revfa827447f5829fe729b779faed675775e3c0b7c8/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-RC1-revfa827447f5829fe729b779faed675775e3c0b7c8/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-RC1-revfa827447f5829fe729b779faed675775e3c0b7c8/solr/maven/org/apache/solr/solr-core/6.5.1/solr-core-6.5.1-sources.jar.sha1 Fri Apr  7 19:19:32 2017
@@ -0,0 +1 @@
+c35caf79c72f07b1a57f059a3ad01eb597e44444
\ No newline at end of file

Propchange: dev/lucene/lucene-solr-6.5.1-RC1-revfa827447f5829fe729b779faed675775e3c0b7c8/solr/maven/org/apache/solr/solr-core/6.5.1/solr-core-6.5.1-sources.jar.sha1
------------------------------------------------------------------------------
    svn:eol-style = native

Added: dev/lucene/lucene-solr-6.5.1-RC1-revfa827447f5829fe729b779faed675775e3c0b7c8/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-RC1-revfa827447f5829fe729b779faed675775e3c0b7c8/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-RC1-revfa827447f5829fe729b779faed675775e3c0b7c8/solr/maven/org/apache/solr/solr-core/6.5.1/solr-core-6.5.1.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-6.5.1-RC1-revfa827447f5829fe729b779faed675775e3c0b7c8/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-RC1-revfa827447f5829fe729b779faed675775e3c0b7c8/solr/maven/org/apache/solr/solr-core/6.5.1/solr-core-6.5.1.jar.asc Fri Apr  7 19:19:32 2017
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Comment: GPGTools - https://gpgtools.org
+
+iQIcBAABCgAGBQJY59AWAAoJEKM20MDuZMseXY0P/Ayrlaa3evl8Dbm4LO71DtGp
+yswzF3ntUUq8cgIhAAliiubxqlwImISYN4JdPCd5p0FWfpRJ4Qv6IOKkbwR9Kcsc
+AQFqKLxbjoHzW5xykA1Nq7su1QpgpC2oHiS2IW9qWGp+J+N/EXxZqOCT7RBFAhdx
+dRERahUMLw8uDPsUY6K6dUugh1w13KMxFUjztZFm9evtBGwEnp802fofB2QYdFJc
+03YBaRAvZvRibEvXfq52jdQBenQmqwZL7gvPe4/sY7GGAuTAnnDMJs2I8PKd1jue
+OzyxijjlOFEe1LdxmPjOIeJ3T+Ze2TPLIeZHGSzKjr3s/0UyR6pIei4pMlfU2IR7
+pa0iIqRa772n7WCmjrHfP/+Y5CCWSAS1UkGGkAYn8sLlEqxnAj665MoWplMHB44E
+Sl8Z++XRWFsQaC/H+HI7PjOh2kd2ToqxkGACmd8kgeAKF8Z0lerNfjXqFg7JWU63
+/ILV7RfDou1HEsVJYy7FVXggtr0IkgTk4bn+MPnXX3iY7jTw8hsLUQazn3s0zlRi
+CATUfr2o/k4vDyjghndfk5TXln+iIjSmRLW8FoiMxiKSpPx/B6ro7YIeL4OyimkX
+GMtBEqqR1NG/EzhIMBatYJeWhYdY8TFr3gKkD4K7ZKIG6G49CBjLfV2ZihTwQNOZ
+9L4nsV+jqecui1fcMifa
+=sTvw
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-6.5.1-RC1-revfa827447f5829fe729b779faed675775e3c0b7c8/solr/maven/org/apache/solr/solr-core/6.5.1/solr-core-6.5.1.jar.md5
==============================================================================
--- dev/lucene/lucene-solr-6.5.1-RC1-revfa827447f5829fe729b779faed675775e3c0b7c8/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-RC1-revfa827447f5829fe729b779faed675775e3c0b7c8/solr/maven/org/apache/solr/solr-core/6.5.1/solr-core-6.5.1.jar.md5 Fri Apr  7 19:19:32 2017
@@ -0,0 +1 @@
+aa6ffa876cb324c65d9e0a0ada4c6738
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.5.1-RC1-revfa827447f5829fe729b779faed675775e3c0b7c8/solr/maven/org/apache/solr/solr-core/6.5.1/solr-core-6.5.1.jar.sha1
==============================================================================
--- dev/lucene/lucene-solr-6.5.1-RC1-revfa827447f5829fe729b779faed675775e3c0b7c8/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-RC1-revfa827447f5829fe729b779faed675775e3c0b7c8/solr/maven/org/apache/solr/solr-core/6.5.1/solr-core-6.5.1.jar.sha1 Fri Apr  7 19:19:32 2017
@@ -0,0 +1 @@
+9bedd124a29f216e73a02df274f3b18f2f92ed4a
\ No newline at end of file

Propchange: dev/lucene/lucene-solr-6.5.1-RC1-revfa827447f5829fe729b779faed675775e3c0b7c8/solr/maven/org/apache/solr/solr-core/6.5.1/solr-core-6.5.1.jar.sha1
------------------------------------------------------------------------------
    svn:eol-style = native

Added: dev/lucene/lucene-solr-6.5.1-RC1-revfa827447f5829fe729b779faed675775e3c0b7c8/solr/maven/org/apache/solr/solr-core/6.5.1/solr-core-6.5.1.pom
==============================================================================
--- dev/lucene/lucene-solr-6.5.1-RC1-revfa827447f5829fe729b779faed675775e3c0b7c8/solr/maven/org/apache/solr/solr-core/6.5.1/solr-core-6.5.1.pom (added)
+++ dev/lucene/lucene-solr-6.5.1-RC1-revfa827447f5829fe729b779faed675775e3c0b7c8/solr/maven/org/apache/solr/solr-core/6.5.1/solr-core-6.5.1.pom Fri Apr  7 19:19:32 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>

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

Added: dev/lucene/lucene-solr-6.5.1-RC1-revfa827447f5829fe729b779faed675775e3c0b7c8/solr/maven/org/apache/solr/solr-core/6.5.1/solr-core-6.5.1.pom.asc
==============================================================================
--- dev/lucene/lucene-solr-6.5.1-RC1-revfa827447f5829fe729b779faed675775e3c0b7c8/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-RC1-revfa827447f5829fe729b779faed675775e3c0b7c8/solr/maven/org/apache/solr/solr-core/6.5.1/solr-core-6.5.1.pom.asc Fri Apr  7 19:19:32 2017
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Comment: GPGTools - https://gpgtools.org
+
+iQIcBAABCgAGBQJY59AWAAoJEKM20MDuZMseHgQQAOK5ci89stciIaVk0kD3Pzcm
+mF0BZH0CK0z5vg2f9QonGA8Gz1ZL5b2VVY3Nzjzdw1g/+zeboq8J0IUTdtMBfz9A
+7P05SSlNyRcxMCRiK/0n5CRxLOYEuB0Ya+2apJD5KCybBCx4iKKr/5SQsQbFMngX
+jIKGcBPiIX4XprQA32Xxq1fMIU3wx+DQso9YXxfyBbiMeKIGdS9sb8HqK0B4HpGD
+bPcCK2UPbMtv5pXWxXfnMn1t7cf7WFIRUVbAE69nGvXgdcAatN3lQ1ym0SUmI3EH
+SECksaPMM9pvGBjk0hMxGNT4YSOWImjU/MviXEevJL8iy9oTZOuGXqKS2s5suVAP
+9vVnlY4OSfB0ur+2hoNP3yOXsMmPTO7LWhrT/tM5smcGp1FAGkKzVRdzr0Lf81h9
+axz7j9nBqKnQ0YOtYXUE9r2kuSkXvL4T09YKlkVmonmR9HLCCpDYcyqkBNYW/u01
+DkrKiuQjil9YIwsWl8izKRIIEB+z8NCNHOff6rWVzPMRMU1fpLDykzHFucer9Eg4
+wyyH0hVGnPZUDIjr2l5B9DE68wdKewfr6JrZ4lsCL7c7O6Kk6q5cOw9yiz+FfJEY
+80QKGXqgMBGiT9Grc+em524uZ2cvpRoEtXzUBlexVvPzyZF9GFrhIrxMVjj9q63Z
+DZtKG/yH1PvTxbHuvP2g
+=i90t
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-6.5.1-RC1-revfa827447f5829fe729b779faed675775e3c0b7c8/solr/maven/org/apache/solr/solr-core/6.5.1/solr-core-6.5.1.pom.md5
==============================================================================
--- dev/lucene/lucene-solr-6.5.1-RC1-revfa827447f5829fe729b779faed675775e3c0b7c8/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-RC1-revfa827447f5829fe729b779faed675775e3c0b7c8/solr/maven/org/apache/solr/solr-core/6.5.1/solr-core-6.5.1.pom.md5 Fri Apr  7 19:19:32 2017
@@ -0,0 +1 @@
+3d3ec1fecbf11abee535e0b8e3a55c16
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.5.1-RC1-revfa827447f5829fe729b779faed675775e3c0b7c8/solr/maven/org/apache/solr/solr-core/6.5.1/solr-core-6.5.1.pom.sha1
==============================================================================
--- dev/lucene/lucene-solr-6.5.1-RC1-revfa827447f5829fe729b779faed675775e3c0b7c8/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-RC1-revfa827447f5829fe729b779faed675775e3c0b7c8/solr/maven/org/apache/solr/solr-core/6.5.1/solr-core-6.5.1.pom.sha1 Fri Apr  7 19:19:32 2017
@@ -0,0 +1 @@
+d669485f72ea3226ca611d2e58f7896bd9db19c2
\ No newline at end of file

Propchange: dev/lucene/lucene-solr-6.5.1-RC1-revfa827447f5829fe729b779faed675775e3c0b7c8/solr/maven/org/apache/solr/solr-core/6.5.1/solr-core-6.5.1.pom.sha1
------------------------------------------------------------------------------
    svn:eol-style = native

Added: dev/lucene/lucene-solr-6.5.1-RC1-revfa827447f5829fe729b779faed675775e3c0b7c8/solr/maven/org/apache/solr/solr-core/maven-metadata.xml
==============================================================================
--- dev/lucene/lucene-solr-6.5.1-RC1-revfa827447f5829fe729b779faed675775e3c0b7c8/solr/maven/org/apache/solr/solr-core/maven-metadata.xml (added)
+++ dev/lucene/lucene-solr-6.5.1-RC1-revfa827447f5829fe729b779faed675775e3c0b7c8/solr/maven/org/apache/solr/solr-core/maven-metadata.xml Fri Apr  7 19:19:32 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>20170407174417</lastUpdated>
+  </versioning>
+</metadata>

Propchange: dev/lucene/lucene-solr-6.5.1-RC1-revfa827447f5829fe729b779faed675775e3c0b7c8/solr/maven/org/apache/solr/solr-core/maven-metadata.xml
------------------------------------------------------------------------------
    svn:eol-style = native