You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by ji...@apache.org on 2017/04/21 11:50:12 UTC

svn commit: r19232 [18/22] - in /dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75: ./ lucene/ lucene/changes/ lucene/maven/ lucene/maven/org/ lucene/maven/org/apache/ lucene/maven/org/apache/lucene/ lucene/maven/org/apache/l...

Added: dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-langid/6.5.1/solr-langid-6.5.1.pom
==============================================================================
--- dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-langid/6.5.1/solr-langid-6.5.1.pom (added)
+++ dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-langid/6.5.1/solr-langid-6.5.1.pom Fri Apr 21 11:50:09 2017
@@ -0,0 +1,607 @@
+<!--
+  Licensed to the Apache Software Foundation (ASF) under one
+  or more contributor license agreements.  See the NOTICE file
+  distributed with this work for additional information
+  regarding copyright ownership.  The ASF licenses this file
+  to you under the Apache License, Version 2.0 (the
+  "License"); you may not use this file except in compliance
+  with the License.  You may obtain a copy of the License at
+  
+  http://www.apache.org/licenses/LICENSE-2.0
+  
+  Unless required by applicable law or agreed to in writing,
+  software distributed under the License is distributed on an
+  "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+  KIND, either express or implied.  See the License for the
+  specific language governing permissions and limitations
+  under the License.
+-->
+<project xmlns="http://maven.apache.org/POM/4.0.0"
+         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+  <modelVersion>4.0.0</modelVersion>
+  <parent>
+    <groupId>org.apache.solr</groupId>
+    <artifactId>solr-parent</artifactId>
+    <version>6.5.1</version>
+    <relativePath>../../pom.xml</relativePath>
+  </parent>
+  <groupId>org.apache.solr</groupId>
+  <artifactId>solr-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.fasterxml.jackson.core</groupId>
+      <artifactId>jackson-annotations</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.fasterxml.jackson.core</groupId>
+      <artifactId>jackson-core</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.fasterxml.jackson.core</groupId>
+      <artifactId>jackson-databind</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.fasterxml.jackson.dataformat</groupId>
+      <artifactId>jackson-dataformat-smile</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.github.ben-manes.caffeine</groupId>
+      <artifactId>caffeine</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.google.guava</groupId>
+      <artifactId>guava</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.google.protobuf</groupId>
+      <artifactId>protobuf-java</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.googlecode.juniversalchardet</groupId>
+      <artifactId>juniversalchardet</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.googlecode.mp4parser</groupId>
+      <artifactId>isoparser</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.healthmarketscience.jackcess</groupId>
+      <artifactId>jackcess</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.ibm.icu</groupId>
+      <artifactId>icu4j</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.pff</groupId>
+      <artifactId>java-libpst</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.tdunning</groupId>
+      <artifactId>t-digest</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>commons-cli</groupId>
+      <artifactId>commons-cli</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>commons-codec</groupId>
+      <artifactId>commons-codec</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>commons-collections</groupId>
+      <artifactId>commons-collections</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>commons-configuration</groupId>
+      <artifactId>commons-configuration</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>commons-fileupload</groupId>
+      <artifactId>commons-fileupload</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>commons-io</groupId>
+      <artifactId>commons-io</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>commons-lang</groupId>
+      <artifactId>commons-lang</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>de.l3s.boilerpipe</groupId>
+      <artifactId>boilerpipe</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>dom4j</groupId>
+      <artifactId>dom4j</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>info.ganglia.gmetric4j</groupId>
+      <artifactId>gmetric4j</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>io.dropwizard.metrics</groupId>
+      <artifactId>metrics-core</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>io.dropwizard.metrics</groupId>
+      <artifactId>metrics-ganglia</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>io.dropwizard.metrics</groupId>
+      <artifactId>metrics-graphite</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>io.dropwizard.metrics</groupId>
+      <artifactId>metrics-jetty9</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>io.dropwizard.metrics</groupId>
+      <artifactId>metrics-jvm</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>javax.servlet</groupId>
+      <artifactId>javax.servlet-api</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>jdom</groupId>
+      <artifactId>jdom</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>joda-time</groupId>
+      <artifactId>joda-time</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>log4j</groupId>
+      <artifactId>log4j</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>net.arnx</groupId>
+      <artifactId>jsonic</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>net.hydromatic</groupId>
+      <artifactId>eigenbase-properties</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>net.sourceforge.jmatio</groupId>
+      <artifactId>jmatio</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.antlr</groupId>
+      <artifactId>antlr4-runtime</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.calcite</groupId>
+      <artifactId>calcite-core</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.calcite</groupId>
+      <artifactId>calcite-linq4j</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.calcite.avatica</groupId>
+      <artifactId>avatica-core</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.commons</groupId>
+      <artifactId>commons-compress</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.commons</groupId>
+      <artifactId>commons-exec</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.curator</groupId>
+      <artifactId>curator-client</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.curator</groupId>
+      <artifactId>curator-framework</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.curator</groupId>
+      <artifactId>curator-recipes</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.hadoop</groupId>
+      <artifactId>hadoop-annotations</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.hadoop</groupId>
+      <artifactId>hadoop-auth</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.hadoop</groupId>
+      <artifactId>hadoop-common</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.hadoop</groupId>
+      <artifactId>hadoop-hdfs</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.htrace</groupId>
+      <artifactId>htrace-core</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.httpcomponents</groupId>
+      <artifactId>httpclient</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.httpcomponents</groupId>
+      <artifactId>httpcore</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.httpcomponents</groupId>
+      <artifactId>httpmime</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.james</groupId>
+      <artifactId>apache-mime4j-core</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.james</groupId>
+      <artifactId>apache-mime4j-dom</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.pdfbox</groupId>
+      <artifactId>fontbox</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.pdfbox</groupId>
+      <artifactId>jempbox</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.pdfbox</groupId>
+      <artifactId>pdfbox</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.pdfbox</groupId>
+      <artifactId>pdfbox-tools</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.poi</groupId>
+      <artifactId>poi</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.poi</groupId>
+      <artifactId>poi-ooxml</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.poi</groupId>
+      <artifactId>poi-ooxml-schemas</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.poi</groupId>
+      <artifactId>poi-scratchpad</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.tika</groupId>
+      <artifactId>tika-core</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.tika</groupId>
+      <artifactId>tika-java7</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.tika</groupId>
+      <artifactId>tika-parsers</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.tika</groupId>
+      <artifactId>tika-xmp</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.xmlbeans</groupId>
+      <artifactId>xmlbeans</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.zookeeper</groupId>
+      <artifactId>zookeeper</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.aspectj</groupId>
+      <artifactId>aspectjrt</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.bouncycastle</groupId>
+      <artifactId>bcmail-jdk15</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.bouncycastle</groupId>
+      <artifactId>bcprov-jdk15</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.ccil.cowan.tagsoup</groupId>
+      <artifactId>tagsoup</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.codehaus.jackson</groupId>
+      <artifactId>jackson-core-asl</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.codehaus.jackson</groupId>
+      <artifactId>jackson-mapper-asl</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.codehaus.janino</groupId>
+      <artifactId>commons-compiler</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.codehaus.janino</groupId>
+      <artifactId>janino</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.codehaus.woodstox</groupId>
+      <artifactId>stax2-api</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.codehaus.woodstox</groupId>
+      <artifactId>woodstox-core-asl</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.eclipse.jetty</groupId>
+      <artifactId>jetty-continuation</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.eclipse.jetty</groupId>
+      <artifactId>jetty-deploy</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.eclipse.jetty</groupId>
+      <artifactId>jetty-http</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.eclipse.jetty</groupId>
+      <artifactId>jetty-io</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.eclipse.jetty</groupId>
+      <artifactId>jetty-jmx</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.eclipse.jetty</groupId>
+      <artifactId>jetty-rewrite</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.eclipse.jetty</groupId>
+      <artifactId>jetty-security</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.eclipse.jetty</groupId>
+      <artifactId>jetty-server</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.eclipse.jetty</groupId>
+      <artifactId>jetty-servlet</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.eclipse.jetty</groupId>
+      <artifactId>jetty-servlets</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.eclipse.jetty</groupId>
+      <artifactId>jetty-util</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.eclipse.jetty</groupId>
+      <artifactId>jetty-webapp</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.eclipse.jetty</groupId>
+      <artifactId>jetty-xml</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.gagravarr</groupId>
+      <artifactId>vorbis-java-core</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.gagravarr</groupId>
+      <artifactId>vorbis-java-tika</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.locationtech.spatial4j</groupId>
+      <artifactId>spatial4j</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.noggit</groupId>
+      <artifactId>noggit</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.ow2.asm</groupId>
+      <artifactId>asm</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.ow2.asm</groupId>
+      <artifactId>asm-commons</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.restlet.jee</groupId>
+      <artifactId>org.restlet</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.restlet.jee</groupId>
+      <artifactId>org.restlet.ext.servlet</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.slf4j</groupId>
+      <artifactId>jcl-over-slf4j</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.slf4j</groupId>
+      <artifactId>jul-to-slf4j</artifactId>
+      <optional>true</optional>
+    </dependency>
+    <dependency>
+      <groupId>org.slf4j</groupId>
+      <artifactId>slf4j-api</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.slf4j</groupId>
+      <artifactId>slf4j-log4j12</artifactId>
+      <optional>true</optional>
+    </dependency>
+    <dependency>
+      <groupId>org.tukaani</groupId>
+      <artifactId>xz</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>rome</groupId>
+      <artifactId>rome</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>xerces</groupId>
+      <artifactId>xercesImpl</artifactId>
+    </dependency>
+
+
+  </dependencies>
+  <build>
+    <sourceDirectory>${module-path}/src/java</sourceDirectory>
+    <testSourceDirectory>${module-path}/src/test</testSourceDirectory>
+    <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.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-langid/6.5.1/solr-langid-6.5.1.pom.asc
==============================================================================
--- dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-langid/6.5.1/solr-langid-6.5.1.pom.asc (added)
+++ dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-langid/6.5.1/solr-langid-6.5.1.pom.asc Fri Apr 21 11:50:09 2017
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v2
+
+iQIcBAABCAAGBQJY+d53AAoJEPmME8+loTXYY80QAMAkuad7Iw8XnlvsE6+53/4P
+s7inWzsON9Hii9xK7CcZ8CagVZ0875x460dKOIvqZBeQIrJHNMuKWQo+7IF3LfK7
+rMLedUHJNtQiAeXOSOkpXv9hEQ6JNJQ+fbgxx+x6jjbEWZFcZTLD/w7QiIryYoXf
+5Uos1CxEsTyg/QAaNrKVtRVkDWO9AmQB+JRmCN36Rejn9Ix165cqu2vJR/0pijtt
+4AF9xFF4sdHj8XPjhg9+iwv2ksTi9nvDfaGxvcSZoOLCM8W4Uiju/6G0Mc2C8/Vk
+RvoftGwSUNKxrFhDnDHOA+bXoZJ/GJFX+0BP/qpSxzGEH3UiHOCMYm8n1Nekgyb2
+zYkmLWrbVdQPekLJdGbyqIOX1H5CnLiNqIZRG6tDo6AgvkT2+m1q/Uqu05qtK4PD
+CeCFpTGQ3GoHB8++84jRsmxqsiRsaJ1XtTBRr1T7hzR5SXxsGxI0lL+fAIM0J3iC
+ZwX874EGodFGer8irnIDQP+ZsPhYgxn05rGHb0z5wp/Hj1HgXg6wzMEI/bWMYJyr
+GzpWsHOEsEF88g3JkjXva4QWKsg+1G1r0PoMuhzz3X3mgGTK47lnWDek7LVchERN
+FBQicrRaIuVMB+VMtA7zEAwhSn5ZLYcyjdewuitLXWz34R+8MTWsJuhf8NqK2Xis
+cel0K9/6sIjQtgMhAGVb
+=C6E+
+-----END PGP SIGNATURE-----

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

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

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

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

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

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

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

