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/20 13:09:52 UTC

svn commit: r19217 [22/25] - in /dev/lucene/lucene-solr-6.5.1-RC2-rev010cac1946df29d3ca03e8b829ce051f92974a5e: ./ 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-rev010cac1946df29d3ca03e8b829ce051f92974a5e/solr/maven/org/apache/solr/solr-map-reduce/6.5.1/solr-map-reduce-6.5.1.pom
==============================================================================
--- dev/lucene/lucene-solr-6.5.1-RC2-rev010cac1946df29d3ca03e8b829ce051f92974a5e/solr/maven/org/apache/solr/solr-map-reduce/6.5.1/solr-map-reduce-6.5.1.pom (added)
+++ dev/lucene/lucene-solr-6.5.1-RC2-rev010cac1946df29d3ca03e8b829ce051f92974a5e/solr/maven/org/apache/solr/solr-map-reduce/6.5.1/solr-map-reduce-6.5.1.pom Thu Apr 20 13:09:49 2017
@@ -0,0 +1,896 @@
+<!--
+  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-map-reduce</artifactId>
+  <packaging>jar</packaging>
+  <name>Apache Solr map-reduce index construction</name>
+  <description>Apache Solr - map-reduce index construction</description>
+  <properties>
+    <module-directory>solr/contrib/map-reduce</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.solr</groupId>
+      <artifactId>solr-morphlines-core</artifactId>
+      <version>${project.version}</version>
+      <type>test-jar</type>
+      <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-cell</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.solr</groupId>
+      <artifactId>solr-core</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.solr</groupId>
+      <artifactId>solr-morphlines-cell</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.solr</groupId>
+      <artifactId>solr-morphlines-core</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.solr</groupId>
+      <artifactId>solr-solrj</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.adobe.xmp</groupId>
+      <artifactId>xmpcore</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.carrotsearch</groupId>
+      <artifactId>hppc</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.drewnoakes</groupId>
+      <artifactId>metadata-extractor</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.fasterxml.jackson.core</groupId>
+      <artifactId>jackson-annotations</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.fasterxml.jackson.core</groupId>
+      <artifactId>jackson-core</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.fasterxml.jackson.core</groupId>
+      <artifactId>jackson-databind</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.fasterxml.jackson.dataformat</groupId>
+      <artifactId>jackson-dataformat-smile</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.github.ben-manes.caffeine</groupId>
+      <artifactId>caffeine</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.google.guava</groupId>
+      <artifactId>guava</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.google.protobuf</groupId>
+      <artifactId>protobuf-java</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.googlecode.juniversalchardet</groupId>
+      <artifactId>juniversalchardet</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.googlecode.mp4parser</groupId>
+      <artifactId>isoparser</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.healthmarketscience.jackcess</groupId>
+      <artifactId>jackcess</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.ibm.icu</groupId>
+      <artifactId>icu4j</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.pff</groupId>
+      <artifactId>java-libpst</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.tdunning</groupId>
+      <artifactId>t-digest</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.typesafe</groupId>
+      <artifactId>config</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-healthchecks</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>io.dropwizard.metrics</groupId>
+      <artifactId>metrics-jetty9</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>io.dropwizard.metrics</groupId>
+      <artifactId>metrics-jvm</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>javax.servlet</groupId>
+      <artifactId>javax.servlet-api</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>jdom</groupId>
+      <artifactId>jdom</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>joda-time</groupId>
+      <artifactId>joda-time</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>log4j</groupId>
+      <artifactId>log4j</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>net.hydromatic</groupId>
+      <artifactId>eigenbase-properties</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>net.sf.saxon</groupId>
+      <artifactId>Saxon-HE</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>net.sourceforge.argparse4j</groupId>
+      <artifactId>argparse4j</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.hadoop</groupId>
+      <artifactId>hadoop-mapreduce-client-core</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.kitesdk</groupId>
+      <artifactId>kite-morphlines-avro</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.kitesdk</groupId>
+      <artifactId>kite-morphlines-core</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.kitesdk</groupId>
+      <artifactId>kite-morphlines-hadoop-sequencefile</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.kitesdk</groupId>
+      <artifactId>kite-morphlines-json</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.kitesdk</groupId>
+      <artifactId>kite-morphlines-saxon</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.kitesdk</groupId>
+      <artifactId>kite-morphlines-tika-core</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.kitesdk</groupId>
+      <artifactId>kite-morphlines-tika-decompress</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.kitesdk</groupId>
+      <artifactId>kite-morphlines-twitter</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>
+
+    <dependency>
+      <groupId>aopalliance</groupId>
+      <artifactId>aopalliance</artifactId>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>com.google.inject</groupId>
+      <artifactId>guice</artifactId>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>com.google.inject.extensions</groupId>
+      <artifactId>guice-servlet</artifactId>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>com.rometools</groupId>
+      <artifactId>rome</artifactId>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>com.sun.jersey</groupId>
+      <artifactId>jersey-bundle</artifactId>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>com.sun.jersey</groupId>
+      <artifactId>jersey-core</artifactId>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>com.sun.jersey</groupId>
+      <artifactId>jersey-json</artifactId>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>com.sun.jersey</groupId>
+      <artifactId>jersey-server</artifactId>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>com.sun.jersey.contribs</groupId>
+      <artifactId>jersey-guice</artifactId>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>com.sun.xml.bind</groupId>
+      <artifactId>jaxb-impl</artifactId>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>com.thoughtworks.paranamer</groupId>
+      <artifactId>paranamer</artifactId>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>io.netty</groupId>
+      <artifactId>netty-all</artifactId>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>javax.inject</groupId>
+      <artifactId>javax.inject</artifactId>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>net.bytebuddy</groupId>
+      <artifactId>byte-buddy</artifactId>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.avro</groupId>
+      <artifactId>avro</artifactId>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.hadoop</groupId>
+      <artifactId>hadoop-common</artifactId>
+      <scope>test</scope>
+      <classifier>tests</classifier>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.hadoop</groupId>
+      <artifactId>hadoop-hdfs</artifactId>
+      <scope>test</scope>
+      <classifier>tests</classifier>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.hadoop</groupId>
+      <artifactId>hadoop-mapreduce-client-app</artifactId>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.hadoop</groupId>
+      <artifactId>hadoop-mapreduce-client-common</artifactId>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.hadoop</groupId>
+      <artifactId>hadoop-mapreduce-client-hs</artifactId>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.hadoop</groupId>
+      <artifactId>hadoop-mapreduce-client-jobclient</artifactId>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.hadoop</groupId>
+      <artifactId>hadoop-mapreduce-client-jobclient</artifactId>
+      <scope>test</scope>
+      <classifier>tests</classifier>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.hadoop</groupId>
+      <artifactId>hadoop-mapreduce-client-shuffle</artifactId>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.hadoop</groupId>
+      <artifactId>hadoop-yarn-api</artifactId>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.hadoop</groupId>
+      <artifactId>hadoop-yarn-client</artifactId>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.hadoop</groupId>
+      <artifactId>hadoop-yarn-common</artifactId>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.hadoop</groupId>
+      <artifactId>hadoop-yarn-server-applicationhistoryservice</artifactId>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.hadoop</groupId>
+      <artifactId>hadoop-yarn-server-common</artifactId>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.hadoop</groupId>
+      <artifactId>hadoop-yarn-server-nodemanager</artifactId>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.hadoop</groupId>
+      <artifactId>hadoop-yarn-server-resourcemanager</artifactId>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.hadoop</groupId>
+      <artifactId>hadoop-yarn-server-tests</artifactId>
+      <scope>test</scope>
+      <classifier>tests</classifier>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.hadoop</groupId>
+      <artifactId>hadoop-yarn-server-web-proxy</artifactId>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.mrunit</groupId>
+      <artifactId>mrunit</artifactId>
+      <scope>test</scope>
+      <classifier>hadoop2</classifier>
+    </dependency>
+    <dependency>
+      <groupId>org.bouncycastle</groupId>
+      <artifactId>bcpkix-jdk15on</artifactId>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.codehaus.jackson</groupId>
+      <artifactId>jackson-jaxrs</artifactId>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.fusesource.leveldbjni</groupId>
+      <artifactId>leveldbjni</artifactId>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.iq80.leveldb</groupId>
+      <artifactId>leveldb</artifactId>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.iq80.leveldb</groupId>
+      <artifactId>leveldb-api</artifactId>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.jboss.netty</groupId>
+      <artifactId>netty</artifactId>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.kitesdk</groupId>
+      <artifactId>kite-morphlines-core</artifactId>
+      <scope>test</scope>
+      <classifier>tests</classifier>
+    </dependency>
+    <dependency>
+      <groupId>org.mockito</groupId>
+      <artifactId>mockito-core</artifactId>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.mortbay.jetty</groupId>
+      <artifactId>jetty</artifactId>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.mortbay.jetty</groupId>
+      <artifactId>jetty-util</artifactId>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.objenesis</groupId>
+      <artifactId>objenesis</artifactId>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.xerial.snappy</groupId>
+      <artifactId>snappy-java</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>
+        <!-- TODO: This is a hack, because the shared test-files folder seems not to be
+          included by the dependency, maybe because the dependency test-jar is not unpacked? -->
+        <directory>${module-path}/../morphlines-core/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-RC2-rev010cac1946df29d3ca03e8b829ce051f92974a5e/solr/maven/org/apache/solr/solr-map-reduce/6.5.1/solr-map-reduce-6.5.1.pom
------------------------------------------------------------------------------
    svn:eol-style = native

