You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by jp...@apache.org on 2017/02/01 16:59:36 UTC

svn commit: r18068 [18/24] - in /dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e: ./ 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.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-cell/6.4.1/solr-cell-6.4.1.pom
==============================================================================
--- dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-cell/6.4.1/solr-cell-6.4.1.pom (added)
+++ dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-cell/6.4.1/solr-cell-6.4.1.pom Wed Feb  1 16:59:34 2017
@@ -0,0 +1,569 @@
+<!--
+  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.4.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.facebook.presto</groupId>
+      <artifactId>presto-parser</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.fasterxml.jackson.core</groupId>
+      <artifactId>jackson-core</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.airlift</groupId>
+      <artifactId>slice</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.sourceforge.jmatio</groupId>
+      <artifactId>jmatio</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.antlr</groupId>
+      <artifactId>antlr4-runtime</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.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.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-cell/6.4.1/solr-cell-6.4.1.pom
------------------------------------------------------------------------------
    svn:eol-style = native

Added: dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-cell/6.4.1/solr-cell-6.4.1.pom.asc
==============================================================================
--- dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-cell/6.4.1/solr-cell-6.4.1.pom.asc (added)
+++ dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-cell/6.4.1/solr-cell-6.4.1.pom.asc Wed Feb  1 16:59:34 2017
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v1
+
+iQIcBAABAgAGBQJYkegTAAoJEAUaD692vGUH8jgQAL601IbA0Ll+9NeA3S8drYdA
+iSA61TtqUfVjOd+faEAcbZvDRtDAFTEbYIJ1swJFyvLbmqQ6iwQRxNDhw4rSgTdN
+hcLRrdo7uKzy/pU5sdXPgJz0U3BtXnXWfXQqIuiz5FNWMo9tYtIumrtoYlF2pHos
+WlW6JUF0TYgnQD9DVMpu/dpc/begpoIkw3e/gvRP7H+Iw+D3tF3TD/rdsiUe+zhi
+EkuSjm6ypweiRY5i5Jqbl6CpyBECaLGfYi7mtVWXbrgmDBAGukUuneEkgeHem0MP
+gYzX6yqw7wHj+p1bgxNA5fWRvJ/AvqcDYw3wXsAVXgCTTzquA1UIuirTNy9ioxDp
+jlgPVj23bsL/HB7Tcid+5ZhUSjYIkX7Bc+uvd7xgMy2gIZ/B1xsa+KhJb/xN7t9G
+/znvmlHHqt8lXBZsv0QpufqJfxVsPnbC1xRH34HUkzzUwMMVMH4rvM3PAl92PeBp
+ohoTAaVjhpQ7ELDkM2IGHhxVynn9V0kac1c4gqp/lcjwvePp2sSKz1PMmmvKp7E2
+hO/2oqufaW+jXjsfIggpQr4bePF3Rwcqr3Hu0zUB9/jahaYy15sVvPZljgri6B0i
+1jnNlZ+QKTC3A1kPy5VuLAXkMr4xH2wdImWCR18SjhxQbrjRNX72lDZNzMQPH1X9
+JrH2eRuYMFFNnf16YelX
+=A7qq
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-cell/6.4.1/solr-cell-6.4.1.pom.md5
==============================================================================
--- dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-cell/6.4.1/solr-cell-6.4.1.pom.md5 (added)
+++ dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-cell/6.4.1/solr-cell-6.4.1.pom.md5 Wed Feb  1 16:59:34 2017
@@ -0,0 +1 @@
+858f5a084d3d8a84d7d0856c495977be
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-cell/6.4.1/solr-cell-6.4.1.pom.sha1
==============================================================================
--- dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-cell/6.4.1/solr-cell-6.4.1.pom.sha1 (added)
+++ dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-cell/6.4.1/solr-cell-6.4.1.pom.sha1 Wed Feb  1 16:59:34 2017
@@ -0,0 +1 @@
+6c190cf122ba105639f391eb07a1554e36d1c391
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-cell/maven-metadata.xml
==============================================================================
--- dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-cell/maven-metadata.xml (added)
+++ dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-cell/maven-metadata.xml Wed Feb  1 16:59:34 2017
@@ -0,0 +1,12 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<metadata>
+  <groupId>org.apache.solr</groupId>
+  <artifactId>solr-cell</artifactId>
+  <version>6.4.1</version>
+  <versioning>
+    <versions>
+      <version>6.4.1</version>
+    </versions>
+    <lastUpdated>20170201135130</lastUpdated>
+  </versioning>
+</metadata>

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

