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

svn commit: r17848 [18/22] - in /dev/lucene/lucene-solr-6.4.0-RC1-revbbe4b08cc1fb673d0c3eb4b8455f23ddc1364124: ./ 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.0-RC1-revbbe4b08cc1fb673d0c3eb4b8455f23ddc1364124/solr/maven/org/apache/solr/solr-langid/6.4.0/solr-langid-6.4.0.pom
==============================================================================
--- dev/lucene/lucene-solr-6.4.0-RC1-revbbe4b08cc1fb673d0c3eb4b8455f23ddc1364124/solr/maven/org/apache/solr/solr-langid/6.4.0/solr-langid-6.4.0.pom (added)
+++ dev/lucene/lucene-solr-6.4.0-RC1-revbbe4b08cc1fb673d0c3eb4b8455f23ddc1364124/solr/maven/org/apache/solr/solr-langid/6.4.0/solr-langid-6.4.0.pom Tue Jan 17 16:00:55 2017
@@ -0,0 +1,583 @@
+<!--
+  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.0</version>
+    <relativePath>../../pom.xml</relativePath>
+  </parent>
+  <groupId>org.apache.solr</groupId>
+  <artifactId>solr-langid</artifactId>
+  <packaging>jar</packaging>
+  <name>Apache Solr Language Identifier</name>
+  <description>
+    This module is intended to be used while indexing documents.
+    It is implemented as an UpdateProcessor to be placed in an UpdateChain.
+    Its purpose is to identify language from documents and tag the document with language code.
+  </description>
+  <properties>
+    <module-directory>solr/contrib/langid</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.cybozu.labs</groupId>
+      <artifactId>langdetect</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.arnx</groupId>
+      <artifactId>jsonic</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>
+    <resources>
+      <resource>
+        <directory>${module-path}/src/resources</directory>
+      </resource>
+    </resources>
+    <testResources>
+      <testResource>
+        <directory>${module-path}/src/test-files</directory>
+      </testResource>
+      <testResource>
+        <directory>${top-level}/dev-tools/maven/solr</directory>
+        <includes>
+          <include>maven.testlogging.properties</include>
+        </includes>
+      </testResource>
+    </testResources>
+  </build>
+</project>

Added: dev/lucene/lucene-solr-6.4.0-RC1-revbbe4b08cc1fb673d0c3eb4b8455f23ddc1364124/solr/maven/org/apache/solr/solr-langid/6.4.0/solr-langid-6.4.0.pom.asc
==============================================================================
--- dev/lucene/lucene-solr-6.4.0-RC1-revbbe4b08cc1fb673d0c3eb4b8455f23ddc1364124/solr/maven/org/apache/solr/solr-langid/6.4.0/solr-langid-6.4.0.pom.asc (added)
+++ dev/lucene/lucene-solr-6.4.0-RC1-revbbe4b08cc1fb673d0c3eb4b8455f23ddc1364124/solr/maven/org/apache/solr/solr-langid/6.4.0/solr-langid-6.4.0.pom.asc Tue Jan 17 16:00:55 2017
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v2
+
+iQIcBAABCAAGBQJYfjJsAAoJEHB7fZ9v24EFZ2kP+wRkycUSB/V+eZyoFZg/0DIe
+hf6UOOGq//gu9oTqPvnXLGMMzq3/fTBlfCLf6FCBVtQD2BDRjozNcUZwAIvrp/k1
+0moW/vL5ww0gedRih2lCbonN2u5eFt6XtH1/hSi19JjkjVPjbPLPfu00RNmpwhas
+46DXue05Ol1eC0IPQtdvC39z4ECNkqVqGtyw9d5ae3hsy3/GQmktRDygTjCEU037
+qRs2AC6pAJJhR2xX3vRa43SgAHcNvw8vgqUvgi6BdO3ejfhh98O4Pa8T3hycuWxB
+JWUQejVFvcjQM3vtr5WUWrqE5E85nLLFnEszdXLFbn7Q9NCW3ELEzuJyEeaKfHkw
+JNC06WXHaAK4gxSr9j37WLOg1/+lBYq6otnk67WLQVaS2gPtqSW8IV3a2eD2Aqx+
+3ig4UoVtUUixXN6cVKL/283+H2Ls2x2HLNgYow/AvfRTm+EMgnfy5E8MDdi9NKks
+4ZEIpQigol/cF8Zl04cMPiNVk201eksLQ8kBanw7dS055qlx/RoESEeNSRrr7PdE
+QaVUl2U2sgyKD5G6JL3eICKizXBbRYFcZs281wNonqGHlabL9YWinwkdKXIb7ZH7
+xfmH4Nfy1NLHEUO1pQBJLFsensWbtPYV/HocCPU+TrsWiYP/DNfmqW7S7xxzjdzI
+brrg5qiZyyTneUcmwg0x
+=ALcU
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-6.4.0-RC1-revbbe4b08cc1fb673d0c3eb4b8455f23ddc1364124/solr/maven/org/apache/solr/solr-langid/6.4.0/solr-langid-6.4.0.pom.md5
==============================================================================
--- dev/lucene/lucene-solr-6.4.0-RC1-revbbe4b08cc1fb673d0c3eb4b8455f23ddc1364124/solr/maven/org/apache/solr/solr-langid/6.4.0/solr-langid-6.4.0.pom.md5 (added)
+++ dev/lucene/lucene-solr-6.4.0-RC1-revbbe4b08cc1fb673d0c3eb4b8455f23ddc1364124/solr/maven/org/apache/solr/solr-langid/6.4.0/solr-langid-6.4.0.pom.md5 Tue Jan 17 16:00:55 2017
@@ -0,0 +1 @@
+26253e0856575c1484fa40b7e0492c2f
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.4.0-RC1-revbbe4b08cc1fb673d0c3eb4b8455f23ddc1364124/solr/maven/org/apache/solr/solr-langid/6.4.0/solr-langid-6.4.0.pom.sha1
==============================================================================
--- dev/lucene/lucene-solr-6.4.0-RC1-revbbe4b08cc1fb673d0c3eb4b8455f23ddc1364124/solr/maven/org/apache/solr/solr-langid/6.4.0/solr-langid-6.4.0.pom.sha1 (added)
+++ dev/lucene/lucene-solr-6.4.0-RC1-revbbe4b08cc1fb673d0c3eb4b8455f23ddc1364124/solr/maven/org/apache/solr/solr-langid/6.4.0/solr-langid-6.4.0.pom.sha1 Tue Jan 17 16:00:55 2017
@@ -0,0 +1 @@
+f7ea603a5baab1fbbf75492e3e1b43217ed5f1d3
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.4.0-RC1-revbbe4b08cc1fb673d0c3eb4b8455f23ddc1364124/solr/maven/org/apache/solr/solr-langid/maven-metadata.xml
==============================================================================
--- dev/lucene/lucene-solr-6.4.0-RC1-revbbe4b08cc1fb673d0c3eb4b8455f23ddc1364124/solr/maven/org/apache/solr/solr-langid/maven-metadata.xml (added)
+++ dev/lucene/lucene-solr-6.4.0-RC1-revbbe4b08cc1fb673d0c3eb4b8455f23ddc1364124/solr/maven/org/apache/solr/solr-langid/maven-metadata.xml Tue Jan 17 16:00:55 2017
@@ -0,0 +1,12 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<metadata>
+  <groupId>org.apache.solr</groupId>
+  <artifactId>solr-langid</artifactId>
+  <version>6.4.0</version>
+  <versioning>
+    <versions>
+      <version>6.4.0</version>
+    </versions>
+    <lastUpdated>20170117150344</lastUpdated>
+  </versioning>
+</metadata>

