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

svn commit: r19082 [21/25] - in /dev/lucene/lucene-solr-6.5.1-RC1-revfa827447f5829fe729b779faed675775e3c0b7c8: ./ lucene/ lucene/changes/ lucene/maven/ lucene/maven/org/ lucene/maven/org/apache/ lucene/maven/org/apache/lucene/ lucene/maven/org/apache/l...

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

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

Added: dev/lucene/lucene-solr-6.5.1-RC1-revfa827447f5829fe729b779faed675775e3c0b7c8/solr/maven/org/apache/solr/solr-langid/6.5.1/solr-langid-6.5.1.pom.asc
==============================================================================
--- dev/lucene/lucene-solr-6.5.1-RC1-revfa827447f5829fe729b779faed675775e3c0b7c8/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-RC1-revfa827447f5829fe729b779faed675775e3c0b7c8/solr/maven/org/apache/solr/solr-langid/6.5.1/solr-langid-6.5.1.pom.asc Fri Apr  7 19:19:32 2017
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Comment: GPGTools - https://gpgtools.org
+
+iQIcBAABCgAGBQJY59AXAAoJEKM20MDuZMseATQP/3Etq+ksozkJBLyVN1yhCOM2
+kKRJsbdz9mF9aU9Azg3lCTk/gIMq6KfbSffx/N0++lH6Lg/tksLf9Mb2KO0XkE5x
+duqOKvC6lQ+6G89aR9B3SQl44sNAQlJQCtGsPDVne8bYDisSMyLbux6W6lWlepg5
+rSEoaNErJGsPsc2H4/dvIyeHhqA21JtC0z5SiiD5sHwdT9lDKUPCts4fAZgMuP3k
+hy1dfQYOusiovRSQwignwQcxwjzs8j6er5YRDmk1Qkhx6C6zEI2WhOGFIoiAZRRf
+uPnlv6dDoKOaKBMaJfnjjZv2P0b3EnH5Y1p/sLpa8/OxtrYLAeoDZBw1dmGoomM3
+PXp5l7djMkuKDRxHtxbMwYrecX+ZwVu6+Y+IMqUEyIG43KUfwGEq2x1arTB5VD5I
+LIMhA0J4lX9Ky5Ha9MOLCMZs7vRHk0Uv6UAAgEJ90TZSofR5Ibsu4daOKTZ6pA7y
+tlbnLgm+fjlFeOmLduK0/iD3X7nzBF8MHKgz83D0sGzRAOlSgeV+p5LrM9hCfEz+
+Gz96YeIBV/ThWjMQLfLhQ0UnwEq80KOXkd0TJJiRq3p8k53o+rrMpeaEheSC7T3x
+TusHN4Sn79ZifIgXWNtz5RAeI6oO7T5FzkjdYbQvBVOLels86wjcY7q1lPbvcPWi
+jL617NzXLzMVEBnpKDIV
+=B3bm
+-----END PGP SIGNATURE-----

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

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

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

Added: dev/lucene/lucene-solr-6.5.1-RC1-revfa827447f5829fe729b779faed675775e3c0b7c8/solr/maven/org/apache/solr/solr-langid/maven-metadata.xml
==============================================================================
--- dev/lucene/lucene-solr-6.5.1-RC1-revfa827447f5829fe729b779faed675775e3c0b7c8/solr/maven/org/apache/solr/solr-langid/maven-metadata.xml (added)
+++ dev/lucene/lucene-solr-6.5.1-RC1-revfa827447f5829fe729b779faed675775e3c0b7c8/solr/maven/org/apache/solr/solr-langid/maven-metadata.xml Fri Apr  7 19:19:32 2017
@@ -0,0 +1,12 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<metadata>
+  <groupId>org.apache.solr</groupId>
+  <artifactId>solr-langid</artifactId>
+  <version>6.5.1</version>
+  <versioning>
+    <versions>
+      <version>6.5.1</version>
+    </versions>
+    <lastUpdated>20170407174432</lastUpdated>
+  </versioning>
+</metadata>

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

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

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

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