Added: dev/lucene/lucene-solr-6.5.1-RC2-rev010cac1946df29d3ca03e8b829ce051f92974a5e/solr/maven/org/apache/solr/solr-map-reduce/6.5.1/solr-map-reduce-6.5.1.pom.asc
==============================================================================
--- dev/lucene/lucene-solr-6.5.1-RC2-rev010cac1946df29d3ca03e8b829ce051f92974a5e/solr/maven/org/apache/solr/solr-map-reduce/6.5.1/solr-map-reduce-6.5.1.pom.asc (added)
+++ dev/lucene/lucene-solr-6.5.1-RC2-rev010cac1946df29d3ca03e8b829ce051f92974a5e/solr/maven/org/apache/solr/solr-map-reduce/6.5.1/solr-map-reduce-6.5.1.pom.asc Thu Apr 20 13:09:49 2017
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Comment: GPGTools - https://gpgtools.org
+
+iQIcBAABCgAGBQJY+BV8AAoJEKM20MDuZMseanUP/RdiTx4EElfXKEHpeF4f4B5m
+pidWvIdxoDY62QpArc83axB92IEF0xuJGxF7cfiRf0jAQ1jSAoXAh2I4MOCUoC1Y
+lEtmMRvAQHAKQPFWEeFgWq/txBX5PxWoBtgXt6XTrqhh70ed0fhVXIswVu4JVuUz
+8T5s9IM6qAQ7XludIheUQRuF7R7jcuIAbe+2ifIOHV0CZVvwHCnlRpU7Hbie4C5q
+Vu+XX07/292WpbQRR95X5+wS10Mu25gpAbS9jEBvRTTf0QMPJoGnANHB33mR4zdI
+G1xJYe6aGpHKwSP2mJ2mjkHEZuZmOuLx7Oks9WyqjLyX4TSDI0AqVKakgknyxF+A
+n2vUj9pN3ENjBr1YaWg0MHb15tvthVNCclokaRhOawoOZeYNj56DDlp3oBfo5U8W
+x61yX13ocu3dtq4jFrzVzUELEPYJKZNOtZttlGlHYzHPALwTgGzKEmhIjr9iINuB
+DPSZLM7m3t/PEqByDRsbYQk8e4L4Qeu66xYirVY4pTMhuMP4DWPwJo/hNzbxP3pU
+n/TEpJbVvA+qKeyiZXgkkAuItjNBdbkvjwmDjQsluCqJ0lCLap+TKd61DYPDWoVw
+/NuZg5EJZCIsuyS8k/bC2j8OKLn6qRGJvs1tf9O86QEG0NXBpl6xbpMfUjpg+mek
+lQXsg2iuxllpy0zNevJx
+=qy1w
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-6.5.1-RC2-rev010cac1946df29d3ca03e8b829ce051f92974a5e/solr/maven/org/apache/solr/solr-map-reduce/6.5.1/solr-map-reduce-6.5.1.pom.md5
==============================================================================
--- dev/lucene/lucene-solr-6.5.1-RC2-rev010cac1946df29d3ca03e8b829ce051f92974a5e/solr/maven/org/apache/solr/solr-map-reduce/6.5.1/solr-map-reduce-6.5.1.pom.md5 (added)
+++ dev/lucene/lucene-solr-6.5.1-RC2-rev010cac1946df29d3ca03e8b829ce051f92974a5e/solr/maven/org/apache/solr/solr-map-reduce/6.5.1/solr-map-reduce-6.5.1.pom.md5 Thu Apr 20 13:09:49 2017
@@ -0,0 +1 @@
+b190d038a00fb62f70db7b8f12662f7a
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.5.1-RC2-rev010cac1946df29d3ca03e8b829ce051f92974a5e/solr/maven/org/apache/solr/solr-map-reduce/6.5.1/solr-map-reduce-6.5.1.pom.sha1
==============================================================================
--- dev/lucene/lucene-solr-6.5.1-RC2-rev010cac1946df29d3ca03e8b829ce051f92974a5e/solr/maven/org/apache/solr/solr-map-reduce/6.5.1/solr-map-reduce-6.5.1.pom.sha1 (added)
+++ dev/lucene/lucene-solr-6.5.1-RC2-rev010cac1946df29d3ca03e8b829ce051f92974a5e/solr/maven/org/apache/solr/solr-map-reduce/6.5.1/solr-map-reduce-6.5.1.pom.sha1 Thu Apr 20 13:09:49 2017
@@ -0,0 +1 @@
+a38bc42920ecd6d400a8d4ab156e54b6c2d2350a
\ No newline at end of file

Propchange: dev/lucene/lucene-solr-6.5.1-RC2-rev010cac1946df29d3ca03e8b829ce051f92974a5e/solr/maven/org/apache/solr/solr-map-reduce/6.5.1/solr-map-reduce-6.5.1.pom.sha1
------------------------------------------------------------------------------
    svn:eol-style = native

Added: dev/lucene/lucene-solr-6.5.1-RC2-rev010cac1946df29d3ca03e8b829ce051f92974a5e/solr/maven/org/apache/solr/solr-map-reduce/maven-metadata.xml
==============================================================================
--- dev/lucene/lucene-solr-6.5.1-RC2-rev010cac1946df29d3ca03e8b829ce051f92974a5e/solr/maven/org/apache/solr/solr-map-reduce/maven-metadata.xml (added)
+++ dev/lucene/lucene-solr-6.5.1-RC2-rev010cac1946df29d3ca03e8b829ce051f92974a5e/solr/maven/org/apache/solr/solr-map-reduce/maven-metadata.xml Thu Apr 20 13:09:49 2017
@@ -0,0 +1,12 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<metadata>
+  <groupId>org.apache.solr</groupId>
+  <artifactId>solr-map-reduce</artifactId>
+  <version>6.5.1</version>
+  <versioning>
+    <versions>
+      <version>6.5.1</version>
+    </versions>
+    <lastUpdated>20170420015658</lastUpdated>
+  </versioning>
+</metadata>