Added: dev/lucene/lucene-solr-6.4.0-RC1-revbbe4b08cc1fb673d0c3eb4b8455f23ddc1364124/solr/maven/org/apache/solr/solr-langid/maven-metadata.xml.md5
==============================================================================
--- dev/lucene/lucene-solr-6.4.0-RC1-revbbe4b08cc1fb673d0c3eb4b8455f23ddc1364124/solr/maven/org/apache/solr/solr-langid/maven-metadata.xml.md5 (added)
+++ dev/lucene/lucene-solr-6.4.0-RC1-revbbe4b08cc1fb673d0c3eb4b8455f23ddc1364124/solr/maven/org/apache/solr/solr-langid/maven-metadata.xml.md5 Tue Jan 17 16:00:55 2017
@@ -0,0 +1 @@
+91698e13d35a50f09aea4da99d6a366f
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.4.0-RC1-revbbe4b08cc1fb673d0c3eb4b8455f23ddc1364124/solr/maven/org/apache/solr/solr-langid/maven-metadata.xml.sha1
==============================================================================
--- dev/lucene/lucene-solr-6.4.0-RC1-revbbe4b08cc1fb673d0c3eb4b8455f23ddc1364124/solr/maven/org/apache/solr/solr-langid/maven-metadata.xml.sha1 (added)
+++ dev/lucene/lucene-solr-6.4.0-RC1-revbbe4b08cc1fb673d0c3eb4b8455f23ddc1364124/solr/maven/org/apache/solr/solr-langid/maven-metadata.xml.sha1 Tue Jan 17 16:00:55 2017
@@ -0,0 +1 @@
+0f5a214823628a22fe1637ffb8f7307eba98d5fa
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.4.0-RC1-revbbe4b08cc1fb673d0c3eb4b8455f23ddc1364124/solr/maven/org/apache/solr/solr-ltr/6.4.0/solr-ltr-6.4.0-javadoc.jar
==============================================================================
Binary file - no diff available.

Propchange: dev/lucene/lucene-solr-6.4.0-RC1-revbbe4b08cc1fb673d0c3eb4b8455f23ddc1364124/solr/maven/org/apache/solr/solr-ltr/6.4.0/solr-ltr-6.4.0-javadoc.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: dev/lucene/lucene-solr-6.4.0-RC1-revbbe4b08cc1fb673d0c3eb4b8455f23ddc1364124/solr/maven/org/apache/solr/solr-ltr/6.4.0/solr-ltr-6.4.0-javadoc.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-6.4.0-RC1-revbbe4b08cc1fb673d0c3eb4b8455f23ddc1364124/solr/maven/org/apache/solr/solr-ltr/6.4.0/solr-ltr-6.4.0-javadoc.jar.asc (added)
+++ dev/lucene/lucene-solr-6.4.0-RC1-revbbe4b08cc1fb673d0c3eb4b8455f23ddc1364124/solr/maven/org/apache/solr/solr-ltr/6.4.0/solr-ltr-6.4.0-javadoc.jar.asc Tue Jan 17 16:00:55 2017
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v2
+
+iQIcBAABCAAGBQJYfjJsAAoJEHB7fZ9v24EFvIgQAMIsmkqEIGuokrpgibSbftYN
+ULKn1hc0m1SlwY0QGTIUc7ZydTsRSfsnZq6OpiHfjqGuFgp8R28MFszUTwT34uGE
+9hjNaszblpnLJ587eI6ifV4PFreR1/JFysJprjYK70OX8e+xaGppqldAKUCaBONA
+csVfqo7mox0zV6ex0t61JogAZtV2H5al3EtlpxhpNulMxT/AJq68l2d1KbfSHh2U
+f17OMINoqwp4x7CSPfnNUrzH+kpZhSJvb7hYIVa/2B8WcZhlQ/xaU7kyy3Y6OCrL
+Jl+wbaQUBC62SXG9wwk6qwvABu+h8e1zRP3Q5Zi4T80XBhFc7LQ1/32Iw1aE4his
+WaFljRSzbSrQoJvEJ4Ltwl5eApfCN913uMDPsUwieeXJjOHZSDVDr21ltxzwwVL1
+FRTnJTGh2b2YVyLmbXR3z9vAzZuO51HLVErRh3j/cMry6qJ4B70HdFndJQu8tMS6
+nA1FjUTOFFpzdVCMlgx2SkP0geBZgaxgab+/OO5G8abZyOuUxXVs9oK9DniLbGqu
+9JsXAL1PFBnr7cbQKWrtgN+7KvuYMCoKij2xraeWs0mbMxuj/dTH/asd7PjNzZtJ
+EAPeqFBCS8FAdwqg6AwLroQFk/oL1zRVEKoHDxJXqnMTfKfR0I+pGgvkyE6SgZSJ
+8wz9LnippVM2U23pGtab
+=dbIR
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-6.4.0-RC1-revbbe4b08cc1fb673d0c3eb4b8455f23ddc1364124/solr/maven/org/apache/solr/solr-ltr/6.4.0/solr-ltr-6.4.0-javadoc.jar.md5
==============================================================================
--- dev/lucene/lucene-solr-6.4.0-RC1-revbbe4b08cc1fb673d0c3eb4b8455f23ddc1364124/solr/maven/org/apache/solr/solr-ltr/6.4.0/solr-ltr-6.4.0-javadoc.jar.md5 (added)
+++ dev/lucene/lucene-solr-6.4.0-RC1-revbbe4b08cc1fb673d0c3eb4b8455f23ddc1364124/solr/maven/org/apache/solr/solr-ltr/6.4.0/solr-ltr-6.4.0-javadoc.jar.md5 Tue Jan 17 16:00:55 2017
@@ -0,0 +1 @@
+3cad9f5de3b8771f6f289d9a41a5c2e3
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.4.0-RC1-revbbe4b08cc1fb673d0c3eb4b8455f23ddc1364124/solr/maven/org/apache/solr/solr-ltr/6.4.0/solr-ltr-6.4.0-javadoc.jar.sha1
==============================================================================
--- dev/lucene/lucene-solr-6.4.0-RC1-revbbe4b08cc1fb673d0c3eb4b8455f23ddc1364124/solr/maven/org/apache/solr/solr-ltr/6.4.0/solr-ltr-6.4.0-javadoc.jar.sha1 (added)
+++ dev/lucene/lucene-solr-6.4.0-RC1-revbbe4b08cc1fb673d0c3eb4b8455f23ddc1364124/solr/maven/org/apache/solr/solr-ltr/6.4.0/solr-ltr-6.4.0-javadoc.jar.sha1 Tue Jan 17 16:00:55 2017
@@ -0,0 +1 @@
+879cf191ff596434857624bc8e517c817247a228
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.4.0-RC1-revbbe4b08cc1fb673d0c3eb4b8455f23ddc1364124/solr/maven/org/apache/solr/solr-ltr/6.4.0/solr-ltr-6.4.0-sources.jar
==============================================================================
Binary file - no diff available.