Added: dev/lucene/lucene-solr-6.5.1-RC1-revfa827447f5829fe729b779faed675775e3c0b7c8/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-RC1-revfa827447f5829fe729b779faed675775e3c0b7c8/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-RC1-revfa827447f5829fe729b779faed675775e3c0b7c8/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-RC1-revfa827447f5829fe729b779faed675775e3c0b7c8/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-RC1-revfa827447f5829fe729b779faed675775e3c0b7c8/solr/maven/org/apache/solr/solr-ltr/6.5.1/solr-ltr-6.5.1-javadoc.jar.asc Fri Apr  7 19:19:32 2017
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Comment: GPGTools - https://gpgtools.org
+
+iQIcBAABCgAGBQJY59AYAAoJEKM20MDuZMseMaYQAO/WrYDexr/IAoTboMYpQqZ7
+9ZXlOwXRj+tPzli5yNjkjXY/ACkbZRjz6ayZdJGW2nr/KfF4Ks8m/Mc+JZoS7McT
+OYt1o8oCVRpuFt8ixlr59KlbF3rmQXhoCmd15sKkbSFp2Hui6afNFkSVbw5NsMLG
+EPswffjdvZuHvVDsbveVLBqphOzmMLd4oUdsOyaJ5nmz0xqYsUKFOsKdZZg//zZX
+cVq1oPMnQadZb0pN7oita3OTcnwVhbTGAe7OdzXPAh+vpT2KsTSQedvND4l07bMd
+k7wJZoBi9KgrYqmmxnDE8akdGXIUTO4YTm+bYsLxqq6hiyiMnZuB0RNkJHfe86X2
+LMXQVpARry3NLJ641+SEXhc7zEwwPiRZ6O3q6PyFZuDG6fTNNU73t/njPCuI86iD
+PiHnie0SP8Cc1xEYNLe6iyJd8PJ+7iQym5J5hxVXM2CqXJupOqC8uvrcQFY0p25p
+nT0zzsNBI/PtoSIdWgn3QYdXKMiRxkFNKptWqkRwazyMtcR6mYsKzP5tr4T5h1HC
+nTURVpzSGi/vNu0Scw+qWh7VF8afoZoMmj16tzeVqNzbyqRjgF+gOI6a3d/AxzBf
+A8S33ZAgUcFrkIy8SoImWNelJmmJvMljGJRkPOlOaOJsIFB2djzXXGG8ro/xXsq/
+eeZSV2essJZRuOsHdJzM
+=Zv9r
+-----END PGP SIGNATURE-----

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

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

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

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

Propchange: dev/lucene/lucene-solr-6.5.1-RC1-revfa827447f5829fe729b779faed675775e3c0b7c8/solr/maven/org/apache/solr/solr-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-RC1-revfa827447f5829fe729b779faed675775e3c0b7c8/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-RC1-revfa827447f5829fe729b779faed675775e3c0b7c8/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-RC1-revfa827447f5829fe729b779faed675775e3c0b7c8/solr/maven/org/apache/solr/solr-ltr/6.5.1/solr-ltr-6.5.1-sources.jar.asc Fri Apr  7 19:19:32 2017
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Comment: GPGTools - https://gpgtools.org
+
+iQIcBAABCgAGBQJY59AYAAoJEKM20MDuZMsebssP/RdfWCvvFOsgjJ684/2KJ1bX
+ygUiKZXVfDHu6Ov8t0TTNnAMhNtzF15x8bhribZbe5xfClxOUzBdvF7sqHFIujtL
++zHR4GO32a4JBDpDOuvfYo7xr1LfCCcF8DqrAl4kroybC5fwfxMCuBVl/wYaWD7q
+H6291gNl2qM+G6LUNgrt0/IcQc7Klt3Mv5MHKkDx7B8vMMtNs7Ee+xjEmD2Z02M+
+nwTeApESamm9jjlerDBdj7UTKKEkACVHQqNqaUXYUY4Wc1M/9MmYd57UH1Ab0BL1
+xtVFGRk+rY7GoEQgaIh19Sv2XVBdoXEGftPh9jtzQuMaHGyGVYDYEgu+BnDtyoDw
+Fnh0miNetlIdd4zHTPDRN8YxhztDT1Wr7ePvaWn0c4X91qBFXMR9JR/H0x2mDKlg
+IcUT5LbTRZQ7Ditdlof2tpia2MUEoq6Amy6ouk2SJFc+R0P/+hq/WhJEf2sqWOlB
+qecHdR1Su67qPlNSY6sjsuDxzaMepScAxqzW8bdqR8nSDHa8BqMwPshyCK39bO/m
+lg5MvyAPlGmcZ2ga4WORKZvYfyCsXvC68Fw/QzalQE7RWCFoIKeKD2HqQrv1B3X7
+dYocoknEhjg3SKJ73fBJcudwr0OA7O7FHDSasMvUrnSvQAgKO5SNOaojGZiGfXNK
+M4YuWMEgTcvj7zcgs7om
+=UR9V
+-----END PGP SIGNATURE-----

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

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

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

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

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