Added: dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-ltr/6.5.1/solr-ltr-6.5.1-javadoc.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-ltr/6.5.1/solr-ltr-6.5.1-javadoc.jar.asc (added)
+++ dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-ltr/6.5.1/solr-ltr-6.5.1-javadoc.jar.asc Fri Apr 21 11:50:09 2017
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v2
+
+iQIcBAABCAAGBQJY+d54AAoJEPmME8+loTXY7Q4P/3jsZ64Fd/eJvNKJ/XK7zXo/
+ABY7XKClp3vxglPewFDcB5gsVfqZo6IanLPAAt9Jxa28l3KM7dnTpvBx5W9g3mdN
+NYNV0lTDEm+hjexFyzIfEBUwBh2ZkE4Mi7dl0lR3PIDk/WrFYTh4mewUMlMz7twp
+A5RMh/uSSEoQ7OUOXdMHd7HWJvoUlKCT1eYKzpWOv1ZeI8O1I3spmPp5EeRLi4t+
+U5D8UFGMioGD/yNk8jPWoGcFN1MwAw+aom0J8Jj4lQmK8RN8YKurNYrQr6CJevHr
+Wj9gYgizCXTDoNKB0UDgQMi6G7gW/GD36YPFrXtnt25+6Q+yiF+5oiF+FEwKIndH
+c95KuUq48QJ5QfU0p7xOesROxFfHFfs0PVaPN9De7YLY8EaGCt/7MRr2fpbeP8P4
+5cwFozo9BLqLs54h3GZiWFABC+m6NGijqvjGclNZZRLRyQ39Ysd2PKjJ8o3zxRVG
+m4Er++NdBDt+z+5jvt5vErRxKZN5odYJBw7rbWkWHgX3XFviiKU33XTftUvDPw12
+BYgSwA7n60lucgf7Fu5q7faoEFE2DyZso1aYA+MwC9+FwMQzwZQaHetLbNvpNsdw
+4dCs1B6uaCHZp505TfInQcj9F4eGv9Qt2Xog5pulL4QJ5eaRRXw1k7s2T1DAze6v
+PUM+//PVFvTzSkSqF3M6
+=SQR/
+-----END PGP SIGNATURE-----

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

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

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

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