Propchange: dev/lucene/lucene-solr-6.5.1-RC2-rev010cac1946df29d3ca03e8b829ce051f92974a5e/solr/maven/org/apache/solr/solr-map-reduce/maven-metadata.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Added: dev/lucene/lucene-solr-6.5.1-RC2-rev010cac1946df29d3ca03e8b829ce051f92974a5e/solr/maven/org/apache/solr/solr-map-reduce/maven-metadata.xml.md5
==============================================================================
--- dev/lucene/lucene-solr-6.5.1-RC2-rev010cac1946df29d3ca03e8b829ce051f92974a5e/solr/maven/org/apache/solr/solr-map-reduce/maven-metadata.xml.md5 (added)
+++ dev/lucene/lucene-solr-6.5.1-RC2-rev010cac1946df29d3ca03e8b829ce051f92974a5e/solr/maven/org/apache/solr/solr-map-reduce/maven-metadata.xml.md5 Thu Apr 20 13:09:49 2017
@@ -0,0 +1 @@
+9bb390ea7ded93fe51521ffd85f475be
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.5.1-RC2-rev010cac1946df29d3ca03e8b829ce051f92974a5e/solr/maven/org/apache/solr/solr-map-reduce/maven-metadata.xml.sha1
==============================================================================
--- dev/lucene/lucene-solr-6.5.1-RC2-rev010cac1946df29d3ca03e8b829ce051f92974a5e/solr/maven/org/apache/solr/solr-map-reduce/maven-metadata.xml.sha1 (added)
+++ dev/lucene/lucene-solr-6.5.1-RC2-rev010cac1946df29d3ca03e8b829ce051f92974a5e/solr/maven/org/apache/solr/solr-map-reduce/maven-metadata.xml.sha1 Thu Apr 20 13:09:49 2017
@@ -0,0 +1 @@
+a901e8cf0b771faf34a23c3ed6eff57abfd5d1fa
\ No newline at end of file

Propchange: dev/lucene/lucene-solr-6.5.1-RC2-rev010cac1946df29d3ca03e8b829ce051f92974a5e/solr/maven/org/apache/solr/solr-map-reduce/maven-metadata.xml.sha1
------------------------------------------------------------------------------
    svn:eol-style = native

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

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

Added: dev/lucene/lucene-solr-6.5.1-RC2-rev010cac1946df29d3ca03e8b829ce051f92974a5e/solr/maven/org/apache/solr/solr-morphlines-cell/6.5.1/solr-morphlines-cell-6.5.1-javadoc.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-6.5.1-RC2-rev010cac1946df29d3ca03e8b829ce051f92974a5e/solr/maven/org/apache/solr/solr-morphlines-cell/6.5.1/solr-morphlines-cell-6.5.1-javadoc.jar.asc (added)
+++ dev/lucene/lucene-solr-6.5.1-RC2-rev010cac1946df29d3ca03e8b829ce051f92974a5e/solr/maven/org/apache/solr/solr-morphlines-cell/6.5.1/solr-morphlines-cell-6.5.1-javadoc.jar.asc Thu Apr 20 13:09:49 2017
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Comment: GPGTools - https://gpgtools.org
+
+iQIcBAABCgAGBQJY+BV8AAoJEKM20MDuZMseg2AP+wVHLoq90ge1LY5932K1ag97
+cEUk+KYwlvN9Yg4lDS7jl3UK4JrbI5Ssk2Uq7GZHc1OQgi1JOzfgndjgvVinpR8j
+Z1e/qmmH8e11Fj0aQSaUPBbrKHq3rmN9vKT9s0CvdZ7wql4en52uJhvTiInNHHLg
+T7c2if2rn7EpAb7NTBfvsfoezvCJig7BM7vqpZOd+zJJl8KfbYA8WPCNVdkbJURC
+afEc8tg7Dr2kn26Ke+Ii98GaEoxaiGJKuqi67o0AshCzplyWK7sY4vWmdDXF9m1W
+SstozsMTiKms+3bG7mm/GKzyNkC2WEBE+mp0jp9+Ht4utCEXkUe6Gxn5cFz+t/MO
+zjHwT4HXljuoIIkaXY9flTHm4cemEU14fFS8k6nmWLY2Au7nnANw80cYmGWCntSR
+W/0sMNPHZUOH8Zbo6tZbF5ijw/PGwAGA0Wv5fhGOid27EDoXFa0gYW6am+bI0dg3
+zH3V1G6DHqdL7RJb6VtpMykJzwCxEhEQDwZix+TOQhFqFvn5mVHKDE+GA8mBF/U2
+bGV3ShqEj6ssEiEblmjMrFwQlIHzx5lMZemx4AWmy+Z3a+LjkL7ZqFXbedq69Lu6
+g+gyMNs1T4tMr5cUXdzTvU6bPs8/3b+q6Pumbvlb+trihv4UF37rGYQpv5yp4pqb
+ELD+gXkZPFv4gqukiAkI
+=WCgc
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-6.5.1-RC2-rev010cac1946df29d3ca03e8b829ce051f92974a5e/solr/maven/org/apache/solr/solr-morphlines-cell/6.5.1/solr-morphlines-cell-6.5.1-javadoc.jar.md5
==============================================================================
--- dev/lucene/lucene-solr-6.5.1-RC2-rev010cac1946df29d3ca03e8b829ce051f92974a5e/solr/maven/org/apache/solr/solr-morphlines-cell/6.5.1/solr-morphlines-cell-6.5.1-javadoc.jar.md5 (added)
+++ dev/lucene/lucene-solr-6.5.1-RC2-rev010cac1946df29d3ca03e8b829ce051f92974a5e/solr/maven/org/apache/solr/solr-morphlines-cell/6.5.1/solr-morphlines-cell-6.5.1-javadoc.jar.md5 Thu Apr 20 13:09:49 2017
@@ -0,0 +1 @@
+90bacd01166ed82e5735def1acd24676
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.5.1-RC2-rev010cac1946df29d3ca03e8b829ce051f92974a5e/solr/maven/org/apache/solr/solr-morphlines-cell/6.5.1/solr-morphlines-cell-6.5.1-javadoc.jar.sha1
==============================================================================
--- dev/lucene/lucene-solr-6.5.1-RC2-rev010cac1946df29d3ca03e8b829ce051f92974a5e/solr/maven/org/apache/solr/solr-morphlines-cell/6.5.1/solr-morphlines-cell-6.5.1-javadoc.jar.sha1 (added)
+++ dev/lucene/lucene-solr-6.5.1-RC2-rev010cac1946df29d3ca03e8b829ce051f92974a5e/solr/maven/org/apache/solr/solr-morphlines-cell/6.5.1/solr-morphlines-cell-6.5.1-javadoc.jar.sha1 Thu Apr 20 13:09:49 2017
@@ -0,0 +1 @@
+34f14d9fcad2516b1ab3ccb62809e6da55302311
\ No newline at end of file

Propchange: dev/lucene/lucene-solr-6.5.1-RC2-rev010cac1946df29d3ca03e8b829ce051f92974a5e/solr/maven/org/apache/solr/solr-morphlines-cell/6.5.1/solr-morphlines-cell-6.5.1-javadoc.jar.sha1
------------------------------------------------------------------------------
    svn:eol-style = native

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

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