Added: dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-cell/maven-metadata.xml.md5
==============================================================================
--- dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-cell/maven-metadata.xml.md5 (added)
+++ dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-cell/maven-metadata.xml.md5 Wed Feb  1 16:59:34 2017
@@ -0,0 +1 @@
+257ae12c1ab2c7ec3acf81b1c4108649
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-cell/maven-metadata.xml.sha1
==============================================================================
--- dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-cell/maven-metadata.xml.sha1 (added)
+++ dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-cell/maven-metadata.xml.sha1 Wed Feb  1 16:59:34 2017
@@ -0,0 +1 @@
+c399a943da4db36cd6804c6dff87e7f98bf4f680
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-clustering/6.4.1/solr-clustering-6.4.1-javadoc.jar
==============================================================================
Binary file - no diff available.

Propchange: dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-clustering/6.4.1/solr-clustering-6.4.1-javadoc.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-clustering/6.4.1/solr-clustering-6.4.1-javadoc.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-clustering/6.4.1/solr-clustering-6.4.1-javadoc.jar.asc (added)
+++ dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-clustering/6.4.1/solr-clustering-6.4.1-javadoc.jar.asc Wed Feb  1 16:59:34 2017
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v1
+
+iQIcBAABAgAGBQJYkegTAAoJEAUaD692vGUHR24P/RbkBrjbIWh51P6giayWaarU
+ZKuwWVjmM1P8YDevC/eUF4IMY4aWmGdEK0oJI4aI7dqJJ7awKqTWLCH/MdQjus91
+4NOh7f1bwQ/DU+UPV98ozESVynAg2fRnvVICVknaOwYOE8Qge9FGF8sxRjIYND3J
+MokUSbjdTHLjy6cf5Qfnolyc319w6A3MVUl/BDaRq9LeihHx8NGpSmykopTKyEQL
+NdeBUVUTigWHyerTco5ohrjpSnGcL+H9MA2GNWsbZJsOuRWvMYi9iQMv6hgDfXm+
+EcM7eniiTmwBIB0jLn9SsmSzcwd9k6IiYzECnnd68ZWuCvWmsOirX1YZAdWc5Eh3
+Lg/jxqa94fmWsWZ7csk8aH/Ws44iEfS071rJVv8pK1LMLS3jvyu8RE4L/XknGhZb
++tio2y46vpnUAQZpZDOeFwQbCpSYIxBKAKr1AHHwMiIJA3EnvPZHrq1g91y2MCkk
+mJ26eHeFbNETxUS7mtS1ynLP7SGYUdXgvRlv+DD9Y7yKJwqXL8X70CEE81Na1a3U
+VnMT/6Gt75302KgoElh3RQwbfMm3bMj/xnGZChismSCTBJJc3wUzPsPS09j8WeQh
+2U3DN3NrQnmQvtSHiXXFh0PEjbRkB95D2wpIXOo4F0IyrWF7lG6Bg1UajlFEBdSo
+aasKxq3XoToD6WWjr4IX
+=wNMy
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-clustering/6.4.1/solr-clustering-6.4.1-javadoc.jar.md5
==============================================================================
--- dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-clustering/6.4.1/solr-clustering-6.4.1-javadoc.jar.md5 (added)
+++ dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-clustering/6.4.1/solr-clustering-6.4.1-javadoc.jar.md5 Wed Feb  1 16:59:34 2017
@@ -0,0 +1 @@
+593a28a1caa401babea399af00a896bc
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-clustering/6.4.1/solr-clustering-6.4.1-javadoc.jar.sha1
==============================================================================
--- dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-clustering/6.4.1/solr-clustering-6.4.1-javadoc.jar.sha1 (added)
+++ dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-clustering/6.4.1/solr-clustering-6.4.1-javadoc.jar.sha1 Wed Feb  1 16:59:34 2017
@@ -0,0 +1 @@
+7ef0421cdc178ff02c2d332f1ab1b7e62fbf9d83
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-clustering/6.4.1/solr-clustering-6.4.1-sources.jar
==============================================================================
Binary file - no diff available.