Added: dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-ltr/6.5.1/solr-ltr-6.5.1-sources.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-ltr/6.5.1/solr-ltr-6.5.1-sources.jar.asc (added)
+++ dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-ltr/6.5.1/solr-ltr-6.5.1-sources.jar.asc Fri Apr 21 11:50:09 2017
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v2
+
+iQIcBAABCAAGBQJY+d54AAoJEPmME8+loTXYgYoP/RtofHgKagnuNPB1p0xjR/bB
+mqTS5EQUKWSKd9SFQr9XfSrSe8vwUNjr7HRbXTwTbpBZCKUafxRcjCCxB2Q2FXQA
+x/kOWHqlqAsYM6fVVMh/ueX1fOzbtN841SG3F9IsdgiOBLWINP/pfrnIpouir14w
+skdGgcyfFsM7T1PSWTihE8XA/2wOa6MDT0kaqF9i/wLzNf3KTLpPtRbVS6h/SuvK
+iNXI9T1ftnJaAqIkFi15tB42wN4BVJarcqkEEsVyoz1yUZKJxFCImXmOYQsPmbFM
+IH5myH3Sng/HiGyD2IjTPqncxlpkkpAp0L4lhdpt2LNLGGw2yD4VmySV9xt4uRUb
+WgvXSWd6DHf76bhNKpXCyqjTWNF8KW7DUj82o/724oHf6e7Z+IW+crzI3ZFf1oQx
+f2c6If8obCX+LgPHxYlwfubDWPLhF/pw5S8aov+9YStaUE3B2UZjpKPtdCGEOhWU
+rphilkf8XTRR/SLEOJNdO5sUucovPS/Fo6KQEwUh6QAw22Nb9k0Wdo8D/gKakJ0M
+S+fAO30GOL/9sjJsfUJld7rTrXBwPF7uxes3Ff9qS89Qj2G5SxmfBvSiza5RnMeZ
+IKfsatVROpeNnWjm7xvGN81cUeluVPqBbvYTkTKohDTyUrxOLFW+LlzR9lsX0q0j
+vPwBahKHu4nzk1FvMCET
+=SJao
+-----END PGP SIGNATURE-----

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

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

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

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