Added: dev/lucene/lucene-solr-6.5.1-RC2-rev010cac1946df29d3ca03e8b829ce051f92974a5e/solr/maven/org/apache/solr/solr-morphlines-cell/6.5.1/solr-morphlines-cell-6.5.1-sources.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-6.5.1-RC2-rev010cac1946df29d3ca03e8b829ce051f92974a5e/solr/maven/org/apache/solr/solr-morphlines-cell/6.5.1/solr-morphlines-cell-6.5.1-sources.jar.asc (added)
+++ dev/lucene/lucene-solr-6.5.1-RC2-rev010cac1946df29d3ca03e8b829ce051f92974a5e/solr/maven/org/apache/solr/solr-morphlines-cell/6.5.1/solr-morphlines-cell-6.5.1-sources.jar.asc Thu Apr 20 13:09:49 2017
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Comment: GPGTools - https://gpgtools.org
+
+iQIcBAABCgAGBQJY+BV8AAoJEKM20MDuZMsepigQAJ0XyoL9WAkW20GsrRSuYxju
+XrdAog4trVr5hKTVHSX50Dr9Y8kmDxh8oDRp1yJb4KW3N0QRbdXDRamdSp21BQyA
+N9nEF7Rb5nhMiHP+dCCmEwgsV3r8djutTWvacCOG/Y7lW1kyvy5E3Q9AMIha7zaX
+F7CRcqCjUb3zEKwzcVlBSej5GkSRyWLPQaxzjDaMGC2zRcW2wfRMgvBU6DpaJCul
+oXN6tfa1BQ7oIO+tn+zmcKliVk/7Wc1+IHVJZGoXbifUZSR2WxQRUb4Pq17UfHiU
+ElOQqUvsRKLST+I/0Rop3wFdcpudxKT3086UiWB9uQZ2Tt/XDqDJDCtGxH2rdbCI
+Xkio8sGP9XduKbPniNxTwQhP19VNPYdAqo2VBz0DuCPGA47FDB3uz+K3RLCfAXFn
+WqZBBMQ5+wrEdeKaeILZbXM9BznZP73dKnunc/3HN+rvpseQx8IAWOaglUM4vQ6d
+5DfjpQ9MB1Aq7zUcpKGqumSlj0a/YAyCg4dyD1wDy36ZwtboCVCxxXDA76PDaAh1
+v9CGtoB2spNcWSeW2dd7ncNhq5pX4OZiTVihv6+uBi17HMJxJ+0D9/eqPhoe2ENW
+RotITiP8xeZFz6fCKp9dqSkOLuwts0eNA2muOGUaTyAoWtgCG57QZSH/n7RJbZ14
+tf7XRDek9d2ix+9qLBKA
+=rskp
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-6.5.1-RC2-rev010cac1946df29d3ca03e8b829ce051f92974a5e/solr/maven/org/apache/solr/solr-morphlines-cell/6.5.1/solr-morphlines-cell-6.5.1-sources.jar.md5
==============================================================================
--- dev/lucene/lucene-solr-6.5.1-RC2-rev010cac1946df29d3ca03e8b829ce051f92974a5e/solr/maven/org/apache/solr/solr-morphlines-cell/6.5.1/solr-morphlines-cell-6.5.1-sources.jar.md5 (added)
+++ dev/lucene/lucene-solr-6.5.1-RC2-rev010cac1946df29d3ca03e8b829ce051f92974a5e/solr/maven/org/apache/solr/solr-morphlines-cell/6.5.1/solr-morphlines-cell-6.5.1-sources.jar.md5 Thu Apr 20 13:09:49 2017
@@ -0,0 +1 @@
+bd7f545a4def0971b8d59cf1056972a6
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.5.1-RC2-rev010cac1946df29d3ca03e8b829ce051f92974a5e/solr/maven/org/apache/solr/solr-morphlines-cell/6.5.1/solr-morphlines-cell-6.5.1-sources.jar.sha1
==============================================================================
--- dev/lucene/lucene-solr-6.5.1-RC2-rev010cac1946df29d3ca03e8b829ce051f92974a5e/solr/maven/org/apache/solr/solr-morphlines-cell/6.5.1/solr-morphlines-cell-6.5.1-sources.jar.sha1 (added)
+++ dev/lucene/lucene-solr-6.5.1-RC2-rev010cac1946df29d3ca03e8b829ce051f92974a5e/solr/maven/org/apache/solr/solr-morphlines-cell/6.5.1/solr-morphlines-cell-6.5.1-sources.jar.sha1 Thu Apr 20 13:09:49 2017
@@ -0,0 +1 @@
+c82b1d279f008f4df178496f753687bf69dacfe8
\ No newline at end of file

Propchange: dev/lucene/lucene-solr-6.5.1-RC2-rev010cac1946df29d3ca03e8b829ce051f92974a5e/solr/maven/org/apache/solr/solr-morphlines-cell/6.5.1/solr-morphlines-cell-6.5.1-sources.jar.sha1
------------------------------------------------------------------------------
    svn:eol-style = native

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

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

Added: dev/lucene/lucene-solr-6.5.1-RC2-rev010cac1946df29d3ca03e8b829ce051f92974a5e/solr/maven/org/apache/solr/solr-morphlines-cell/6.5.1/solr-morphlines-cell-6.5.1.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-6.5.1-RC2-rev010cac1946df29d3ca03e8b829ce051f92974a5e/solr/maven/org/apache/solr/solr-morphlines-cell/6.5.1/solr-morphlines-cell-6.5.1.jar.asc (added)
+++ dev/lucene/lucene-solr-6.5.1-RC2-rev010cac1946df29d3ca03e8b829ce051f92974a5e/solr/maven/org/apache/solr/solr-morphlines-cell/6.5.1/solr-morphlines-cell-6.5.1.jar.asc Thu Apr 20 13:09:49 2017
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Comment: GPGTools - https://gpgtools.org
+
+iQIcBAABCgAGBQJY+BV8AAoJEKM20MDuZMsem24P/34LZWWXxt4W/KGlGC0m349o
+8Mm+eFF6MD+VaUz61mbT/1oL4c52bcEvdufIWnJikuVv5xdkTwEj1S0hSlwBGDsV
+nquHn4JNFnPEMUKOBpMEtlZOywcUlYvRitYbePT3Wq/OOtl3iHHjZKjVS1LqWZsf
+w/EKGQImFx7VOgWi3kSYwqGunw5yT2tJqcMKAm/OYasJ7rloqnqSMZKBITkzkG+1
+Mj1UfC45Lrf1gmSh3BS6su0hIFsH8Vj9GVBhbrrQbOXNHdzoSFqIJaQxr85Y/xiG
+4K8b7JpQQ7aGT/pXcMMjpExS+KX0NbiijrBQCo8bfScm8tpIHHejm1eHFhay1u44
+keP8JLT4ozOTc1bklc/yQ+02lIUaBVLY4A8UDyIex+FD4Abn7I3phNLuCfWd8KxW
+M5p/7HsDA+WY21zvNUB9QTtQqCaOSd4pS703dsJBganZEIFNAPMy+mVqVFtgAtQv
+duiNVRRIOsJ2xJ33LGZAEn7AGoHpheSItRliOJ+dBG7rUvhAXZKE7zzPSMB/0yl4
+IpxlO5MwFmnMe/ESpCGJpxwVCByDUdUrhfeIuHvK0uUCBitPKdbKOr9CkNR+g4pf
+ATF7GaIFQ4HI58D6a6Z8+O31YgbMBKK34+sEnRohj9PPg20xWdwZ0F5w8eS32Gle
+XQpjxZeVF2BAF67sAxLn
+=oRyH
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-6.5.1-RC2-rev010cac1946df29d3ca03e8b829ce051f92974a5e/solr/maven/org/apache/solr/solr-morphlines-cell/6.5.1/solr-morphlines-cell-6.5.1.jar.md5
==============================================================================
--- dev/lucene/lucene-solr-6.5.1-RC2-rev010cac1946df29d3ca03e8b829ce051f92974a5e/solr/maven/org/apache/solr/solr-morphlines-cell/6.5.1/solr-morphlines-cell-6.5.1.jar.md5 (added)
+++ dev/lucene/lucene-solr-6.5.1-RC2-rev010cac1946df29d3ca03e8b829ce051f92974a5e/solr/maven/org/apache/solr/solr-morphlines-cell/6.5.1/solr-morphlines-cell-6.5.1.jar.md5 Thu Apr 20 13:09:49 2017
@@ -0,0 +1 @@
+11d311cc2bf877f38603c0d716c7c366
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.5.1-RC2-rev010cac1946df29d3ca03e8b829ce051f92974a5e/solr/maven/org/apache/solr/solr-morphlines-cell/6.5.1/solr-morphlines-cell-6.5.1.jar.sha1
==============================================================================
--- dev/lucene/lucene-solr-6.5.1-RC2-rev010cac1946df29d3ca03e8b829ce051f92974a5e/solr/maven/org/apache/solr/solr-morphlines-cell/6.5.1/solr-morphlines-cell-6.5.1.jar.sha1 (added)
+++ dev/lucene/lucene-solr-6.5.1-RC2-rev010cac1946df29d3ca03e8b829ce051f92974a5e/solr/maven/org/apache/solr/solr-morphlines-cell/6.5.1/solr-morphlines-cell-6.5.1.jar.sha1 Thu Apr 20 13:09:49 2017
@@ -0,0 +1 @@
+4a8b51bed74406716b694175ba79fd4f28ebb6fc
\ No newline at end of file