Propchange: dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-clustering/6.4.1/solr-clustering-6.4.1-sources.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-clustering/6.4.1/solr-clustering-6.4.1-sources.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-clustering/6.4.1/solr-clustering-6.4.1-sources.jar.asc (added)
+++ dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-clustering/6.4.1/solr-clustering-6.4.1-sources.jar.asc Wed Feb  1 16:59:34 2017
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v1
+
+iQIcBAABAgAGBQJYkegUAAoJEAUaD692vGUHFQcQAMJf9W51xjNroJ9GmeD6LhZc
+HtVAg90NXP3eg+dSqw3BsMzFO8ftgcCTRZTuczSGmV/6DJFxq2mDoTbWxgNuCHY+
+xK/zMqDU/M1Cr55fyfWF2b09cNwSwt13UNQSGCTKpWdM8v3Z6QkUt1MkZUU8/sNM
+4zgWLTSrholn3Cf8CpvKOgNCWcOrZ/a+25XAJyHc/WTBhuPfxSBglBCWaungCWlj
+IuEI4yp1mNImRJLpcQDM/5vZP2oG8TiAtWqxPx1Qf7n0qAy2zBtHLwd4PvLHainp
+vJP9ZEk4i9oK2q3z23lVIiaBR5R0NqT8w0o96A4a7+4sflQlnkA8JuigpsddtH12
+QmzSfoUxFdDDo6Azf3fzU0U72uFDVxcsRn7rbseDuPhzfJLRuGqlBSBIR0NV+JnU
+piB7rfkQL87X6/b/vPn0EokfePQP4I2YJEdmPn/F0ESdRQgeR1bTsJ3xJN+vhnhb
+sWJ0QiA5rMCrYZlg+Jiq47nv0imRft4csjPXGRwIUdO3iQ2n8zgjfbFD8RwKUoGI
+zm7wuv4Yftyp3ya9jcLpwGWx8Lf/DSEB+43Un3VEaOEmKufUHXdt3OewiU+1I9bV
+X+uh53MdBqtEtkITNUkJpNCgLWFGj3O7894qBksQuMnpAtl4mDRuzfnNBTlFkKr6
+69RdFwvkWlNgUeMvK5NK
+=QR8F
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-clustering/6.4.1/solr-clustering-6.4.1-sources.jar.md5
==============================================================================
--- dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-clustering/6.4.1/solr-clustering-6.4.1-sources.jar.md5 (added)
+++ dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-clustering/6.4.1/solr-clustering-6.4.1-sources.jar.md5 Wed Feb  1 16:59:34 2017
@@ -0,0 +1 @@
+b705e6c8bcb625a1947047cf4b9e2f91
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-clustering/6.4.1/solr-clustering-6.4.1-sources.jar.sha1
==============================================================================
--- dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-clustering/6.4.1/solr-clustering-6.4.1-sources.jar.sha1 (added)
+++ dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-clustering/6.4.1/solr-clustering-6.4.1-sources.jar.sha1 Wed Feb  1 16:59:34 2017
@@ -0,0 +1 @@
+6bca7381ea1b78b0e755ceb1e2c9ebbb27447e2d
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-clustering/6.4.1/solr-clustering-6.4.1.jar
==============================================================================
Binary file - no diff available.

Propchange: dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-clustering/6.4.1/solr-clustering-6.4.1.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-clustering/6.4.1/solr-clustering-6.4.1.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-clustering/6.4.1/solr-clustering-6.4.1.jar.asc (added)
+++ dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-clustering/6.4.1/solr-clustering-6.4.1.jar.asc Wed Feb  1 16:59:34 2017
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v1
+
+iQIcBAABAgAGBQJYkegUAAoJEAUaD692vGUHtfsP/24v7gSRsj5tJwfSBIZVkzgJ
+m3/eUqhmOzLIrUsTdJbKYrX+OqgGWPfY+bNSbK/juGjfvLJXgT4u/oETv6wLZgqA
+mcAYL+JHwocIAugLiXgQ+7m0SAIK/HjmqnD7dNgPiWEoBKf7k80/YLrXZI1+oK9p
+ZHumszzs6ZZBAEmP4wOEZDa1gIKn5OpyHwe4RakkPH7AR0pGq10UDF9u/C/TYmT+
+4SH6KJgVbk3rWU+dd6jssuIeYo6YaL6jbmpW1zUn/U/OE9iL8iAjo/2Zewt0Q7/N
+seBZqzS/lQqW8nqxuso6bfa25PPcS3m/4TDTZowRdBM/QOyiYrGUbSS5FPXVkbTO
+PHcrK6LCMGKinLVlfE3G3sGXnzE6sJQzyW1Xh7BM6NaWvunps7dK3T6kIXmiXHan
+DN9XQ2GWNkyyM+MBSo3FIc/s8yDm56TaANuAHZkvI3YktVvoCbp4NTXetMYjmUYn
+gwTf9Fpa6exOA/Lkr4rPs5vuTejhx6qUanERMO0p/1MEMVE82IWdg3gNg1qvOlsp
+VbnxQpATvTCqwcaljcKlcvmzMWCvizFNEvGkIRqhWU7N/ZL4dEtFzPuxKJOL7Z70
+crA0hwmOW+XL9uA7B7yBNj5KvP/J8wOeQZD8l0yps1XusQIq85I0oNFKtns0HOVt
+vFllRYyVozY8WEATAb3F
+=DeAS
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-clustering/6.4.1/solr-clustering-6.4.1.jar.md5
==============================================================================
--- dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-clustering/6.4.1/solr-clustering-6.4.1.jar.md5 (added)
+++ dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-clustering/6.4.1/solr-clustering-6.4.1.jar.md5 Wed Feb  1 16:59:34 2017
@@ -0,0 +1 @@
+8fddbdcc41f2c106ff525ef77b474b7d
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-clustering/6.4.1/solr-clustering-6.4.1.jar.sha1
==============================================================================
--- dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-clustering/6.4.1/solr-clustering-6.4.1.jar.sha1 (added)
+++ dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-clustering/6.4.1/solr-clustering-6.4.1.jar.sha1 Wed Feb  1 16:59:34 2017
@@ -0,0 +1 @@
+b8bcb925e9de395cd181dbd27d5c422b92fff467
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-clustering/6.4.1/solr-clustering-6.4.1.pom
==============================================================================
--- dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-clustering/6.4.1/solr-clustering-6.4.1.pom (added)
+++ dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-clustering/6.4.1/solr-clustering-6.4.1.pom Wed Feb  1 16:59:34 2017
@@ -0,0 +1,450 @@
+<!--
+  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.4.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.facebook.presto</groupId>
+      <artifactId>presto-parser</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.airlift</groupId>
+      <artifactId>slice</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>org.antlr</groupId>
+      <artifactId>antlr4-runtime</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.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.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-clustering/6.4.1/solr-clustering-6.4.1.pom
------------------------------------------------------------------------------
    svn:eol-style = native