Added: dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-ltr/6.5.1/solr-ltr-6.5.1.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-ltr/6.5.1/solr-ltr-6.5.1.jar.asc (added)
+++ dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-ltr/6.5.1/solr-ltr-6.5.1.jar.asc Fri Apr 21 11:50:09 2017
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v2
+
+iQIcBAABCAAGBQJY+d55AAoJEPmME8+loTXYXKAP+QEfGJPX6capwOBQnk/bFOfs
+8Tb5st1rvBGjUmOxN/i3j2HUD+l11DqRorpwvQQEsIxkZ9Sjk2/nzPAIsLu30Cjq
+bThzsAg3fWNoM1iRhwNfWsyBepqqnmBl/pGoORKuUWH/JP4XA6sjn15DyH25s+Xt
+Lz1NEODwK8HWQ8O+27Gn132C3KXxn0lkNf8Cx4Q1clepY/SF39IlqTid5KR2Qg6v
+Yhx5fMnyV0+GQArCu8sh6Y3JwBx/TNdCaJC05zbTt+ui1yXOLogSPM5nHnr//PjN
+kwRtqiGyHdwQTDTYaSN6nduje1nh1VInvzwvXPq0AffVvqhH5gr64tqa6WSGHvCP
+cfEv2YP0SCQFua7DI/wpe9MdrwsKQDqRbyYn6mywlfwnCDzbmH9qJQymMrlQazna
+CpaslZjbOUb8+zS8tHSxcSQRV5ajEjs7RfvfbV3IVNU/AhVzOTHuuxzIWb12mUG7
+BSsiftOgnLAzPmg9eQ03EKxxXWFHKTZ/ZpnjTf8CAakjvJyjJ6YK4oryMU1s0FrM
+lELiZ0VtoZjC/3J1SkKaH3LDVg3Vcr4tqexmrweEHg+lVbBxPZOynnAOTznBjveU
+HZYOXfyEbaqnlLl6kupoT9gtHw6iBye6uwUkDhGrcGj/78PvhdtyTy40OYdLdDZz
+h+P4PhZNeoYfCGIQZpHd
+=BsG3
+-----END PGP SIGNATURE-----

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

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