Propchange: dev/lucene/lucene-solr-6.5.1-RC2-rev010cac1946df29d3ca03e8b829ce051f92974a5e/solr/maven/org/apache/solr/solr-morphlines-cell/6.5.1/solr-morphlines-cell-6.5.1.jar.sha1
------------------------------------------------------------------------------
    svn:eol-style = native

Added: dev/lucene/lucene-solr-6.5.1-RC2-rev010cac1946df29d3ca03e8b829ce051f92974a5e/solr/maven/org/apache/solr/solr-morphlines-cell/6.5.1/solr-morphlines-cell-6.5.1.pom
==============================================================================
--- dev/lucene/lucene-solr-6.5.1-RC2-rev010cac1946df29d3ca03e8b829ce051f92974a5e/solr/maven/org/apache/solr/solr-morphlines-cell/6.5.1/solr-morphlines-cell-6.5.1.pom (added)
+++ dev/lucene/lucene-solr-6.5.1-RC2-rev010cac1946df29d3ca03e8b829ce051f92974a5e/solr/maven/org/apache/solr/solr-morphlines-cell/6.5.1/solr-morphlines-cell-6.5.1.pom Thu Apr 20 13:09:49 2017
@@ -0,0 +1,862 @@
+<!--
+  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-morphlines-cell</artifactId>
+  <packaging>jar</packaging>
+  <name>Apache Solr Cell Morphlines</name>
+  <description>Apache Solr - Cell Morphlines</description>
+  <properties>
+    <module-directory>solr/contrib/morphlines-cell</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.solr</groupId>
+      <artifactId>solr-morphlines-core</artifactId>
+      <version>${project.version}</version>
+      <type>test-jar</type>
+      <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-cell</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.solr</groupId>
+      <artifactId>solr-core</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.solr</groupId>
+      <artifactId>solr-morphlines-core</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.solr</groupId>
+      <artifactId>solr-solrj</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.adobe.xmp</groupId>
+      <artifactId>xmpcore</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.carrotsearch</groupId>
+      <artifactId>hppc</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.drewnoakes</groupId>
+      <artifactId>metadata-extractor</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.fasterxml.jackson.core</groupId>
+      <artifactId>jackson-annotations</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.fasterxml.jackson.core</groupId>
+      <artifactId>jackson-core</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.fasterxml.jackson.core</groupId>
+      <artifactId>jackson-databind</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.fasterxml.jackson.dataformat</groupId>
+      <artifactId>jackson-dataformat-smile</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.github.ben-manes.caffeine</groupId>
+      <artifactId>caffeine</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.google.guava</groupId>
+      <artifactId>guava</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.google.protobuf</groupId>
+      <artifactId>protobuf-java</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.googlecode.juniversalchardet</groupId>
+      <artifactId>juniversalchardet</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.googlecode.mp4parser</groupId>
+      <artifactId>isoparser</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.healthmarketscience.jackcess</groupId>
+      <artifactId>jackcess</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.ibm.icu</groupId>
+      <artifactId>icu4j</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.pff</groupId>
+      <artifactId>java-libpst</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.tdunning</groupId>
+      <artifactId>t-digest</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.typesafe</groupId>
+      <artifactId>config</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-healthchecks</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>io.dropwizard.metrics</groupId>
+      <artifactId>metrics-jetty9</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>io.dropwizard.metrics</groupId>
+      <artifactId>metrics-jvm</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>javax.servlet</groupId>
+      <artifactId>javax.servlet-api</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>jdom</groupId>
+      <artifactId>jdom</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>joda-time</groupId>
+      <artifactId>joda-time</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>log4j</groupId>
+      <artifactId>log4j</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>net.hydromatic</groupId>
+      <artifactId>eigenbase-properties</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>net.sourceforge.jmatio</groupId>
+      <artifactId>jmatio</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.antlr</groupId>
+      <artifactId>antlr4-runtime</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.calcite</groupId>
+      <artifactId>calcite-core</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.calcite</groupId>
+      <artifactId>calcite-linq4j</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.calcite.avatica</groupId>
+      <artifactId>avatica-core</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.commons</groupId>
+      <artifactId>commons-compress</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.commons</groupId>
+      <artifactId>commons-exec</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.curator</groupId>
+      <artifactId>curator-client</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.curator</groupId>
+      <artifactId>curator-framework</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.curator</groupId>
+      <artifactId>curator-recipes</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.hadoop</groupId>
+      <artifactId>hadoop-annotations</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.hadoop</groupId>
+      <artifactId>hadoop-auth</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.hadoop</groupId>
+      <artifactId>hadoop-common</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.hadoop</groupId>
+      <artifactId>hadoop-hdfs</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.htrace</groupId>
+      <artifactId>htrace-core</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.httpcomponents</groupId>
+      <artifactId>httpclient</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.httpcomponents</groupId>
+      <artifactId>httpcore</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.httpcomponents</groupId>
+      <artifactId>httpmime</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.james</groupId>
+      <artifactId>apache-mime4j-core</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.james</groupId>
+      <artifactId>apache-mime4j-dom</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.pdfbox</groupId>
+      <artifactId>fontbox</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.pdfbox</groupId>
+      <artifactId>jempbox</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.pdfbox</groupId>
+      <artifactId>pdfbox</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.pdfbox</groupId>
+      <artifactId>pdfbox-tools</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.poi</groupId>
+      <artifactId>poi</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.poi</groupId>
+      <artifactId>poi-ooxml</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.poi</groupId>
+      <artifactId>poi-ooxml-schemas</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.poi</groupId>
+      <artifactId>poi-scratchpad</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.tika</groupId>
+      <artifactId>tika-core</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.tika</groupId>
+      <artifactId>tika-java7</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.tika</groupId>
+      <artifactId>tika-parsers</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.tika</groupId>
+      <artifactId>tika-xmp</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.xmlbeans</groupId>
+      <artifactId>xmlbeans</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.zookeeper</groupId>
+      <artifactId>zookeeper</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.aspectj</groupId>
+      <artifactId>aspectjrt</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.bouncycastle</groupId>
+      <artifactId>bcmail-jdk15</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.bouncycastle</groupId>
+      <artifactId>bcprov-jdk15</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.ccil.cowan.tagsoup</groupId>
+      <artifactId>tagsoup</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.codehaus.jackson</groupId>
+      <artifactId>jackson-core-asl</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.codehaus.jackson</groupId>
+      <artifactId>jackson-mapper-asl</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.codehaus.janino</groupId>
+      <artifactId>commons-compiler</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.codehaus.janino</groupId>
+      <artifactId>janino</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.codehaus.woodstox</groupId>
+      <artifactId>stax2-api</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.codehaus.woodstox</groupId>
+      <artifactId>woodstox-core-asl</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.eclipse.jetty</groupId>
+      <artifactId>jetty-continuation</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.eclipse.jetty</groupId>
+      <artifactId>jetty-deploy</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.eclipse.jetty</groupId>
+      <artifactId>jetty-http</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.eclipse.jetty</groupId>
+      <artifactId>jetty-io</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.eclipse.jetty</groupId>
+      <artifactId>jetty-jmx</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.eclipse.jetty</groupId>
+      <artifactId>jetty-rewrite</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.eclipse.jetty</groupId>
+      <artifactId>jetty-security</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.eclipse.jetty</groupId>
+      <artifactId>jetty-server</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.eclipse.jetty</groupId>
+      <artifactId>jetty-servlet</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.eclipse.jetty</groupId>
+      <artifactId>jetty-servlets</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.eclipse.jetty</groupId>
+      <artifactId>jetty-util</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.eclipse.jetty</groupId>
+      <artifactId>jetty-webapp</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.eclipse.jetty</groupId>
+      <artifactId>jetty-xml</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.gagravarr</groupId>
+      <artifactId>vorbis-java-core</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.gagravarr</groupId>
+      <artifactId>vorbis-java-tika</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.kitesdk</groupId>
+      <artifactId>kite-morphlines-avro</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.kitesdk</groupId>
+      <artifactId>kite-morphlines-core</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.kitesdk</groupId>
+      <artifactId>kite-morphlines-json</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.kitesdk</groupId>
+      <artifactId>kite-morphlines-tika-core</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.kitesdk</groupId>
+      <artifactId>kite-morphlines-tika-decompress</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.kitesdk</groupId>
+      <artifactId>kite-morphlines-twitter</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>
+
+    <dependency>
+      <groupId>aopalliance</groupId>
+      <artifactId>aopalliance</artifactId>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>com.google.inject</groupId>
+      <artifactId>guice</artifactId>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>com.google.inject.extensions</groupId>
+      <artifactId>guice-servlet</artifactId>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>com.sun.jersey</groupId>
+      <artifactId>jersey-bundle</artifactId>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>com.sun.jersey</groupId>
+      <artifactId>jersey-core</artifactId>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>com.sun.jersey</groupId>
+      <artifactId>jersey-json</artifactId>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>com.sun.jersey</groupId>
+      <artifactId>jersey-server</artifactId>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>com.sun.jersey.contribs</groupId>
+      <artifactId>jersey-guice</artifactId>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>com.sun.xml.bind</groupId>
+      <artifactId>jaxb-impl</artifactId>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>com.thoughtworks.paranamer</groupId>
+      <artifactId>paranamer</artifactId>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>io.netty</groupId>
+      <artifactId>netty-all</artifactId>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>javax.inject</groupId>
+      <artifactId>javax.inject</artifactId>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>net.bytebuddy</groupId>
+      <artifactId>byte-buddy</artifactId>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.avro</groupId>
+      <artifactId>avro</artifactId>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.hadoop</groupId>
+      <artifactId>hadoop-common</artifactId>
+      <scope>test</scope>
+      <classifier>tests</classifier>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.hadoop</groupId>
+      <artifactId>hadoop-hdfs</artifactId>
+      <scope>test</scope>
+      <classifier>tests</classifier>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.hadoop</groupId>
+      <artifactId>hadoop-mapreduce-client-app</artifactId>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.hadoop</groupId>
+      <artifactId>hadoop-mapreduce-client-common</artifactId>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.hadoop</groupId>
+      <artifactId>hadoop-mapreduce-client-core</artifactId>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.hadoop</groupId>
+      <artifactId>hadoop-mapreduce-client-hs</artifactId>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.hadoop</groupId>
+      <artifactId>hadoop-mapreduce-client-jobclient</artifactId>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.hadoop</groupId>
+      <artifactId>hadoop-mapreduce-client-jobclient</artifactId>
+      <scope>test</scope>
+      <classifier>tests</classifier>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.hadoop</groupId>
+      <artifactId>hadoop-mapreduce-client-shuffle</artifactId>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.hadoop</groupId>
+      <artifactId>hadoop-yarn-api</artifactId>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.hadoop</groupId>
+      <artifactId>hadoop-yarn-client</artifactId>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.hadoop</groupId>
+      <artifactId>hadoop-yarn-common</artifactId>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.hadoop</groupId>
+      <artifactId>hadoop-yarn-server-applicationhistoryservice</artifactId>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.hadoop</groupId>
+      <artifactId>hadoop-yarn-server-common</artifactId>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.hadoop</groupId>
+      <artifactId>hadoop-yarn-server-nodemanager</artifactId>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.hadoop</groupId>
+      <artifactId>hadoop-yarn-server-resourcemanager</artifactId>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.hadoop</groupId>
+      <artifactId>hadoop-yarn-server-tests</artifactId>
+      <scope>test</scope>
+      <classifier>tests</classifier>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.hadoop</groupId>
+      <artifactId>hadoop-yarn-server-web-proxy</artifactId>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.mrunit</groupId>
+      <artifactId>mrunit</artifactId>
+      <scope>test</scope>
+      <classifier>hadoop2</classifier>
+    </dependency>
+    <dependency>
+      <groupId>org.codehaus.jackson</groupId>
+      <artifactId>jackson-jaxrs</artifactId>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.fusesource.leveldbjni</groupId>
+      <artifactId>leveldbjni</artifactId>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.iq80.leveldb</groupId>
+      <artifactId>leveldb</artifactId>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.iq80.leveldb</groupId>
+      <artifactId>leveldb-api</artifactId>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.kitesdk</groupId>
+      <artifactId>kite-morphlines-core</artifactId>
+      <scope>test</scope>
+      <classifier>tests</classifier>
+    </dependency>
+    <dependency>
+      <groupId>org.mockito</groupId>
+      <artifactId>mockito-core</artifactId>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.mortbay.jetty</groupId>
+      <artifactId>jetty</artifactId>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.mortbay.jetty</groupId>
+      <artifactId>jetty-util</artifactId>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.objenesis</groupId>
+      <artifactId>objenesis</artifactId>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.xerial.snappy</groupId>
+      <artifactId>snappy-java</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>
+        <!-- TODO: This is a hack, because the shared test-files folder seems not to be
+          included by the dependency, maybe because the dependency test-jar is not unpacked? -->
+        <directory>${module-path}/../morphlines-core/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-RC2-rev010cac1946df29d3ca03e8b829ce051f92974a5e/solr/maven/org/apache/solr/solr-morphlines-cell/6.5.1/solr-morphlines-cell-6.5.1.pom
------------------------------------------------------------------------------
    svn:eol-style = native