Added: dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-clustering/6.4.1/solr-clustering-6.4.1.pom.asc
==============================================================================
--- dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-clustering/6.4.1/solr-clustering-6.4.1.pom.asc (added)
+++ dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-clustering/6.4.1/solr-clustering-6.4.1.pom.asc Wed Feb  1 16:59:34 2017
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v1
+
+iQIcBAABAgAGBQJYkegUAAoJEAUaD692vGUHYioQAM8U8tpBvzv8PMsqAq63ULXT
+j23rx3qmzIIdPMsMLOj+y2wKlBw9m1V5sYNsnEPQe5PJaJfjDZWa91Z52kIa79rL
+RjlDKbz7wBLbGJ6SVqM4e/1RolZG7xaYifJVsDIOVqI1k4VX/8GY04NHv+kAW2IB
+ORRdFiC1zN+taShstLfS+ec60D2Ueh6m0DKA+oAn1NjqjVpv/oyKxf4RXzbd54MO
+uw0JHYfcVbeAT9h1WX3Jc33I8ua4Gp9gwJnkd/RORibENMGv2lBSRq93eQP6JRut
+cBA8lahsCUE0H2vy2cPCFhzZtrL2CjjxppE5l+RSZepLV0SOhZRGpnfIBKlIsYJ6
+xKd9QiOKhlrPp5sgHE9dynuQa1ljUSOVtD1RtoCvm+ImbIw9G4DW14sxCIXqI9KF
+NcFk7Lo3ST94b1wkQgiJ831ntQ3fKFhZgyxOXy/jlR6GuCTkZn/toRpOo0uyw7Is
+vWHMvGop7bxvqBlXqxQYU6J2l/xLS5H44+arH+7oc/dSjtFhoWpG3azzZG5uyJv0
+AoJ9ZAjU+MsSWg+zxyQOE/nXmqYJEROqwPdYMoKWt4jlvsq6tmEJeTRWeTYMivjs
+FxNalf7Kjbv+mnOopEo957pJiJQFjhXOBDcW3vCK74Pc2LlFPhLHlcoM3sEYokC5
+3Q5IIua61j6zg0O/N85W
+=mBFb
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-clustering/6.4.1/solr-clustering-6.4.1.pom.md5
==============================================================================
--- dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-clustering/6.4.1/solr-clustering-6.4.1.pom.md5 (added)
+++ dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-clustering/6.4.1/solr-clustering-6.4.1.pom.md5 Wed Feb  1 16:59:34 2017
@@ -0,0 +1 @@
+5b0991d5b064167b74f5b84659e3c6d1
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-clustering/6.4.1/solr-clustering-6.4.1.pom.sha1
==============================================================================
--- dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-clustering/6.4.1/solr-clustering-6.4.1.pom.sha1 (added)
+++ dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-clustering/6.4.1/solr-clustering-6.4.1.pom.sha1 Wed Feb  1 16:59:34 2017
@@ -0,0 +1 @@
+945b7b64f2a92d9969f253136952fdb70c512728
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-clustering/maven-metadata.xml
==============================================================================
--- dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-clustering/maven-metadata.xml (added)
+++ dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-clustering/maven-metadata.xml Wed Feb  1 16:59:34 2017
@@ -0,0 +1,12 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<metadata>
+  <groupId>org.apache.solr</groupId>
+  <artifactId>solr-clustering</artifactId>
+  <version>6.4.1</version>
+  <versioning>
+    <versions>
+      <version>6.4.1</version>
+    </versions>
+    <lastUpdated>20170201135120</lastUpdated>
+  </versioning>
+</metadata>

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