Propchange: dev/lucene/lucene-solr-6.4.0-RC1-revbbe4b08cc1fb673d0c3eb4b8455f23ddc1364124/solr/maven/org/apache/solr/solr-ltr/6.4.0/solr-ltr-6.4.0-sources.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: dev/lucene/lucene-solr-6.4.0-RC1-revbbe4b08cc1fb673d0c3eb4b8455f23ddc1364124/solr/maven/org/apache/solr/solr-ltr/6.4.0/solr-ltr-6.4.0-sources.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-6.4.0-RC1-revbbe4b08cc1fb673d0c3eb4b8455f23ddc1364124/solr/maven/org/apache/solr/solr-ltr/6.4.0/solr-ltr-6.4.0-sources.jar.asc (added)
+++ dev/lucene/lucene-solr-6.4.0-RC1-revbbe4b08cc1fb673d0c3eb4b8455f23ddc1364124/solr/maven/org/apache/solr/solr-ltr/6.4.0/solr-ltr-6.4.0-sources.jar.asc Tue Jan 17 16:00:55 2017
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v2
+
+iQIcBAABCAAGBQJYfjJsAAoJEHB7fZ9v24EFBkUP/RyjYckjJmJBJOurUrDE+oP7
+1CMKqSq/u3jk9+vaBJMCw2fREW4Lh+hnvdDh5+K9ZBJvK5IB5XRiXYr9uD+3Z3mQ
+uK3zvMcl7XphzfD+1jt8pIopP3iqosB8P4Oan4UV2EwkBQGjSHp5jnkIY2r++nOR
+yNyBr89Sr7uJniKSFQwHP9or1z1aJhvO9LnJMy00aVeAoe+VV22Jz0fgSMoaQJye
+teiYOEXnzLYndClfkc0rzvErzJut2GenKzMPM4pB3vE0oNdwJATflTnmeATwTC3U
+8wtGmZMTDB/MXaM8N+Fmgqls2tyMNao4xSu162BiWr1Qyxna6bg5QLY7SoAItru8
+Kvc9NVCs70mrenHDdrcipJNQ0PBfvkgSgrKdAUxIWnaA/IyGhWt3paQbxLMI7hox
+DIG5jti+3VBpCZ0P+NYKYrAJuidKER34e3LliSsQbTcTtD4RbektlsbW+JgDbBGo
+5y0jJS8xVvb15hlW/lKknMBImxldyUJuF3HISFP8prUrU84ghV9IvbY6F3+6+B9M
+pY8UU2lLDhD4hV+JsHo6iLKC+ruQmuLJ5ZwhijYveoaBWSC9LP39MOGVgHuGIR7C
+yoj1RiDTeED3/um4qHq1fwKvJeTvvNgfHnX/GWFdtZitkoERMYhl2pM7GNYX3I1m
+Q59xEAUjg7duWKBF8Uv1
+=xqqo
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-6.4.0-RC1-revbbe4b08cc1fb673d0c3eb4b8455f23ddc1364124/solr/maven/org/apache/solr/solr-ltr/6.4.0/solr-ltr-6.4.0-sources.jar.md5
==============================================================================
--- dev/lucene/lucene-solr-6.4.0-RC1-revbbe4b08cc1fb673d0c3eb4b8455f23ddc1364124/solr/maven/org/apache/solr/solr-ltr/6.4.0/solr-ltr-6.4.0-sources.jar.md5 (added)
+++ dev/lucene/lucene-solr-6.4.0-RC1-revbbe4b08cc1fb673d0c3eb4b8455f23ddc1364124/solr/maven/org/apache/solr/solr-ltr/6.4.0/solr-ltr-6.4.0-sources.jar.md5 Tue Jan 17 16:00:55 2017
@@ -0,0 +1 @@
+cc40bc4adc6d0c8d8cb2d163bc019646
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.4.0-RC1-revbbe4b08cc1fb673d0c3eb4b8455f23ddc1364124/solr/maven/org/apache/solr/solr-ltr/6.4.0/solr-ltr-6.4.0-sources.jar.sha1
==============================================================================
--- dev/lucene/lucene-solr-6.4.0-RC1-revbbe4b08cc1fb673d0c3eb4b8455f23ddc1364124/solr/maven/org/apache/solr/solr-ltr/6.4.0/solr-ltr-6.4.0-sources.jar.sha1 (added)
+++ dev/lucene/lucene-solr-6.4.0-RC1-revbbe4b08cc1fb673d0c3eb4b8455f23ddc1364124/solr/maven/org/apache/solr/solr-ltr/6.4.0/solr-ltr-6.4.0-sources.jar.sha1 Tue Jan 17 16:00:55 2017
@@ -0,0 +1 @@
+74d29423f4ca7237d8cad93cdfc5805aec519bac
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.4.0-RC1-revbbe4b08cc1fb673d0c3eb4b8455f23ddc1364124/solr/maven/org/apache/solr/solr-ltr/6.4.0/solr-ltr-6.4.0.jar
==============================================================================
Binary file - no diff available.