Added: dev/lucene/lucene-solr-6.5.1-RC1-revfa827447f5829fe729b779faed675775e3c0b7c8/solr/maven/org/apache/solr/solr-ltr/6.5.1/solr-ltr-6.5.1.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-6.5.1-RC1-revfa827447f5829fe729b779faed675775e3c0b7c8/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-RC1-revfa827447f5829fe729b779faed675775e3c0b7c8/solr/maven/org/apache/solr/solr-ltr/6.5.1/solr-ltr-6.5.1.jar.asc Fri Apr  7 19:19:32 2017
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Comment: GPGTools - https://gpgtools.org
+
+iQIcBAABCgAGBQJY59AYAAoJEKM20MDuZMseJ8oP/jyNZyntYYuNOAXDRadscByb
+HFYqS2G8/OWPlmfvlMw7myYRJZ6aR2ntexAmObt2Oh83oWDVWXUuDSMSLXR67oaQ
+/nFwSwRPAhwgIeKKInkDZ+sR4hch93Ops1EwBq/ZBtlbduLDswXCLGjaSuBVyTSJ
+C5Xn7M86DC89rUE6nanK4jiMhr/0UUGEQwIfp8/MedgZ4trXM1XjxnEx7z6xFtnj
+1S03NxjkUjlti5k9cA6/WUs+/aLcnkVbJQ7onVE8i3+Mr7dAxNPLtylF1yskWW74
+LkHeZhHD5fuo3kGURltEgYcpfuHORi60ephTMI8e4cf6qUhjsZCIhQhoDnnL4BJx
+bWkv75vK/NtKX50oggZciBAxf8ZhR4OkYUm6xwHiCVtuCAbXfLm+kY6FXIDKIUNe
+Wr4/GHDCPwi+EFSz1eJJrbUhUh5wxTBu0QeZ9hkmGFImFnfBovLDG+/+73ygZDFb
+XEUVBUl25eOTnHwbdfTeeKJKGs/viRAf3Fsc+b524dIpaMFQeINlXzKJ7h0AU18Y
+ASpmLQh0ahp5+VKQH+U2w0pt6Ulsk2pNbQxYcWy4Upy4G8Z24PSSH8eYay/hTfqU
+UoPhgrrjZ0VqUfG1s9dkjH9usXOLY/pEjApU+Zp9SwealMIn0Rw3xx5b9b4Ur0OB
+/KcZ5GLGK0y3M8WmXmkf
+=o61N
+-----END PGP SIGNATURE-----

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

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

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