Added: dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-ltr/6.5.1/solr-ltr-6.5.1.pom
==============================================================================
--- dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-ltr/6.5.1/solr-ltr-6.5.1.pom (added)
+++ dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-ltr/6.5.1/solr-ltr-6.5.1.pom Fri Apr 21 11:50:09 2017
@@ -0,0 +1,452 @@
+<!--
+  Licensed to the Apache Software Foundation (ASF) under one
+  or more contributor license agreements.  See the NOTICE file
+  distributed with this work for additional information
+  regarding copyright ownership.  The ASF licenses this file
+  to you under the Apache License, Version 2.0 (the
+  "License"); you may not use this file except in compliance
+  with the License.  You may obtain a copy of the License at
+
+  http://www.apache.org/licenses/LICENSE-2.0
+
+  Unless required by applicable law or agreed to in writing,
+  software distributed under the License is distributed on an
+  "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+  KIND, either express or implied.  See the License for the
+  specific language governing permissions and limitations
+  under the License.
+-->
+<project xmlns="http://maven.apache.org/POM/4.0.0"
+         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+  <modelVersion>4.0.0</modelVersion>
+  <parent>
+    <groupId>org.apache.solr</groupId>
+    <artifactId>solr-parent</artifactId>
+    <version>6.5.1</version>
+    <relativePath>../../pom.xml</relativePath>
+  </parent>
+  <groupId>org.apache.solr</groupId>
+  <artifactId>solr-ltr</artifactId>
+  <packaging>jar</packaging>
+  <name>Apache Solr Learning to Rank 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.fasterxml.jackson.core</groupId>
+      <artifactId>jackson-annotations</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.fasterxml.jackson.core</groupId>
+      <artifactId>jackson-core</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.fasterxml.jackson.core</groupId>
+      <artifactId>jackson-databind</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.fasterxml.jackson.dataformat</groupId>
+      <artifactId>jackson-dataformat-smile</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.github.ben-manes.caffeine</groupId>
+      <artifactId>caffeine</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.google.guava</groupId>
+      <artifactId>guava</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.google.protobuf</groupId>
+      <artifactId>protobuf-java</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.tdunning</groupId>
+      <artifactId>t-digest</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>commons-cli</groupId>
+      <artifactId>commons-cli</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>commons-codec</groupId>
+      <artifactId>commons-codec</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>commons-collections</groupId>
+      <artifactId>commons-collections</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>commons-configuration</groupId>
+      <artifactId>commons-configuration</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>commons-fileupload</groupId>
+      <artifactId>commons-fileupload</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>commons-io</groupId>
+      <artifactId>commons-io</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>commons-lang</groupId>
+      <artifactId>commons-lang</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>dom4j</groupId>
+      <artifactId>dom4j</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>info.ganglia.gmetric4j</groupId>
+      <artifactId>gmetric4j</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>io.dropwizard.metrics</groupId>
+      <artifactId>metrics-core</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>io.dropwizard.metrics</groupId>
+      <artifactId>metrics-ganglia</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>io.dropwizard.metrics</groupId>
+      <artifactId>metrics-graphite</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>io.dropwizard.metrics</groupId>
+      <artifactId>metrics-jetty9</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>io.dropwizard.metrics</groupId>
+      <artifactId>metrics-jvm</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>javax.servlet</groupId>
+      <artifactId>javax.servlet-api</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>joda-time</groupId>
+      <artifactId>joda-time</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>log4j</groupId>
+      <artifactId>log4j</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>net.hydromatic</groupId>
+      <artifactId>eigenbase-properties</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.antlr</groupId>
+      <artifactId>antlr4-runtime</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.calcite</groupId>
+      <artifactId>calcite-core</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.calcite</groupId>
+      <artifactId>calcite-linq4j</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.calcite.avatica</groupId>
+      <artifactId>avatica-core</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.commons</groupId>
+      <artifactId>commons-exec</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.curator</groupId>
+      <artifactId>curator-client</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.curator</groupId>
+      <artifactId>curator-framework</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.curator</groupId>
+      <artifactId>curator-recipes</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.hadoop</groupId>
+      <artifactId>hadoop-annotations</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.hadoop</groupId>
+      <artifactId>hadoop-auth</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.hadoop</groupId>
+      <artifactId>hadoop-common</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.hadoop</groupId>
+      <artifactId>hadoop-hdfs</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.htrace</groupId>
+      <artifactId>htrace-core</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.httpcomponents</groupId>
+      <artifactId>httpclient</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.httpcomponents</groupId>
+      <artifactId>httpcore</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.httpcomponents</groupId>
+      <artifactId>httpmime</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.zookeeper</groupId>
+      <artifactId>zookeeper</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.codehaus.jackson</groupId>
+      <artifactId>jackson-core-asl</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.codehaus.jackson</groupId>
+      <artifactId>jackson-mapper-asl</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.codehaus.janino</groupId>
+      <artifactId>commons-compiler</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.codehaus.janino</groupId>
+      <artifactId>janino</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.codehaus.woodstox</groupId>
+      <artifactId>stax2-api</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.codehaus.woodstox</groupId>
+      <artifactId>woodstox-core-asl</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.eclipse.jetty</groupId>
+      <artifactId>jetty-continuation</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.eclipse.jetty</groupId>
+      <artifactId>jetty-deploy</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.eclipse.jetty</groupId>
+      <artifactId>jetty-http</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.eclipse.jetty</groupId>
+      <artifactId>jetty-io</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.eclipse.jetty</groupId>
+      <artifactId>jetty-jmx</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.eclipse.jetty</groupId>
+      <artifactId>jetty-rewrite</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.eclipse.jetty</groupId>
+      <artifactId>jetty-security</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.eclipse.jetty</groupId>
+      <artifactId>jetty-server</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.eclipse.jetty</groupId>
+      <artifactId>jetty-servlet</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.eclipse.jetty</groupId>
+      <artifactId>jetty-servlets</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.eclipse.jetty</groupId>
+      <artifactId>jetty-util</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.eclipse.jetty</groupId>
+      <artifactId>jetty-webapp</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.eclipse.jetty</groupId>
+      <artifactId>jetty-xml</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.locationtech.spatial4j</groupId>
+      <artifactId>spatial4j</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.noggit</groupId>
+      <artifactId>noggit</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.ow2.asm</groupId>
+      <artifactId>asm</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.ow2.asm</groupId>
+      <artifactId>asm-commons</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.restlet.jee</groupId>
+      <artifactId>org.restlet</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.restlet.jee</groupId>
+      <artifactId>org.restlet.ext.servlet</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.slf4j</groupId>
+      <artifactId>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.slf4j</groupId>
+      <artifactId>jcl-over-slf4j</artifactId>
+      <scope>test</scope>
+    </dependency>
+  </dependencies>
+  <build>
+    <sourceDirectory>${module-path}/src/java</sourceDirectory>
+    <testSourceDirectory>${module-path}/src/test</testSourceDirectory>
+    <testResources>
+      <testResource>
+        <directory>${module-path}/src/test-files</directory>
+      </testResource>
+      <testResource>
+        <directory>${top-level}/dev-tools/maven/solr</directory>
+        <includes>
+          <include>maven.testlogging.properties</include>
+        </includes>
+      </testResource>
+    </testResources>
+  </build>
+</project>