Added: dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-clustering/maven-metadata.xml.md5
==============================================================================
--- dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-clustering/maven-metadata.xml.md5 (added)
+++ dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-clustering/maven-metadata.xml.md5 Wed Feb  1 16:59:34 2017
@@ -0,0 +1 @@
+f993300b95b9518285871ba4e7420be2
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-clustering/maven-metadata.xml.sha1
==============================================================================
--- dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-clustering/maven-metadata.xml.sha1 (added)
+++ dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-clustering/maven-metadata.xml.sha1 Wed Feb  1 16:59:34 2017
@@ -0,0 +1 @@
+03d45c5d132230f5efa8cef2105c8d654fb4df6b
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-core/6.4.1/solr-core-6.4.1-javadoc.jar
==============================================================================
Binary file - no diff available.

Propchange: dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-core/6.4.1/solr-core-6.4.1-javadoc.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-core/6.4.1/solr-core-6.4.1-javadoc.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-core/6.4.1/solr-core-6.4.1-javadoc.jar.asc (added)
+++ dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-core/6.4.1/solr-core-6.4.1-javadoc.jar.asc Wed Feb  1 16:59:34 2017
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v1
+
+iQIcBAABAgAGBQJYkegVAAoJEAUaD692vGUHYV4QAM62AzMjE6pXpKX5nNBoh6dz
+/bXg/R/3i/CDg41q6h60dAvY72OfmHEmOBw/dEYJbFjCoKEYmVhlQpZeLr+yCZKx
+xT8/OIrOBnZ2jP9vVgzvNqwofAjlN4PyRr4Su6WOdIA7Yy9eroP6yWA4EvhTR09B
+51bHg5yDBSpS3UOlRCcY8ujugVkNojXvmYc24cQ8jSbAa6DSkjb51GV1H9HRmIJy
+7ojH9KicEDTBXCo54jtOexeqzZsNY7/vzTsodQlo1JAJAT0wsIL/wU1+gRhptWE/
+PqKGIW4U9D3Nss/cmPV/wlH92Uq4EmkWrQNUo5taGo9L2skLgf45G85VYiCFcP2+
+5utA2m0olMDUIygBiarEtGpPxPZxBxr48Eb9pUPB3CKT8hco/d3w/dOMB2gtFBUE
+ProXRA29IPE43cQfnOodqJ4s2kChFispVpzUwrF2dMB59Vy42JZ2x9jBPfaS5YgE
+esxzGZrIligLTWdO97+JLoBWYzEQihfKWQQLv4jbQ9kih3HdCUOz9BD363KvFNLU
+B9wU+G51c4xBCeC+sg7bohgM+d/A3I05QXMOLV94Ta1JUAPMGRFHNLbTiigag85J
+xxJGhJ1feuP/3RbdIsmOm4f86V5d5NmDg1v1THe2yzvsnx5zQ5BD/lPCZ9iD84td
+2Sskw9p0tNXM/Xa5kvp/
+=qWMr
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-core/6.4.1/solr-core-6.4.1-javadoc.jar.md5
==============================================================================
--- dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-core/6.4.1/solr-core-6.4.1-javadoc.jar.md5 (added)
+++ dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-core/6.4.1/solr-core-6.4.1-javadoc.jar.md5 Wed Feb  1 16:59:34 2017
@@ -0,0 +1 @@
+5bc2f4dc2578f2759f950c31bc06bd17
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-core/6.4.1/solr-core-6.4.1-javadoc.jar.sha1
==============================================================================
--- dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-core/6.4.1/solr-core-6.4.1-javadoc.jar.sha1 (added)
+++ dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-core/6.4.1/solr-core-6.4.1-javadoc.jar.sha1 Wed Feb  1 16:59:34 2017
@@ -0,0 +1 @@
+165762da7ac0194e233f2baf698f418fae39c665
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-core/6.4.1/solr-core-6.4.1-sources.jar
==============================================================================
Binary file - no diff available.