Added: dev/lucene/lucene-solr-6.5.1-RC1-revfa827447f5829fe729b779faed675775e3c0b7c8/solr/maven/org/apache/solr/solr-ltr/6.5.1/solr-ltr-6.5.1.pom
==============================================================================
--- dev/lucene/lucene-solr-6.5.1-RC1-revfa827447f5829fe729b779faed675775e3c0b7c8/solr/maven/org/apache/solr/solr-ltr/6.5.1/solr-ltr-6.5.1.pom (added)
+++ dev/lucene/lucene-solr-6.5.1-RC1-revfa827447f5829fe729b779faed675775e3c0b7c8/solr/maven/org/apache/solr/solr-ltr/6.5.1/solr-ltr-6.5.1.pom Fri Apr  7 19:19:32 2017
@@ -0,0 +1,452 @@
+<!--
+  Licensed to the Apache Software Foundation (ASF) under one
+  or more contributor license agreements.  See the NOTICE file
+  distributed with this work for additional information
+  regarding copyright ownership.  The ASF licenses this file
+  to you under the Apache License, Version 2.0 (the
+  "License"); you may not use this file except in compliance
+  with the License.  You may obtain a copy of the License at
+
+  http://www.apache.org/licenses/LICENSE-2.0
+
+  Unless required by applicable law or agreed to in writing,
+  software distributed under the License is distributed on an
+  "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+  KIND, either express or implied.  See the License for the
+  specific language governing permissions and limitations
+  under the License.
+-->
+<project xmlns="http://maven.apache.org/POM/4.0.0"
+         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+  <modelVersion>4.0.0</modelVersion>
+  <parent>
+    <groupId>org.apache.solr</groupId>
+    <artifactId>solr-parent</artifactId>
+    <version>6.5.1</version>
+    <relativePath>../../pom.xml</relativePath>
+  </parent>
+  <groupId>org.apache.solr</groupId>
+  <artifactId>solr-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>

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

Added: dev/lucene/lucene-solr-6.5.1-RC1-revfa827447f5829fe729b779faed675775e3c0b7c8/solr/maven/org/apache/solr/solr-ltr/6.5.1/solr-ltr-6.5.1.pom.asc
==============================================================================
--- dev/lucene/lucene-solr-6.5.1-RC1-revfa827447f5829fe729b779faed675775e3c0b7c8/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-RC1-revfa827447f5829fe729b779faed675775e3c0b7c8/solr/maven/org/apache/solr/solr-ltr/6.5.1/solr-ltr-6.5.1.pom.asc Fri Apr  7 19:19:32 2017
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Comment: GPGTools - https://gpgtools.org
+
+iQIcBAABCgAGBQJY59AYAAoJEKM20MDuZMseU7IQAKRzLrBGmT/MHcEuUy0c8AQ8
+SjDNqzwz/o0vLRLCZVgRjnH8FPW4ovT2dU9qHFoPUqOoTW763ioweR9deX1ONHLV
+P05Fh4vLJV0uMuo+drfTE7OuP0TMuX1tmSi+c4M+a6iWSBYoJ9s17u3JF+Fv1wIZ
+xzrLorAjgV3LjYrkMoYUWdu4vOOQ/9D43s8nGGwi12u6uHq6qaRPem2G9VPIQolK
+myL9vLQZxgF2rDGL3zek8et0MuKXBhF5HwmE+cXTqwfzOvoX76ga5/0Cy4XZ9Msu
+sIzNQwUGmLqenN4yku5f0DfbRUm5jfzGYvxFrHhX2kZBVljbCx35B0Jd4Bej7tGj
+Jo0WxwFlZOYZfbzbnj/f8eeyIUs7CBmk6p/V7R7GqWYgi+xdmN9YJnitAS08OenZ
+aXFwFXOAQeIhJhXTMI4s7R9kXLH9i541zVcLzHfHN3BhEvcEz/1+or0IC1xKVEoO
+RgMxxy0VlCOpT38o5Jwls3k+F0AJmpS1zqsj6bL7rdAnSjh532OnN5ZWtJQxtyhJ
+4O0gh6i3l/zbc29CVdXSo+H9jt+IocIizghbWB9mkFJVEjceHYGFPmXocmOaMe90
+U84Bvf1mrZWN2EdynvPZhQKhUDcum0Umbef9asVVrH5FDXp2/gMs/GgU6ZISbyyl
+YJHUpwzHSxIqnOodzkYX
+=gX1r
+-----END PGP SIGNATURE-----

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

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

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