Added: dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-ltr/6.5.1/solr-ltr-6.5.1.pom.asc
==============================================================================
--- dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-ltr/6.5.1/solr-ltr-6.5.1.pom.asc (added)
+++ dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-ltr/6.5.1/solr-ltr-6.5.1.pom.asc Fri Apr 21 11:50:09 2017
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v2
+
+iQIcBAABCAAGBQJY+d55AAoJEPmME8+loTXYQQMQAJBrgjxEqlH4pj4ElRtk4g7y
+ky2mD7MfxRl2hHSb2OT56AZ6df3Q+dRCoM4vnRKZ2JvDq5wvynC+jygwk9KrGDvJ
+tljF14E9Q2d/Xmuq/0gJiBaSpRnKxPtfBy9SX4sAJ1r9vkYwECBmtMiSYTYyQ7i8
+GWSC+NYTVveNotD3T83bfaKwdb54vcHpxhK0CrI64ENKjoV7fDCge9mx3UDAF9Da
+oDX0sitzcF8YREeXXiJrKQ1BMVoZmB1KpjsFsmbyD+WuDEjCoodRjrC1D/zDy075
+FGYzNTbpHA+gg20w3j4kIpgx/LsE4j1S2GJ2sdUVS+wr6YnwzstIlg9WyJxZFX1k
+P4QGTqDwGKaDUBRAApyocnMQLxP9+gabB3PQwmqBJK1wokFDzGQ03NcuZtIGvKbC
+gm1Cgp8V2u4J3e1lGhpzACanZTy3APKRht7XbgprEl1DnSqXCKxjm4UXOns7JteT
+WAy5bNpkWWnKy0NqWEvNcJ+nKJKahyoRZx5GxQrnQO3NWX0aAol9eO/eQUcJho/5
+gNg+meLC7QbmPhcWcj44UuFjPxUchIbUkHvtbfHR7pZ4MVIiTiyDITD7rnvXYp0Z
+fOSbiz3wD+tz4NnVVzLo02fWQbwnuG/oaKfkLSbqh+wiO6Y3QNRpldf6R65fhq0G
+1eh78hbvsyWt+5sErAJ/
+=U64o
+-----END PGP SIGNATURE-----

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

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

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

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

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

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

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