Added: dev/lucene/lucene-solr-6.5.1-RC2-rev010cac1946df29d3ca03e8b829ce051f92974a5e/solr/maven/org/apache/solr/solr-morphlines-cell/6.5.1/solr-morphlines-cell-6.5.1.pom.asc
==============================================================================
--- dev/lucene/lucene-solr-6.5.1-RC2-rev010cac1946df29d3ca03e8b829ce051f92974a5e/solr/maven/org/apache/solr/solr-morphlines-cell/6.5.1/solr-morphlines-cell-6.5.1.pom.asc (added)
+++ dev/lucene/lucene-solr-6.5.1-RC2-rev010cac1946df29d3ca03e8b829ce051f92974a5e/solr/maven/org/apache/solr/solr-morphlines-cell/6.5.1/solr-morphlines-cell-6.5.1.pom.asc Thu Apr 20 13:09:49 2017
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Comment: GPGTools - https://gpgtools.org
+
+iQIcBAABCgAGBQJY+BV8AAoJEKM20MDuZMseXgIQALvpRnJ/OTb5qhr8WoKGAdfP
+UWj3zMrbkBHw9VjfV1GBQ7MVGvG0HR5+sdfgZW5VNpgUxug8J2Aj7rCv0TUWdVuq
+XWPjPFgdxwuVgEELsG1ROck++OZIMvvk4iCHDMISMMW6cv/XwrSA12z76WDCxrZW
+B8HppmXXCe2XJxhrhY8gQSZzJJsdKlOie1ySNwfqz4hOdWwyHWDLwloVGmMqrFTP
+3qM4o+UYe4gCyoQqiZ7GTsH0W0YEIbaJrvcKybwQQu512iBXi4cfOywAcSxXkZLZ
+mH5567dqOJ9Q4QBM05AoHSNDvuwdtOEw5pJ3w+yFQ6MOd87V3MjBaotX3R42SO+T
+aESI0FN9W7BSUDWQxNawD0+Rkz6eRgg4FH+CDMHzmbVps/oBeejHiPNzew+W4W4K
+0tHGk5Qs0xUoVr981Be2W7WMM1v9FlB82+f1mdL76hzpFWm6kINHhb/WGuJfo9gE
+Oc/xGnGAyVtRO+XnTZ6x26E/gPPPlN2HDKTvlGZhoQ1HXAvbBcqil1BJCf9bGMRS
+S3UW2trO2aum2DT+IIZDRuUIHVICGZsJtdXp8rJKclU6n5oC3mk/QSvD7yfYQTYe
+XK/Ux8P/aywgvcD/1aUn9Xt3yyRsAxwugT3bOk4c9IPnoPBUifoGI0OsZbjb8qgc
+3zNxw1Q0xZTbLqGineJn
+=WL40
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-6.5.1-RC2-rev010cac1946df29d3ca03e8b829ce051f92974a5e/solr/maven/org/apache/solr/solr-morphlines-cell/6.5.1/solr-morphlines-cell-6.5.1.pom.md5
==============================================================================
--- dev/lucene/lucene-solr-6.5.1-RC2-rev010cac1946df29d3ca03e8b829ce051f92974a5e/solr/maven/org/apache/solr/solr-morphlines-cell/6.5.1/solr-morphlines-cell-6.5.1.pom.md5 (added)
+++ dev/lucene/lucene-solr-6.5.1-RC2-rev010cac1946df29d3ca03e8b829ce051f92974a5e/solr/maven/org/apache/solr/solr-morphlines-cell/6.5.1/solr-morphlines-cell-6.5.1.pom.md5 Thu Apr 20 13:09:49 2017
@@ -0,0 +1 @@
+f9e3e7fc618d9690cdc3c43a037ab24a
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.5.1-RC2-rev010cac1946df29d3ca03e8b829ce051f92974a5e/solr/maven/org/apache/solr/solr-morphlines-cell/6.5.1/solr-morphlines-cell-6.5.1.pom.sha1
==============================================================================
--- dev/lucene/lucene-solr-6.5.1-RC2-rev010cac1946df29d3ca03e8b829ce051f92974a5e/solr/maven/org/apache/solr/solr-morphlines-cell/6.5.1/solr-morphlines-cell-6.5.1.pom.sha1 (added)
+++ dev/lucene/lucene-solr-6.5.1-RC2-rev010cac1946df29d3ca03e8b829ce051f92974a5e/solr/maven/org/apache/solr/solr-morphlines-cell/6.5.1/solr-morphlines-cell-6.5.1.pom.sha1 Thu Apr 20 13:09:49 2017
@@ -0,0 +1 @@
+6f430a8b97fdc321e3c050729c2e6c9f0a3156e0
\ No newline at end of file

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