Added: dev/lucene/lucene-solr-6.5.1-RC1-revfa827447f5829fe729b779faed675775e3c0b7c8/solr/maven/org/apache/solr/solr-ltr/maven-metadata.xml
==============================================================================
--- dev/lucene/lucene-solr-6.5.1-RC1-revfa827447f5829fe729b779faed675775e3c0b7c8/solr/maven/org/apache/solr/solr-ltr/maven-metadata.xml (added)
+++ dev/lucene/lucene-solr-6.5.1-RC1-revfa827447f5829fe729b779faed675775e3c0b7c8/solr/maven/org/apache/solr/solr-ltr/maven-metadata.xml Fri Apr  7 19:19:32 2017
@@ -0,0 +1,12 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<metadata>
+  <groupId>org.apache.solr</groupId>
+  <artifactId>solr-ltr</artifactId>
+  <version>6.5.1</version>
+  <versioning>
+    <versions>
+      <version>6.5.1</version>
+    </versions>
+    <lastUpdated>20170407174434</lastUpdated>
+  </versioning>
+</metadata>

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

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

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

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

Added: dev/lucene/lucene-solr-6.5.1-RC1-revfa827447f5829fe729b779faed675775e3c0b7c8/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-RC1-revfa827447f5829fe729b779faed675775e3c0b7c8/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-RC1-revfa827447f5829fe729b779faed675775e3c0b7c8/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-RC1-revfa827447f5829fe729b779faed675775e3c0b7c8/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-RC1-revfa827447f5829fe729b779faed675775e3c0b7c8/solr/maven/org/apache/solr/solr-map-reduce/6.5.1/solr-map-reduce-6.5.1-javadoc.jar.asc Fri Apr  7 19:19:32 2017
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Comment: GPGTools - https://gpgtools.org
+
+iQIcBAABCgAGBQJY59AYAAoJEKM20MDuZMseSBIP/R+fwUWAR0b+W0GMYzS4g9Ci
+60x0dRJbxAM4De6PrZTIP4yC0HpQQrd+E0nv1YT9dDu7WoPRlRZ7Ix5NHMhtigdI
+7U83qJ8RGev25YvdZZb5xjo+QSSEWLrK+YYnRXtiFuIUy3fBO/J5JjrM1oNgsyT5
+vLep/fzaCe1+wY84cNul+63Vzhuj3MCHO+rnf16XeD3WoX5+7hfUTjTrtbu3pXyD
+Dpd9z3hSUf6M8BMK5jbCBeF8uswAjVMmlZgBlbV4VvHdiV7TV5yGC2YeW5lwqRRl
+H0AmYguXxK706+i5m3DzGcSht96kHV+TW3Yj5GLMR5o2i8rWvEHhnamcqqM4mKL2
+xRc0PBYtrFHbbEo7cCFVaHiJSW2MfhwLfgbhBmXWiZ+gycqDqdFV7X/uzL/O7XYe
+5BQqbTdzOT2DwYWEdv36QSnVRF3Q+6ECOmDAImL7UrcX4H0hh3qwIpvqibnDnHy6
+xdcBpDB+GzWKpFBVE55RtOBSe5+UgqVKriWeT+aI7La59Hf0fTJV/ExfpHuXnUoP
+BEX3WUNKiCJAL30MKM85SQMnWxlsDAGsamioUQWwzzqnx4rvDR9w+Y9C6dPPW4E8
+G3+YyNIMfcJF/DvAUhC96yion7auwfeGbYEtYre5JPCP9M54ignq0M2d3hnMKyQb
+RhzMk9iFifcU8bcLISq7
+=XlCV
+-----END PGP SIGNATURE-----

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

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

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