Propchange: dev/lucene/lucene-solr-6.4.0-RC1-revbbe4b08cc1fb673d0c3eb4b8455f23ddc1364124/solr/maven/org/apache/solr/solr-ltr/6.4.0/solr-ltr-6.4.0.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: dev/lucene/lucene-solr-6.4.0-RC1-revbbe4b08cc1fb673d0c3eb4b8455f23ddc1364124/solr/maven/org/apache/solr/solr-ltr/6.4.0/solr-ltr-6.4.0.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-6.4.0-RC1-revbbe4b08cc1fb673d0c3eb4b8455f23ddc1364124/solr/maven/org/apache/solr/solr-ltr/6.4.0/solr-ltr-6.4.0.jar.asc (added)
+++ dev/lucene/lucene-solr-6.4.0-RC1-revbbe4b08cc1fb673d0c3eb4b8455f23ddc1364124/solr/maven/org/apache/solr/solr-ltr/6.4.0/solr-ltr-6.4.0.jar.asc Tue Jan 17 16:00:55 2017
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v2
+
+iQIcBAABCAAGBQJYfjJsAAoJEHB7fZ9v24EF4K0P/1IygmFFVjWg160c/YdxPTN6
+HMUHJOKkbspommKO1HcanDku+tiFc7OS73I8DrErEVSIFLcliACvtnpC/4oCGWTT
+l5/rvkqhTrvpB0om/IZ3BT4U71PqKWaLzV7ja+Srp9bXBDqFJ0ljNcxR5IJhyypo
+I+bu/IlGtouuKqn2Z1nMRtA3Fn30Ssj5K4rD3gAIWN/LGWFgoKEYoJdykXDRRRw6
+PMBRmz8WWeeSzbUMW4ogEAaSF3Gb1Skq0Wqms+gghngwf1VfATGteaq6RlPFVK1J
+N5TGk8VryDcvOvQBditw09aLR/sDqxWBYgiWe63RWFAZIKPscwkEi28PdF7Up7dw
+fpIjcJNMV7dIrwv2cTm34wBlU1r0J88Rf/3uUhRcSAXrbW5JRpSh0QfTGEaWs0bX
+J8OI4dkxvjh2Xyt+mNjsz1OqWQ5Wq+m9e/+v8RybKi7cUTCyyfbHDxmH+q8XPgh2
+/fR8p6VYxL51AaiIIu6p6rX/4YVHYnm0HS7RY5vx07wOwC8dE8imsoVkTSZ9cdRi
+dyZYrPv8nNAHlRqmMdby3cTJoGLjXUMjGlr1DQY5tliLt1+ICRawIgjjwFK15IXK
+N80qa0x9HKba7zVh1W2c5cUNp8RW0Fnr3OdjfGf7o9Ym49HhFQeEEgPG5PGUo45p
+h0KYp+ENRsBnDmxnKXfz
+=zNpI
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-6.4.0-RC1-revbbe4b08cc1fb673d0c3eb4b8455f23ddc1364124/solr/maven/org/apache/solr/solr-ltr/6.4.0/solr-ltr-6.4.0.jar.md5
==============================================================================
--- dev/lucene/lucene-solr-6.4.0-RC1-revbbe4b08cc1fb673d0c3eb4b8455f23ddc1364124/solr/maven/org/apache/solr/solr-ltr/6.4.0/solr-ltr-6.4.0.jar.md5 (added)
+++ dev/lucene/lucene-solr-6.4.0-RC1-revbbe4b08cc1fb673d0c3eb4b8455f23ddc1364124/solr/maven/org/apache/solr/solr-ltr/6.4.0/solr-ltr-6.4.0.jar.md5 Tue Jan 17 16:00:55 2017
@@ -0,0 +1 @@
+548ec1d624a6ee904753bdcffde880e8
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.4.0-RC1-revbbe4b08cc1fb673d0c3eb4b8455f23ddc1364124/solr/maven/org/apache/solr/solr-ltr/6.4.0/solr-ltr-6.4.0.jar.sha1
==============================================================================
--- dev/lucene/lucene-solr-6.4.0-RC1-revbbe4b08cc1fb673d0c3eb4b8455f23ddc1364124/solr/maven/org/apache/solr/solr-ltr/6.4.0/solr-ltr-6.4.0.jar.sha1 (added)
+++ dev/lucene/lucene-solr-6.4.0-RC1-revbbe4b08cc1fb673d0c3eb4b8455f23ddc1364124/solr/maven/org/apache/solr/solr-ltr/6.4.0/solr-ltr-6.4.0.jar.sha1 Tue Jan 17 16:00:55 2017
@@ -0,0 +1 @@
+b0d53b256e081c77653bf3a530a9d82e15966ccd
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.4.0-RC1-revbbe4b08cc1fb673d0c3eb4b8455f23ddc1364124/solr/maven/org/apache/solr/solr-ltr/6.4.0/solr-ltr-6.4.0.pom
==============================================================================
--- dev/lucene/lucene-solr-6.4.0-RC1-revbbe4b08cc1fb673d0c3eb4b8455f23ddc1364124/solr/maven/org/apache/solr/solr-ltr/6.4.0/solr-ltr-6.4.0.pom (added)
+++ dev/lucene/lucene-solr-6.4.0-RC1-revbbe4b08cc1fb673d0c3eb4b8455f23ddc1364124/solr/maven/org/apache/solr/solr-ltr/6.4.0/solr-ltr-6.4.0.pom Tue Jan 17 16:00:55 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.0</version>
+    <relativePath>../../pom.xml</relativePath>
+  </parent>
+  <groupId>org.apache.solr</groupId>
+  <artifactId>solr-ltr</artifactId>
+  <packaging>jar</packaging>
+  <name>Apache Solr Analytics Package</name>
+  <description>
+    Apache Solr Learning to Rank Package
+  </description>
+  <properties>
+    <module-directory>solr/contrib/ltr</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-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}/src/java</sourceDirectory>
+    <testSourceDirectory>${module-path}/src/test</testSourceDirectory>
+    <testResources>
+      <testResource>
+        <directory>${module-path}/src/test-files</directory>
+      </testResource>
+      <testResource>
+        <directory>${top-level}/dev-tools/maven/solr</directory>
+        <includes>
+          <include>maven.testlogging.properties</include>
+        </includes>
+      </testResource>
+    </testResources>
+  </build>
+</project>