Added: dev/lucene/lucene-solr-6.5.1-RC2-rev010cac1946df29d3ca03e8b829ce051f92974a5e/solr/maven/org/apache/solr/solr-morphlines-cell/maven-metadata.xml
==============================================================================
--- dev/lucene/lucene-solr-6.5.1-RC2-rev010cac1946df29d3ca03e8b829ce051f92974a5e/solr/maven/org/apache/solr/solr-morphlines-cell/maven-metadata.xml (added)
+++ dev/lucene/lucene-solr-6.5.1-RC2-rev010cac1946df29d3ca03e8b829ce051f92974a5e/solr/maven/org/apache/solr/solr-morphlines-cell/maven-metadata.xml Thu Apr 20 13:09:49 2017
@@ -0,0 +1,12 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<metadata>
+  <groupId>org.apache.solr</groupId>
+  <artifactId>solr-morphlines-cell</artifactId>
+  <version>6.5.1</version>
+  <versioning>
+    <versions>
+      <version>6.5.1</version>
+    </versions>
+    <lastUpdated>20170420015702</lastUpdated>
+  </versioning>
+</metadata>

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

Added: dev/lucene/lucene-solr-6.5.1-RC2-rev010cac1946df29d3ca03e8b829ce051f92974a5e/solr/maven/org/apache/solr/solr-morphlines-cell/maven-metadata.xml.md5
==============================================================================
--- dev/lucene/lucene-solr-6.5.1-RC2-rev010cac1946df29d3ca03e8b829ce051f92974a5e/solr/maven/org/apache/solr/solr-morphlines-cell/maven-metadata.xml.md5 (added)
+++ dev/lucene/lucene-solr-6.5.1-RC2-rev010cac1946df29d3ca03e8b829ce051f92974a5e/solr/maven/org/apache/solr/solr-morphlines-cell/maven-metadata.xml.md5 Thu Apr 20 13:09:49 2017
@@ -0,0 +1 @@
+6bc2a68a97a4840eaf77c93afe79f1c3
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.5.1-RC2-rev010cac1946df29d3ca03e8b829ce051f92974a5e/solr/maven/org/apache/solr/solr-morphlines-cell/maven-metadata.xml.sha1
==============================================================================
--- dev/lucene/lucene-solr-6.5.1-RC2-rev010cac1946df29d3ca03e8b829ce051f92974a5e/solr/maven/org/apache/solr/solr-morphlines-cell/maven-metadata.xml.sha1 (added)
+++ dev/lucene/lucene-solr-6.5.1-RC2-rev010cac1946df29d3ca03e8b829ce051f92974a5e/solr/maven/org/apache/solr/solr-morphlines-cell/maven-metadata.xml.sha1 Thu Apr 20 13:09:49 2017
@@ -0,0 +1 @@
+b9913feddda4537b4f22a4e2e111a8899f5c765b
\ No newline at end of file

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

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

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