Added: dev/lucene/lucene-solr-6.5.1-RC1-revfa827447f5829fe729b779faed675775e3c0b7c8/solr/maven/org/apache/solr/solr-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-RC1-revfa827447f5829fe729b779faed675775e3c0b7c8/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-RC1-revfa827447f5829fe729b779faed675775e3c0b7c8/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-RC1-revfa827447f5829fe729b779faed675775e3c0b7c8/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-RC1-revfa827447f5829fe729b779faed675775e3c0b7c8/solr/maven/org/apache/solr/solr-map-reduce/6.5.1/solr-map-reduce-6.5.1-sources.jar.asc Fri Apr  7 19:19:32 2017
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Comment: GPGTools - https://gpgtools.org
+
+iQIcBAABCgAGBQJY59AYAAoJEKM20MDuZMseNIAQAKv2U3vQyV4mYpSHDSiHSfmp
+YbiSzREe0oRZdkstSLKONwxMYxjXJ798gLsoa5sCcnlIxD3D+tvB0lUgGdg3IfR0
+B4KVwW13RudEzsBaFGaVXtIq/BUdBWxqdDMh6sO1fL4ORPZABSCLWtLMmFV4IAFv
+dW5VindJ/7Z2SurU0yBZ5063qrx0xufa5gYd08vuLm5MhDLAaJda0d3/3QjGz6tx
+aAFqg3OMpCLNsjqmRMhFd/0rp9L7mxQnBsuwhYAHhM2AZbrpJmxFQfx874XofOZg
+tV0i3+Z3QRhIQAvBuBYp0kN1RjK3qn8OFhUD1KjWv8p61+DmhiGXiWpATnA7H0/7
+LiOEXovy+Sxu+8MHXxi6wkqAV0Kj/K3ezxuyCCyZfYscMjXUq2Kn1X6pmTve8VCc
+Ptg+3+iPxgpF9Ay3nn2BPDo8OFyIM1WKfDokK8iZL5hxSogg3zf2BnN3tcISlF/x
+36kZ0q+b2b8lISgp4Keosv+STtOfyP07G6tNLR9/Tts5LqE+EYM1fVxC0uU5een7
+mg7oSbtZblOaQDeeF0k+PKry3bSSxYJ3kGAdCDA4r9/aWvqq++za9pUtvF/gRvS2
+OxgBUx1lSCjydK3czHHB5y6U52kUr+7PbIeRljK22CsH20yHvmjdAyEhFBBvm9XL
+iEiIKKMwaGzOnLMdlLw0
+=fTdu
+-----END PGP SIGNATURE-----

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

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

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

Added: dev/lucene/lucene-solr-6.5.1-RC1-revfa827447f5829fe729b779faed675775e3c0b7c8/solr/maven/org/apache/solr/solr-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-RC1-revfa827447f5829fe729b779faed675775e3c0b7c8/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-RC1-revfa827447f5829fe729b779faed675775e3c0b7c8/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-RC1-revfa827447f5829fe729b779faed675775e3c0b7c8/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-RC1-revfa827447f5829fe729b779faed675775e3c0b7c8/solr/maven/org/apache/solr/solr-map-reduce/6.5.1/solr-map-reduce-6.5.1.jar.asc Fri Apr  7 19:19:32 2017
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Comment: GPGTools - https://gpgtools.org
+
+iQIcBAABCgAGBQJY59AYAAoJEKM20MDuZMseb2gP+gO2u7VMXPAAfh0ZTqKetUxV
+AVYcHwZOGQVHKktFEPnREVvLpwtkla6AttJ/K+oBRavpA/mUqJzuo6ed/0YA7++y
+uo649nUJEvyLEJ6EDcO0I+tWFXAKZC4nkrV1j3b2uhYn6XnJrIb3YqoHXstKiHwJ
+o5OShfjeQCHx57xPKo6vAw4NsFFOadCexezXvj2wAEHL8nJetwg0jE1F88LFSRnL
+Io6+p1l/PvYzOy/4FpcCxpGKB0GLSgOIM7UbkFF1TIGrgk9AzA9oTO04G/ru+rw8
+8HNw1rK9qL9P5MzyuwyqnnDSxsyScWLMtPBuCayL+S0lH1X7P5dkkBDkaZz7tzFd
+TAf0b/ePo55I+IudLl9k+XeCa5CxIHxZDjFA/CBk/2Jsu0Hbe1rTFBGaCOnVFfDV
+6UaMG1UR7AnHJlqpMU+rwXXDJcaxhJ7/mlMzO+dA1pXJiqK8CxP54hLghJ7RYVKm
+R52jIRGU1kwj6s4p+UKaP//gsy/4vbzzMjnv1sY7YnnJcKUznDHv7iiKdRgU7Dey
+B7wYoQA6K/KSakAskf6D7+2o//sj1QD4eIx/obGuLyItfLjkmx3rsEnPR9T2N1dj
+mnNL3NRgoqQl9q0RH3fOWd2MEMBqiD/smIypSa29cFBRDcvS7P/CQLHhHY5nf9T3
+tLqQ++UGX40XLqfFnQ7D
+=fGo2
+-----END PGP SIGNATURE-----

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

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

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