Added: dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-map-reduce/6.5.1/solr-map-reduce-6.5.1-javadoc.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-map-reduce/6.5.1/solr-map-reduce-6.5.1-javadoc.jar.asc (added)
+++ dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-map-reduce/6.5.1/solr-map-reduce-6.5.1-javadoc.jar.asc Fri Apr 21 11:50:09 2017
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v2
+
+iQIcBAABCAAGBQJY+d56AAoJEPmME8+loTXY5bYP/RIp84lTnMwXH7iRLhTS62Li
+D1+rfWzkKEQB9Qk+UAiSu9LQSSNsGL8EGnxg/9cJoNXnhwK6WTqozjKLYrLUlUj4
+Qt3NZpkacwxbvnMVOit533WxcfS+eMOPIJBpCjAjy/voOIy84/Axw8ecuYDqEY5h
+LtE76Ex1UV+KAgiPI3/TU/4LyP+ZW7dxOhvHmXQy2vso5S7st1zJvXqrqNLrZIJ+
+L+CAGFMoB90K+bdXRTFiMeciiJiRt9IyTZvxf+NvnqkXsmMLv3rIZqZ3/eFn130d
+H3Fb1Kdkw2nUHOxXz7sJOahHyLVzFD2P9HOhUOXFpPLwd29GfXiuNeWdymsFdWk5
+SS+St6BC5k3estc0oVZvHORlbkueqZcR5qGGwgapIszJKYtwtcSVBLHOYM6eWPzy
+GMJt/UyJHQX5As0pptQUT9DWT04wned6fYPR451pOjgH+ukEdJBwMA6eD55vpmCm
+UBQgiXzxL1REM4BUfNmMM3gGCJws/3lQ/GMZ+TQHG+vAlfa13pWovbTvcPwBkkc3
+DhW8RbHZwKC+7PhwmW9m4jgMotk5HzOFPddPceHd0ypicKOgL6cbDRjHdfMIT8In
+TioT7VJuQEWSJedZc5n6WWSliMU7EhXvJet/D9fwwsR/GNJBgJSpeG5p9W9lknoO
+c50oewFhXv3S4wowGiRJ
+=DhJk
+-----END PGP SIGNATURE-----

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

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

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

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