Added: dev/lucene/lucene-solr-6.4.0-RC1-revbbe4b08cc1fb673d0c3eb4b8455f23ddc1364124/solr/maven/org/apache/solr/solr-ltr/6.4.0/solr-ltr-6.4.0.pom.asc
==============================================================================
--- dev/lucene/lucene-solr-6.4.0-RC1-revbbe4b08cc1fb673d0c3eb4b8455f23ddc1364124/solr/maven/org/apache/solr/solr-ltr/6.4.0/solr-ltr-6.4.0.pom.asc (added)
+++ dev/lucene/lucene-solr-6.4.0-RC1-revbbe4b08cc1fb673d0c3eb4b8455f23ddc1364124/solr/maven/org/apache/solr/solr-ltr/6.4.0/solr-ltr-6.4.0.pom.asc Tue Jan 17 16:00:55 2017
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v2
+
+iQIcBAABCAAGBQJYfjJsAAoJEHB7fZ9v24EFRiIQAJHcqCVLDB5B+qg3rAaPCC7E
+Gc70XeswJ31mY++tsyEOXDgTOnzzDiAZEFuVIrJ+PIHwkGMifKk2ziVjE9mjDUFd
+2DT6mX9uyi2TzVt+1yVJvOyME5amI206LpoMo8XA0zaRnwAqwpuZVE0wrbA9xSve
+XJgzqQgCzs66/NXSEPIapwoQ4ya8p2cIaFW6AdIWxfjILlIEHdq7C05rvhS1kheO
+R8Evf+631qfrOhKUUWuGsNONPqb/c8qddHYB2omagYs5DiOCsNUMtj/P3i0PCSXd
+iI22YtuRbBjZuKdZQHIKeYzUn9abxOcHAfMj8er4QSS8xnivIHz8qbP1iCO+gV7y
+XE/J7nxx1sBxIRA/5EebegbAhC78jj2mq5RLEc2eaR/bZ5/G6hS3D2Uc5TtMJGKf
+cL87L1HOQbWIkLEPHHkqF2CCCosnll6IfmFn1qNhA1ZDuhc+3O9VLshCqlqcVAe+
+7ZvUL8bO3kPHQCvNLUCIF6ZK8a2RwemvTTUX9yHbvZkZZuKweQ0rb2anxwEJTpVs
+UIIgur5O9L57T6wuURJMAMapL/vwVbJdjLrWO8P26HmhfVIolFvoma+AlGi2l+Fo
+DPwY7FLmVL318nLrT0/2js0/7ww6vGUwSu8S0E3lOljH8TQYe0/n2Hq15jUeFQey
+NRjHUrUsqYhhCS444+vy
+=efzq
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-6.4.0-RC1-revbbe4b08cc1fb673d0c3eb4b8455f23ddc1364124/solr/maven/org/apache/solr/solr-ltr/6.4.0/solr-ltr-6.4.0.pom.md5
==============================================================================
--- dev/lucene/lucene-solr-6.4.0-RC1-revbbe4b08cc1fb673d0c3eb4b8455f23ddc1364124/solr/maven/org/apache/solr/solr-ltr/6.4.0/solr-ltr-6.4.0.pom.md5 (added)
+++ dev/lucene/lucene-solr-6.4.0-RC1-revbbe4b08cc1fb673d0c3eb4b8455f23ddc1364124/solr/maven/org/apache/solr/solr-ltr/6.4.0/solr-ltr-6.4.0.pom.md5 Tue Jan 17 16:00:55 2017
@@ -0,0 +1 @@
+27b24b2ece451d2c2ccbf63f2dad3558
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.4.0-RC1-revbbe4b08cc1fb673d0c3eb4b8455f23ddc1364124/solr/maven/org/apache/solr/solr-ltr/6.4.0/solr-ltr-6.4.0.pom.sha1
==============================================================================
--- dev/lucene/lucene-solr-6.4.0-RC1-revbbe4b08cc1fb673d0c3eb4b8455f23ddc1364124/solr/maven/org/apache/solr/solr-ltr/6.4.0/solr-ltr-6.4.0.pom.sha1 (added)
+++ dev/lucene/lucene-solr-6.4.0-RC1-revbbe4b08cc1fb673d0c3eb4b8455f23ddc1364124/solr/maven/org/apache/solr/solr-ltr/6.4.0/solr-ltr-6.4.0.pom.sha1 Tue Jan 17 16:00:55 2017
@@ -0,0 +1 @@
+ccde6f68b26e4130699366d751521226e797cc98
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.4.0-RC1-revbbe4b08cc1fb673d0c3eb4b8455f23ddc1364124/solr/maven/org/apache/solr/solr-ltr/maven-metadata.xml
==============================================================================
--- dev/lucene/lucene-solr-6.4.0-RC1-revbbe4b08cc1fb673d0c3eb4b8455f23ddc1364124/solr/maven/org/apache/solr/solr-ltr/maven-metadata.xml (added)
+++ dev/lucene/lucene-solr-6.4.0-RC1-revbbe4b08cc1fb673d0c3eb4b8455f23ddc1364124/solr/maven/org/apache/solr/solr-ltr/maven-metadata.xml Tue Jan 17 16:00:55 2017
@@ -0,0 +1,12 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<metadata>
+  <groupId>org.apache.solr</groupId>
+  <artifactId>solr-ltr</artifactId>
+  <version>6.4.0</version>
+  <versioning>
+    <versions>
+      <version>6.4.0</version>
+    </versions>
+    <lastUpdated>20170117150346</lastUpdated>
+  </versioning>
+</metadata>