Propchange: dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-core/6.4.1/solr-core-6.4.1-sources.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-core/6.4.1/solr-core-6.4.1-sources.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-core/6.4.1/solr-core-6.4.1-sources.jar.asc (added)
+++ dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-core/6.4.1/solr-core-6.4.1-sources.jar.asc Wed Feb  1 16:59:34 2017
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v1
+
+iQIcBAABAgAGBQJYkegVAAoJEAUaD692vGUHubMQAJx36A1y7IJGq3cXewnXrcrT
+fRDtp+if1tGIFMD/sxxJTEwW/5sQo1bamuQCYlQQtjcZ3uhSG8FEpjO9WCbbmhaG
+6c4jxcNzmt09R+sTJY57nnSpAqjtnMt/RPjlYCsL14ri8M+PnM+RJ4Ui69c+ekC3
+RTCayOJL446xVqdPo9hc6uO4dyjbklfdSvbtjOGZEiRDrOQzTYGdpfV26wOpcqjS
+Cs6YlqcGfcrJ5+9ut4cPiHSTkqs1EThQFGO3HMNcpik6433h4AGZRQPJ7ai47FBf
+uX10Qcn1JAohytBMV6pHRXCYCpuc5t8N/3LjP8klUADe5Ch65mfL7P7mkwxQ973Y
+YX/sAwK8fb/TxK4/ssiZqJMY2Bsp0+fj5tD5+Sw+FjIkmRHKk8/Ib8+oy8dQ27p7
+1rTM+YX6+r89RHoa4yqE4iyVOd9XUTwkkyjz6qKoqCYFxo0f9Mfm3YlCbNyixuO9
+sCUynNHOQaAR9ptk4+awFntN/EqUoxIbLn9rk8B4qAcP8YcLcApk25EWNWlkyuj0
+iWj8O7vqAV1iS0R0ON8vZrEjDwQZG/JfAIRtTA4/eBRQW/XIsog7ZpDFAXwNQOKn
+XcqXuGtzUvLopzlCUecLjbw7uMydPOAT6g/YEFQlZfn1PLcP5P27iLFrfUfk30Ey
+bKU86KUco27gUSXK3zNW
+=0OTc
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-core/6.4.1/solr-core-6.4.1-sources.jar.md5
==============================================================================
--- dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-core/6.4.1/solr-core-6.4.1-sources.jar.md5 (added)
+++ dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-core/6.4.1/solr-core-6.4.1-sources.jar.md5 Wed Feb  1 16:59:34 2017
@@ -0,0 +1 @@
+0726282f09115fcadfb6c0322fc2ad89
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-core/6.4.1/solr-core-6.4.1-sources.jar.sha1
==============================================================================
--- dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-core/6.4.1/solr-core-6.4.1-sources.jar.sha1 (added)
+++ dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-core/6.4.1/solr-core-6.4.1-sources.jar.sha1 Wed Feb  1 16:59:34 2017
@@ -0,0 +1 @@
+a28e28439955b89a5ce7d6ebb06e59e909cde186
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-core/6.4.1/solr-core-6.4.1.jar
==============================================================================
Binary file - no diff available.

Propchange: dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-core/6.4.1/solr-core-6.4.1.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-core/6.4.1/solr-core-6.4.1.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-core/6.4.1/solr-core-6.4.1.jar.asc (added)
+++ dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-core/6.4.1/solr-core-6.4.1.jar.asc Wed Feb  1 16:59:34 2017
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v1
+
+iQIcBAABAgAGBQJYkegWAAoJEAUaD692vGUH6+YP/1dNNwpERdhgyabY2JlXSsPa
+eWC+7VFkqIapmT5RzQBmAniA8H5voCl4CeIh73zGHv+xlLjq/ukR5JxmpY4AaeJ7
+bKLOwvo8Uk2/qzQvjPBFwumi+oVxeuvxDA6XkB3pl+p6kGlWDWDEYsAZrVYx/PIE
+GRxMamGXIWEarApRI8RC99QmB+h8Bb4wGvCM7LepMbazRcd41RdKnBZXqLG3SreJ
++6daGoOWqkmshxGVl4pBkyW/fA4XeCyaBqImECPEjl3tkgMg96QLauXQuaBkRrtk
+iMoN/5Ek1UKTAUBCX/RiaWC3ZY1JZQSncra8X5zgiiD7Mc5F3jBJ90TuKcM6LAwI
+B4XoNvBs8Ln3jKmE83EzKhA0/8+bMrVKmTAd3NCFtn+TXl71i2XshOQHQAIl9L93
+AMp/dzTFxdYjuQvPA8Oa7qGMt0azqa4hndepuIk22soTHHD9SidZsVHh/L+Ciebo
+EQMf1M4WHpUaq4dHDhl7XnCibmDtARmtTbZJuhZ0NAWuQRo3gpScu1Suwbu13egG
+/CAb7U9lq7G8ustEtpe7sbDfDd1mKcuQed/BXJThW6bgiWN/5lSV/ionnVvvR5m3
+6plS5cuYSuYnJI3sjkKwEEtfG3BxOTkE6/6a5MPf/4wkGOcuQaKsbtvS72VXRdAG
+tOHzSv91H55H0ZPKymzr
+=/RX8
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-core/6.4.1/solr-core-6.4.1.jar.md5
==============================================================================
--- dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-core/6.4.1/solr-core-6.4.1.jar.md5 (added)
+++ dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-core/6.4.1/solr-core-6.4.1.jar.md5 Wed Feb  1 16:59:34 2017
@@ -0,0 +1 @@
+41ae9834a8390806abb7b13f6fd23f03
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-core/6.4.1/solr-core-6.4.1.jar.sha1
==============================================================================
--- dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-core/6.4.1/solr-core-6.4.1.jar.sha1 (added)
+++ dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-core/6.4.1/solr-core-6.4.1.jar.sha1 Wed Feb  1 16:59:34 2017
@@ -0,0 +1 @@
+5a8349f417c394cc0239b81a783a77b47daee910
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-core/6.4.1/solr-core-6.4.1.pom
==============================================================================
--- dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-core/6.4.1/solr-core-6.4.1.pom (added)
+++ dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-core/6.4.1/solr-core-6.4.1.pom Wed Feb  1 16:59:34 2017
@@ -0,0 +1,428 @@
+<!--
+  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.4.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.facebook.presto</groupId>
+      <artifactId>presto-parser</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.fasterxml.jackson.core</groupId>
+      <artifactId>jackson-core</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.airlift</groupId>
+      <artifactId>slice</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>org.antlr</groupId>
+      <artifactId>antlr4-runtime</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.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.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-core/6.4.1/solr-core-6.4.1.pom
------------------------------------------------------------------------------
    svn:eol-style = native