Added: dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-map-reduce/6.5.1/solr-map-reduce-6.5.1-sources.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-map-reduce/6.5.1/solr-map-reduce-6.5.1-sources.jar.asc (added)
+++ dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-map-reduce/6.5.1/solr-map-reduce-6.5.1-sources.jar.asc Fri Apr 21 11:50:09 2017
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v2
+
+iQIcBAABCAAGBQJY+d56AAoJEPmME8+loTXYOpUP/A2ECJDx4lzc23QZ6SJWDjZN
+AKCzOx6QwupPZJhEWmQ2wuQcIhAdW6eQ9V8MWzkQHUqV3rxUuYmnUbGRmMspNdhA
+vrc4IAKRpZYFq2478mfEu9/spSHkkIGWQNkmRiCZNA+QZ8ixXIO1XS/BWOY8Z7K+
+zFL+Tqi5Ai5/xo7kejYLcDdfuddWPy2JRbpe39zcmpFJBR+SmrycwyFTeZ99KHtr
+WBIoRZiIgm7o73A5XL7oJ2QssAmJNFQgA53lS4nGuV3CSLuzkXEbJ/WUbSRcm7bw
+anaKsQVbsuulxN2O5x7pvxhxEW2zN1h5iZtmfl/0WI/5lrh6cAicEbLcoAgrwPfY
+E5/vFJ5EZAhjTHBfszo6pXKNqpUJitOylPpxzGp3gAwX7JrB6qAaFnUcElgsAYkJ
+L6AA2CJ0xMHAagoKfVsSyGS+9mdV489YfRKnnKWGmp4G+0SsIc4UqRX0WMbCWim+
+DEr8lW+0eXg3smJWVkPteRkLwocXvusZs8ksYvHhwvbbfnx6tr/fMauQGmKtJGVk
+bXisOHG3dx1QwTiQcL+h33PeShlYUmix8n31o5DaaZTcZLMEisvkDKBkwrxo4FkB
+CvlkRAoQ5HoJ0W6+AdazB7CZmLUxI3G6ifTkYe1lDS9L5n4ghfV8Se0fpFKoF+7m
+8dPuCnpWM0/AmupAQhNO
+=qiXO
+-----END PGP SIGNATURE-----

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

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

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

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

Added: dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-map-reduce/6.5.1/solr-map-reduce-6.5.1.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-map-reduce/6.5.1/solr-map-reduce-6.5.1.jar.asc (added)
+++ dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-map-reduce/6.5.1/solr-map-reduce-6.5.1.jar.asc Fri Apr 21 11:50:09 2017
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v2
+
+iQIcBAABCAAGBQJY+d57AAoJEPmME8+loTXYxNEQALlSIyHyu6Zt6nCQNOj/OP9B
+zAglPykJslphyZOp9goqst+OgMA0nh7SoZeoUHgWEm5hSpmch51CrSPweXP7GVF2
+/yhD2oWy7Gz2AGMsoCcPW4ZItChZBOuH5+wVHuvEsX5uunK6Ve/0/Po6tzbjHftx
+1wmFmbm5P24ydFTcxyvabImJund5014uMdsCJn3Ji33iVXHPgW0mHAmBvIAron0A
+kO2NyURXk/t+saXMahcAYvRNYZR/kmYwSsTNwZqVHzufRCvg7IOxJh17wEDqqilr
+4biojiLdUg4t+deiAIeVidDk8ybf9tPt0EpQ1Y0dZTvN8TPEYkP5V+up8Ydd7pGb
+YigeyppH6hUJmqdMrWc0h5gZE4/24hLtV0+mM6WtBFzm6zuLNhL3WyMskdtqJHsv
+UbWkP4oUb+xPOzlgSnOfo42Y5FzHCUWPxaDnZBP26CBhw2894UeQTU7mvhtEfp9P
+ILkfu6c2NGZh3WYkWbBusF2JwSF86aPvzNscUQgX0gMq3sstc/UzpOU2KsB6TD3U
+dtPMlUiViFwao0WG1ng+NUB1RO9mMxYk1HTaTJJYTpmggx/pBXW4PiIpGjBrOfQA
+bq+FqaXB7KlytJoD+tq8QKQXATLwB669LOPTw8T+hhUPEHYCA0+3r9GK7/o6Dcij
+XG/rNl4rrp0jrtGtCQA0
+=K1Gt
+-----END PGP SIGNATURE-----

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

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