Added: dev/lucene/lucene-solr-6.4.0-RC1-revbbe4b08cc1fb673d0c3eb4b8455f23ddc1364124/solr/maven/org/apache/solr/solr-ltr/maven-metadata.xml.md5
==============================================================================
--- dev/lucene/lucene-solr-6.4.0-RC1-revbbe4b08cc1fb673d0c3eb4b8455f23ddc1364124/solr/maven/org/apache/solr/solr-ltr/maven-metadata.xml.md5 (added)
+++ dev/lucene/lucene-solr-6.4.0-RC1-revbbe4b08cc1fb673d0c3eb4b8455f23ddc1364124/solr/maven/org/apache/solr/solr-ltr/maven-metadata.xml.md5 Tue Jan 17 16:00:55 2017
@@ -0,0 +1 @@
+f14113236e755eccfc15c68c03ec6499
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.4.0-RC1-revbbe4b08cc1fb673d0c3eb4b8455f23ddc1364124/solr/maven/org/apache/solr/solr-ltr/maven-metadata.xml.sha1
==============================================================================
--- dev/lucene/lucene-solr-6.4.0-RC1-revbbe4b08cc1fb673d0c3eb4b8455f23ddc1364124/solr/maven/org/apache/solr/solr-ltr/maven-metadata.xml.sha1 (added)
+++ dev/lucene/lucene-solr-6.4.0-RC1-revbbe4b08cc1fb673d0c3eb4b8455f23ddc1364124/solr/maven/org/apache/solr/solr-ltr/maven-metadata.xml.sha1 Tue Jan 17 16:00:55 2017
@@ -0,0 +1 @@
+d03f5a9350a95b16054b66ab2ca67da9966b86d7
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.4.0-RC1-revbbe4b08cc1fb673d0c3eb4b8455f23ddc1364124/solr/maven/org/apache/solr/solr-map-reduce/6.4.0/solr-map-reduce-6.4.0-javadoc.jar
==============================================================================
Binary file - no diff available.

Propchange: dev/lucene/lucene-solr-6.4.0-RC1-revbbe4b08cc1fb673d0c3eb4b8455f23ddc1364124/solr/maven/org/apache/solr/solr-map-reduce/6.4.0/solr-map-reduce-6.4.0-javadoc.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: dev/lucene/lucene-solr-6.4.0-RC1-revbbe4b08cc1fb673d0c3eb4b8455f23ddc1364124/solr/maven/org/apache/solr/solr-map-reduce/6.4.0/solr-map-reduce-6.4.0-javadoc.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-6.4.0-RC1-revbbe4b08cc1fb673d0c3eb4b8455f23ddc1364124/solr/maven/org/apache/solr/solr-map-reduce/6.4.0/solr-map-reduce-6.4.0-javadoc.jar.asc (added)
+++ dev/lucene/lucene-solr-6.4.0-RC1-revbbe4b08cc1fb673d0c3eb4b8455f23ddc1364124/solr/maven/org/apache/solr/solr-map-reduce/6.4.0/solr-map-reduce-6.4.0-javadoc.jar.asc Tue Jan 17 16:00:55 2017
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v2
+
+iQIcBAABCAAGBQJYfjJsAAoJEHB7fZ9v24EFo5sP/3tHXz+3o4YivZrc6Br4XjXV
+AohS+jY3r06bHW0A5mXDum5DBWsoZDswn1iOHvG/xDcIvkeSb2OQFfGCc6GW8Uvf
+SKZ2u/FQqIn77z0L56RZ8mDBtS3SnXBCjGRRDWdAToUzjE2gujgZ7Iz9A5wilGha
+jTv30/S5/VMygwmF0mkgdKHTd972AeZAqGKyl3NWvzKQVHoTn1o4H0eepo3lSiwV
+K/1a6GtSUqHs+6w0ZVGZmg0lGZS7CVc1XFGxGjxvMKzl2lZuGGTTyZxnQ1HkiQ6X
+zbJVu5M/QZhHRIt7t1zzg9adm+kLLteDNvgnT6e40ZQLeu/53H6UlRHNpzZ79TUz
+Ns3nNS+TPFu1WtZoTPBYdzhuv5POvXf3GON+ZZ0Ivp6DT0J52YRNdaoZixaO5jPJ
+Zo4kzjyjl1Kd512bMix6CTWXzXrNlKk6K+zg/10v82fvgLJ16fho4X6yuAIB40Gy
+AGjJ8eWwLEIjIkWqLGLGAHSOZasbUKfswtNkc2miLZTsQEQC7ZAYImdG+bkj33GS
+SykDSZRqxNaGvopNTA9/Z5Qi0Opnno3QhOJ6D/B9XJAptILZkSNQKbqoF8kInovs
+8TXecQqvsnMQYhV1zf8r1bhQl87o6TvZc7OxEz+8AqS+Yi1uSu2T7tG1swYeapap
+xKtKAsRMmf0VhA4U/omf
+=3395
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-6.4.0-RC1-revbbe4b08cc1fb673d0c3eb4b8455f23ddc1364124/solr/maven/org/apache/solr/solr-map-reduce/6.4.0/solr-map-reduce-6.4.0-javadoc.jar.md5
==============================================================================
--- dev/lucene/lucene-solr-6.4.0-RC1-revbbe4b08cc1fb673d0c3eb4b8455f23ddc1364124/solr/maven/org/apache/solr/solr-map-reduce/6.4.0/solr-map-reduce-6.4.0-javadoc.jar.md5 (added)
+++ dev/lucene/lucene-solr-6.4.0-RC1-revbbe4b08cc1fb673d0c3eb4b8455f23ddc1364124/solr/maven/org/apache/solr/solr-map-reduce/6.4.0/solr-map-reduce-6.4.0-javadoc.jar.md5 Tue Jan 17 16:00:55 2017
@@ -0,0 +1 @@
+02eb0edfc90e721d5c7ad4a53fde1ae2
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.4.0-RC1-revbbe4b08cc1fb673d0c3eb4b8455f23ddc1364124/solr/maven/org/apache/solr/solr-map-reduce/6.4.0/solr-map-reduce-6.4.0-javadoc.jar.sha1
==============================================================================
--- dev/lucene/lucene-solr-6.4.0-RC1-revbbe4b08cc1fb673d0c3eb4b8455f23ddc1364124/solr/maven/org/apache/solr/solr-map-reduce/6.4.0/solr-map-reduce-6.4.0-javadoc.jar.sha1 (added)
+++ dev/lucene/lucene-solr-6.4.0-RC1-revbbe4b08cc1fb673d0c3eb4b8455f23ddc1364124/solr/maven/org/apache/solr/solr-map-reduce/6.4.0/solr-map-reduce-6.4.0-javadoc.jar.sha1 Tue Jan 17 16:00:55 2017
@@ -0,0 +1 @@
+b71ffa68b922df45fa1719238fe762d6877f6474
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.4.0-RC1-revbbe4b08cc1fb673d0c3eb4b8455f23ddc1364124/solr/maven/org/apache/solr/solr-map-reduce/6.4.0/solr-map-reduce-6.4.0-sources.jar
==============================================================================
Binary file - no diff available.