Added: dev/lucene/lucene-solr-6.5.1-RC2-rev010cac1946df29d3ca03e8b829ce051f92974a5e/solr/maven/org/apache/solr/solr-morphlines-core/6.5.1/solr-morphlines-core-6.5.1-javadoc.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-6.5.1-RC2-rev010cac1946df29d3ca03e8b829ce051f92974a5e/solr/maven/org/apache/solr/solr-morphlines-core/6.5.1/solr-morphlines-core-6.5.1-javadoc.jar.asc (added)
+++ dev/lucene/lucene-solr-6.5.1-RC2-rev010cac1946df29d3ca03e8b829ce051f92974a5e/solr/maven/org/apache/solr/solr-morphlines-core/6.5.1/solr-morphlines-core-6.5.1-javadoc.jar.asc Thu Apr 20 13:09:49 2017
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Comment: GPGTools - https://gpgtools.org
+
+iQIcBAABCgAGBQJY+BV8AAoJEKM20MDuZMseXHcQAMWVFG/3ueW4ODTM/lq+3NVL
+PEkvw3vRH31qZVXcyg4NHL7oaBCCcP/dmyRZRpbTpKJgHVF4TTPGHoXxbubFEipJ
+sNAj351A22GdbA8rilr7O/YF+RoO5v9hMtNxESGWFGIKADVvI70t5IWjgUiZlwje
++1I6olaHmw2R7p+sKMWD6oYhEoVgaHyOcGcNQxs/lw7KFDB4ANlAHUMh2HVmC3WO
+IhGq9h41nLduS51o/3+ik0Sli3u54XpYt3oROwq/PNHlT0MqblnmGN04769X7BBn
+uEY6HMkeR4G2KH/PrUy7kf3xT1yBYzmWypz3fDdjRS1SE758Lb87mVuqkeWr3iR9
+90shC1McJPpeujUxYDk7Lzx3Ld+yJS+Y9H/pbFyF4i0hvuZBR968odIFPyhUe9aT
+ex21P0u53ncwT02WILG0lXD+DCpth0OG86wyVoQ3BD+JtBhNHo+1kUscunMnV/dx
+asSVl7PRO0dg5BTjV14QbEQVNdAsJy+gqiX2sNDRyiox/eEsJPBD5drpEIXcBBql
+umHu2IVH1s1bqlJaJBUVgxO9L+TIBqRzuB6N1mEHvUYk1RfAv7wLBQBLTBxq7l4j
+phafHLHPBpSTKSbzwTFcandWdkMfLefOIEz1ywddftomtKkNPgfYGGG+NpMN5I0s
+OOlJc5L5Fkg6TMjnjbTD
+=jnpx
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-6.5.1-RC2-rev010cac1946df29d3ca03e8b829ce051f92974a5e/solr/maven/org/apache/solr/solr-morphlines-core/6.5.1/solr-morphlines-core-6.5.1-javadoc.jar.md5
==============================================================================
--- dev/lucene/lucene-solr-6.5.1-RC2-rev010cac1946df29d3ca03e8b829ce051f92974a5e/solr/maven/org/apache/solr/solr-morphlines-core/6.5.1/solr-morphlines-core-6.5.1-javadoc.jar.md5 (added)
+++ dev/lucene/lucene-solr-6.5.1-RC2-rev010cac1946df29d3ca03e8b829ce051f92974a5e/solr/maven/org/apache/solr/solr-morphlines-core/6.5.1/solr-morphlines-core-6.5.1-javadoc.jar.md5 Thu Apr 20 13:09:49 2017
@@ -0,0 +1 @@
+28f42e9fb4a6ae81a1182d5f01d50fd2
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.5.1-RC2-rev010cac1946df29d3ca03e8b829ce051f92974a5e/solr/maven/org/apache/solr/solr-morphlines-core/6.5.1/solr-morphlines-core-6.5.1-javadoc.jar.sha1
==============================================================================
--- dev/lucene/lucene-solr-6.5.1-RC2-rev010cac1946df29d3ca03e8b829ce051f92974a5e/solr/maven/org/apache/solr/solr-morphlines-core/6.5.1/solr-morphlines-core-6.5.1-javadoc.jar.sha1 (added)
+++ dev/lucene/lucene-solr-6.5.1-RC2-rev010cac1946df29d3ca03e8b829ce051f92974a5e/solr/maven/org/apache/solr/solr-morphlines-core/6.5.1/solr-morphlines-core-6.5.1-javadoc.jar.sha1 Thu Apr 20 13:09:49 2017
@@ -0,0 +1 @@
+685312d4554e84708e3ce18e1531c81c49c3b1e1
\ No newline at end of file

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

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

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

Added: dev/lucene/lucene-solr-6.5.1-RC2-rev010cac1946df29d3ca03e8b829ce051f92974a5e/solr/maven/org/apache/solr/solr-morphlines-core/6.5.1/solr-morphlines-core-6.5.1-sources.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-6.5.1-RC2-rev010cac1946df29d3ca03e8b829ce051f92974a5e/solr/maven/org/apache/solr/solr-morphlines-core/6.5.1/solr-morphlines-core-6.5.1-sources.jar.asc (added)
+++ dev/lucene/lucene-solr-6.5.1-RC2-rev010cac1946df29d3ca03e8b829ce051f92974a5e/solr/maven/org/apache/solr/solr-morphlines-core/6.5.1/solr-morphlines-core-6.5.1-sources.jar.asc Thu Apr 20 13:09:49 2017
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Comment: GPGTools - https://gpgtools.org
+
+iQIcBAABCgAGBQJY+BV9AAoJEKM20MDuZMsexdYQAKOdlN2JpDo9W5QhLFWZaZcy
+kwZ/xSgSfXnr5khCq82XEnDQZrZi5t2OQPxk/HwQL6gSvGYCuJYE9kVGM4p46wHK
+XEXBhKAxWb7Wy9yh2Swba77J2TMhwo7uq+jPxsRw3R1QwubsZM46mWp7ROVIKCyx
+ysJGExYUwgUHanAdHm4YSPM82gWJ8CqkGEylxM6OHnB1X3ucclYVoWijAaEx+z4b
+A5Ntp7LHoh7+gzDJAWwbv7IB2ySljLHqY+kvF4EHiwAJXwii1vtKI2mvRS/f1zia
+Yj7BUmYtC1dHD2qQotUHgq3Xt+p/1qI5oGICZuek9j3/qnqijS2h6bWLrE+MZt8R
+/FPfDYwUCPYsxRKwSq9QeRwQGW9/Ap2K204NDwlFcBrPX4gxCUBptPwmIxN54lPF
+Aqseq0aXp+3fkSFe3jEiI5fKT+BPSUb524otMfQ5cl3Ekwpav/36B1Z9WccqdAjz
+BWcvoUWKLSp8ojMZUMAyoADohj1eu5YA+5DrYTOi5K1a7QswuVfvZFj7E/CRi/vp
+tviIPikh8ioBCkntcT4BYHasfiCgEePqw6WL+GZtbTyym91Z+5qpDxszlJugyKtO
+iK/JeDJm2y+2wPD0NQ2ReS2MeX/ZlIelikwaW8CbEFjeyUTKsRx3DRuVJGzsJA7z
+jEkeTfLyzh1Y0hHnUGcL
+=d08w
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-6.5.1-RC2-rev010cac1946df29d3ca03e8b829ce051f92974a5e/solr/maven/org/apache/solr/solr-morphlines-core/6.5.1/solr-morphlines-core-6.5.1-sources.jar.md5
==============================================================================
--- dev/lucene/lucene-solr-6.5.1-RC2-rev010cac1946df29d3ca03e8b829ce051f92974a5e/solr/maven/org/apache/solr/solr-morphlines-core/6.5.1/solr-morphlines-core-6.5.1-sources.jar.md5 (added)
+++ dev/lucene/lucene-solr-6.5.1-RC2-rev010cac1946df29d3ca03e8b829ce051f92974a5e/solr/maven/org/apache/solr/solr-morphlines-core/6.5.1/solr-morphlines-core-6.5.1-sources.jar.md5 Thu Apr 20 13:09:49 2017
@@ -0,0 +1 @@
+d634ebd03e694bb6307fba1ed8cb6d46
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.5.1-RC2-rev010cac1946df29d3ca03e8b829ce051f92974a5e/solr/maven/org/apache/solr/solr-morphlines-core/6.5.1/solr-morphlines-core-6.5.1-sources.jar.sha1
==============================================================================
--- dev/lucene/lucene-solr-6.5.1-RC2-rev010cac1946df29d3ca03e8b829ce051f92974a5e/solr/maven/org/apache/solr/solr-morphlines-core/6.5.1/solr-morphlines-core-6.5.1-sources.jar.sha1 (added)
+++ dev/lucene/lucene-solr-6.5.1-RC2-rev010cac1946df29d3ca03e8b829ce051f92974a5e/solr/maven/org/apache/solr/solr-morphlines-core/6.5.1/solr-morphlines-core-6.5.1-sources.jar.sha1 Thu Apr 20 13:09:49 2017
@@ -0,0 +1 @@
+04a4c85ce9584dafeb09cfc3171c2cba50bee5b5
\ No newline at end of file