Added: dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-core/6.4.1/solr-core-6.4.1.pom.asc
==============================================================================
--- dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-core/6.4.1/solr-core-6.4.1.pom.asc (added)
+++ dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-core/6.4.1/solr-core-6.4.1.pom.asc Wed Feb  1 16:59:34 2017
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v1
+
+iQIcBAABAgAGBQJYkegWAAoJEAUaD692vGUHrhkQANfIFcgiMm8+fohaic0E93An
+aVmCalhiwxVkgvlGI5Oou0ZecwJOEV7xs15ayQyIY6VqCUDoAZsnNWD/R9UillAO
+yN2QKwzSZx480Ipfb9fUz/i0srw9swSW8jOhD4Tq9qwJj5R+PC/BqnUPeC5xc7bF
+ligXUeoHLSZn9SyX3sSr7Cjedprgtf02DOF7bZ3I7F84HR6px+tUmSLDjgMvTvY5
++I6ACwufEHm9YibxjIg23caymvFQt+KNXBmLyvx3x+Eh4TNjHxN55Bg0UWjz2A0p
+ykfWA82hFecZlvVOYeZwD6B2LTG+bCmn7kFZavdq26Oj/pFh9W7XzEWLAu5L3EW3
+q9SCXwcYxnsNZ3Q2xYQ3kE1QFFsGb6/bMg5y6v+c8ERYbUWHm7+ivc1zWX0pnrNb
+zW5VDLIMbprcRGaFQBfdkP5MzSXJIHnDDmhMIYFStKgUIgkTS2X1OjyGm3fSwRPl
+iC1uP7/wpv/iJHkCcCPkn8GnMX7NA7izzmP/qZcigRgd4dH2cOrcQBZtHj5Xj8BN
+JCp8AE/WvmPBn9AuAnVhzSNRftqxubzCyu2ApzrF6y37wIL22rSj4y9iQIOTDxra
+Y11V0xWdQcbrt3/UM0Qg1NxT5ALcyi+D+2SgvgjRyQoeGSDz1SxCw8xWOrAAWDzc
++JRGANYZ3HUbrqcsdGoy
+=QzvY
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-core/6.4.1/solr-core-6.4.1.pom.md5
==============================================================================
--- dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-core/6.4.1/solr-core-6.4.1.pom.md5 (added)
+++ dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-core/6.4.1/solr-core-6.4.1.pom.md5 Wed Feb  1 16:59:34 2017
@@ -0,0 +1 @@
+ca473b83e18c6e379dde4fd478d1c7cb
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-core/6.4.1/solr-core-6.4.1.pom.sha1
==============================================================================
--- dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-core/6.4.1/solr-core-6.4.1.pom.sha1 (added)
+++ dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-core/6.4.1/solr-core-6.4.1.pom.sha1 Wed Feb  1 16:59:34 2017
@@ -0,0 +1 @@
+6b92271ca44d5c68aa3cea868951fe02ddd452d3
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-core/maven-metadata.xml
==============================================================================
--- dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-core/maven-metadata.xml (added)
+++ dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-core/maven-metadata.xml Wed Feb  1 16:59:34 2017
@@ -0,0 +1,12 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<metadata>
+  <groupId>org.apache.solr</groupId>
+  <artifactId>solr-core</artifactId>
+  <version>6.4.1</version>
+  <versioning>
+    <versions>
+      <version>6.4.1</version>
+    </versions>
+    <lastUpdated>20170201135107</lastUpdated>
+  </versioning>
+</metadata>

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