Propchange: dev/lucene/lucene-solr-6.4.0-RC1-revbbe4b08cc1fb673d0c3eb4b8455f23ddc1364124/solr/maven/org/apache/solr/solr-map-reduce/6.4.0/solr-map-reduce-6.4.0-sources.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: dev/lucene/lucene-solr-6.4.0-RC1-revbbe4b08cc1fb673d0c3eb4b8455f23ddc1364124/solr/maven/org/apache/solr/solr-map-reduce/6.4.0/solr-map-reduce-6.4.0-sources.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-6.4.0-RC1-revbbe4b08cc1fb673d0c3eb4b8455f23ddc1364124/solr/maven/org/apache/solr/solr-map-reduce/6.4.0/solr-map-reduce-6.4.0-sources.jar.asc (added)
+++ dev/lucene/lucene-solr-6.4.0-RC1-revbbe4b08cc1fb673d0c3eb4b8455f23ddc1364124/solr/maven/org/apache/solr/solr-map-reduce/6.4.0/solr-map-reduce-6.4.0-sources.jar.asc Tue Jan 17 16:00:55 2017
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v2
+
+iQIcBAABCAAGBQJYfjJtAAoJEHB7fZ9v24EFIX4QAL3Q72ahki2L2KX8+U0KNoRr
+1HgI+LOGtbE+ku4tlZawijirzDU0U2awKWV/T+kp8OlEx/3PwaBiLSF22oFlktCK
+V7e7cB/LaBtB1eBPeRExM/WGx+XemsyHkbtCsi8Cc2QlhlCrunxlLhuLKDzayLI/
+TVAEyBlQujWORQ/Yx+C1mT8HCLQ9dPb0dwyQHNnawFnhD0pu3dmbvSjt3gUvFEwr
+eJKTvk42gKDJiCwB8tXH0Lsheo37hzwU/mtVX+5xh1mpEZPIAzCxCWrYxISVwIQX
+tOTzF04G4mi4fLjaV3+HiBKcGqI1hB/zG+oAQMT1ONrB6CqrSfxdshcwl4zDNZfT
+Mut8+YfzhzWj1skqGpD/6104Pd84tVi1r3YR4gtJg0EsLp+GaKpHkZqxacMaok3G
+gPvgX2P9KQuZzMiM/2LHYncf0luBxXKidn68ZG9uPvBM1E6KNY962Bpje98bpmBr
+zDyBhKc4wQRCK3LVnxCDuUeWUsNYQpVomm8CiNAhU4M8xuzweaSpuev/GTSlEinG
+TRgAGdn1U/yryVsf+g5WR6PX61cRlNRwzbxDK7NQy8YfFpL9RVYfVLkH6+InMCtq
+uCXQuwwievBSjVTgHnkdt81N9qRHvb9j3uZYuw1/uBjOWQq91hhD9jACSAw2RXHu
+oN09pUwA7zvY35SAmGFp
+=yAIW
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-6.4.0-RC1-revbbe4b08cc1fb673d0c3eb4b8455f23ddc1364124/solr/maven/org/apache/solr/solr-map-reduce/6.4.0/solr-map-reduce-6.4.0-sources.jar.md5
==============================================================================
--- dev/lucene/lucene-solr-6.4.0-RC1-revbbe4b08cc1fb673d0c3eb4b8455f23ddc1364124/solr/maven/org/apache/solr/solr-map-reduce/6.4.0/solr-map-reduce-6.4.0-sources.jar.md5 (added)
+++ dev/lucene/lucene-solr-6.4.0-RC1-revbbe4b08cc1fb673d0c3eb4b8455f23ddc1364124/solr/maven/org/apache/solr/solr-map-reduce/6.4.0/solr-map-reduce-6.4.0-sources.jar.md5 Tue Jan 17 16:00:55 2017
@@ -0,0 +1 @@
+3445a7709c3653cef53ba5035d2af733
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.4.0-RC1-revbbe4b08cc1fb673d0c3eb4b8455f23ddc1364124/solr/maven/org/apache/solr/solr-map-reduce/6.4.0/solr-map-reduce-6.4.0-sources.jar.sha1
==============================================================================
--- dev/lucene/lucene-solr-6.4.0-RC1-revbbe4b08cc1fb673d0c3eb4b8455f23ddc1364124/solr/maven/org/apache/solr/solr-map-reduce/6.4.0/solr-map-reduce-6.4.0-sources.jar.sha1 (added)
+++ dev/lucene/lucene-solr-6.4.0-RC1-revbbe4b08cc1fb673d0c3eb4b8455f23ddc1364124/solr/maven/org/apache/solr/solr-map-reduce/6.4.0/solr-map-reduce-6.4.0-sources.jar.sha1 Tue Jan 17 16:00:55 2017
@@ -0,0 +1 @@
+9d820f7f2c4c5f0bdce92a5de5b99d9429a886e4
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.4.0-RC1-revbbe4b08cc1fb673d0c3eb4b8455f23ddc1364124/solr/maven/org/apache/solr/solr-map-reduce/6.4.0/solr-map-reduce-6.4.0.jar
==============================================================================
Binary file - no diff available.

Propchange: dev/lucene/lucene-solr-6.4.0-RC1-revbbe4b08cc1fb673d0c3eb4b8455f23ddc1364124/solr/maven/org/apache/solr/solr-map-reduce/6.4.0/solr-map-reduce-6.4.0.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: dev/lucene/lucene-solr-6.4.0-RC1-revbbe4b08cc1fb673d0c3eb4b8455f23ddc1364124/solr/maven/org/apache/solr/solr-map-reduce/6.4.0/solr-map-reduce-6.4.0.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-6.4.0-RC1-revbbe4b08cc1fb673d0c3eb4b8455f23ddc1364124/solr/maven/org/apache/solr/solr-map-reduce/6.4.0/solr-map-reduce-6.4.0.jar.asc (added)
+++ dev/lucene/lucene-solr-6.4.0-RC1-revbbe4b08cc1fb673d0c3eb4b8455f23ddc1364124/solr/maven/org/apache/solr/solr-map-reduce/6.4.0/solr-map-reduce-6.4.0.jar.asc Tue Jan 17 16:00:55 2017
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v2
+
+iQIcBAABCAAGBQJYfjJtAAoJEHB7fZ9v24EFu7gP/1KYfrRVOiO4+Y0lEfaRLneU
+b7W6PVsBlx16mh8t1iX19U27UdswBQLBpHwpochlZwVBweF145UTNl4hlv71SWw9
+qDxH9yDpFqZSKJQGWjvbXhTfcbbiIKXXVdR0UX1ts3dAALND+IKD3VgvdxEmEfq0
+2WqmcT+n4OU3phMXmYU2Ogab+qg07VGvcEvvJ3Amvy1WDx1ibWfLsxsobl8Cm/mm
+X+ptTx8CPI1M80CVSDSMqfa+1IIVSdvDPTgvYtJJqFPj+4hG+Jr+QQiR1Db4CvHd
+zy89WETQYTXmINYO9p0ZT4l29VMjFDRuwW71b47DWWSOkE1rcEOH9Q8stpXtq9sH
+X/kTeu/7KzcBUnJdMiQ8MBdjv0/ErvoZUV/giTnxJ8DR1D68pPpco9zhpJyQSeT3
+HRRs9ATdm+AEq4MULV+K7gJW8iONVumr/5BFaXERU2UkPkdzDHZePjTVn1oCCAln
+H2kH7nzeZyoeUJR0QrQMjHteFNlNApmBvJDU2g64U3RXlcwRK6bC8a5n/kJsetdL
+jUwt4e9dr4s9lWP9i284LQKIkFqDQqRlvHjpC+AfAY6Jyv68pjmtuUgMeRm2Qi0K
+0l+taDZUcaNQFi32iTuTZfVUSHKPKI2+pNfjv/5YIu1quKi0h1jINHiMGbTePbYE
+7t27rpgdl8mXC4ObhPlK
+=ApIf
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-6.4.0-RC1-revbbe4b08cc1fb673d0c3eb4b8455f23ddc1364124/solr/maven/org/apache/solr/solr-map-reduce/6.4.0/solr-map-reduce-6.4.0.jar.md5
==============================================================================
--- dev/lucene/lucene-solr-6.4.0-RC1-revbbe4b08cc1fb673d0c3eb4b8455f23ddc1364124/solr/maven/org/apache/solr/solr-map-reduce/6.4.0/solr-map-reduce-6.4.0.jar.md5 (added)
+++ dev/lucene/lucene-solr-6.4.0-RC1-revbbe4b08cc1fb673d0c3eb4b8455f23ddc1364124/solr/maven/org/apache/solr/solr-map-reduce/6.4.0/solr-map-reduce-6.4.0.jar.md5 Tue Jan 17 16:00:55 2017
@@ -0,0 +1 @@
+e5687c84e18f9085220532fbb38b2f40
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.4.0-RC1-revbbe4b08cc1fb673d0c3eb4b8455f23ddc1364124/solr/maven/org/apache/solr/solr-map-reduce/6.4.0/solr-map-reduce-6.4.0.jar.sha1
==============================================================================
--- dev/lucene/lucene-solr-6.4.0-RC1-revbbe4b08cc1fb673d0c3eb4b8455f23ddc1364124/solr/maven/org/apache/solr/solr-map-reduce/6.4.0/solr-map-reduce-6.4.0.jar.sha1 (added)
+++ dev/lucene/lucene-solr-6.4.0-RC1-revbbe4b08cc1fb673d0c3eb4b8455f23ddc1364124/solr/maven/org/apache/solr/solr-map-reduce/6.4.0/solr-map-reduce-6.4.0.jar.sha1 Tue Jan 17 16:00:55 2017
@@ -0,0 +1 @@
+00de9042a15f452d20453765247518147881b2a0
\ No newline at end of file