Added: dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-core/maven-metadata.xml.md5
==============================================================================
--- dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-core/maven-metadata.xml.md5 (added)
+++ dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-core/maven-metadata.xml.md5 Wed Feb  1 16:59:34 2017
@@ -0,0 +1 @@
+cf2368827c94cb2d0a759aeedb2774e2
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-core/maven-metadata.xml.sha1
==============================================================================
--- dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-core/maven-metadata.xml.sha1 (added)
+++ dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-core/maven-metadata.xml.sha1 Wed Feb  1 16:59:34 2017
@@ -0,0 +1 @@
+bfb54cc5e234fa35cb2519138a04e39dde50d379
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-dataimporthandler-extras/6.4.1/solr-dataimporthandler-extras-6.4.1-javadoc.jar
==============================================================================
Binary file - no diff available.

Propchange: dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-dataimporthandler-extras/6.4.1/solr-dataimporthandler-extras-6.4.1-javadoc.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-dataimporthandler-extras/6.4.1/solr-dataimporthandler-extras-6.4.1-javadoc.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-dataimporthandler-extras/6.4.1/solr-dataimporthandler-extras-6.4.1-javadoc.jar.asc (added)
+++ dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-dataimporthandler-extras/6.4.1/solr-dataimporthandler-extras-6.4.1-javadoc.jar.asc Wed Feb  1 16:59:34 2017
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v1
+
+iQIcBAABAgAGBQJYkegXAAoJEAUaD692vGUHNggQAKwRV/p/2qo6Dltp8M+I6p/H
+Bl3OByJYdW5pFGOOSBg/0rKFMrolLzSuYWVH6pyFSWQjpYrCqJ7kfeADJDKReaJ/
+8bsOWEc1IhAQ5hWBuSDndW4kTFAYvSVhOJElo5ksy+u9OXeydvc4bZa2B/OZj3ap
+mMK3A1A4e/JB/mvK/Tjq6Th27bs7GIyMZ96EwRg+RYugiBq5Zamn/Rd/up0kSLgv
+YLdRh5zU2omw/hUXv5y3hf/KPpFdIdDFNvY23fO9tX6RkJlCH9BTw3MEeTbWiJK2
+Rg3CZbx1YkB0RM3Nlf/vywILOm0YFwtYErdsPwlXG8dIYttOYfwIxpUZEShPMHjt
+nVkRdvr12NN6stxfdAjg1XPieQzWhIxiupz79CXSq07jW8ZetUrrzLvT8eSrG1r7
+3WDxGQYg2UUmMxVgxlxIW5fR228kL6B2TlnJtjEJsBggOXS4NrjcwSybib9RYDCM
+SNrW/TV+XQWqA+6yhRNtWm8Bc6iLl8irAgsI/qZrUGec0lR0ua4EaRfmpcwru5ZN
+Cn40ClpGD40T5DcYUn76zWC0Dw2VCBvVEDZMGK3f7wGoVwy/AlqNsa9M85/EiGwT
+WckP5ppJTyizMlSx7o5FaT00+pojoCr+iCJd1ckCyuC3euP3qHTU5pGk7fYPVURl
+Vw128j/9owSg+dPs9NH/
+=29HO
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-dataimporthandler-extras/6.4.1/solr-dataimporthandler-extras-6.4.1-javadoc.jar.md5
==============================================================================
--- dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-dataimporthandler-extras/6.4.1/solr-dataimporthandler-extras-6.4.1-javadoc.jar.md5 (added)
+++ dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-dataimporthandler-extras/6.4.1/solr-dataimporthandler-extras-6.4.1-javadoc.jar.md5 Wed Feb  1 16:59:34 2017
@@ -0,0 +1 @@
+e7ba284951b247abcd1a9f3172527535
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-dataimporthandler-extras/6.4.1/solr-dataimporthandler-extras-6.4.1-javadoc.jar.sha1
==============================================================================
--- dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-dataimporthandler-extras/6.4.1/solr-dataimporthandler-extras-6.4.1-javadoc.jar.sha1 (added)
+++ dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-dataimporthandler-extras/6.4.1/solr-dataimporthandler-extras-6.4.1-javadoc.jar.sha1 Wed Feb  1 16:59:34 2017
@@ -0,0 +1 @@
+dec95cc72972224430ae38e05ce21dc35aabbacc
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-dataimporthandler-extras/6.4.1/solr-dataimporthandler-extras-6.4.1-sources.jar
==============================================================================
Binary file - no diff available.