You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by sa...@apache.org on 2016/06/21 12:13:53 UTC

svn commit: r14072 [17/19] - in /dev/lucene/lucene-solr-5.5.2-RC1-revcfb792be2c783fc0dfee97a779281e0ef0148006: ./ 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-5.5.2-RC1-revcfb792be2c783fc0dfee97a779281e0ef0148006/solr/maven/org/apache/solr/solr-map-reduce/5.5.2/solr-map-reduce-5.5.2.pom
==============================================================================
--- dev/lucene/lucene-solr-5.5.2-RC1-revcfb792be2c783fc0dfee97a779281e0ef0148006/solr/maven/org/apache/solr/solr-map-reduce/5.5.2/solr-map-reduce-5.5.2.pom (added)
+++ dev/lucene/lucene-solr-5.5.2-RC1-revcfb792be2c783fc0dfee97a779281e0ef0148006/solr/maven/org/apache/solr/solr-map-reduce/5.5.2/solr-map-reduce-5.5.2.pom Tue Jun 21 12:13:46 2016
@@ -0,0 +1,822 @@
+<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">
+  <!--
+    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.
+  -->
+  <modelVersion>4.0.0</modelVersion>
+  <parent>
+    <groupId>org.apache.solr</groupId>
+    <artifactId>solr-parent</artifactId>
+    <version>5.5.2</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-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</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.codahale.metrics</groupId>
+      <artifactId>metrics-core</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.codahale.metrics</groupId>
+      <artifactId>metrics-healthchecks</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.drewnoakes</groupId>
+      <artifactId>metadata-extractor</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.fasterxml.jackson.core</groupId>
+      <artifactId>jackson-core</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.fasterxml.jackson.dataformat</groupId>
+      <artifactId>jackson-dataformat-smile</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.google.guava</groupId>
+      <artifactId>guava</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.google.protobuf</groupId>
+      <artifactId>protobuf-java</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.googlecode.concurrentlinkedhashmap</groupId>
+      <artifactId>concurrentlinkedhashmap-lru</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.ibm.icu</groupId>
+      <artifactId>icu4j</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.pff</groupId>
+      <artifactId>java-libpst</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.spatial4j</groupId>
+      <artifactId>spatial4j</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>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.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.commons</groupId>
+      <artifactId>commons-compress</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.commons</groupId>
+      <artifactId>commons-exec</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.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.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.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.htrace</groupId>
+      <artifactId>htrace-core</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.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.fasterxml.jackson.core</groupId>
+      <artifactId>jackson-annotations</artifactId>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>com.fasterxml.jackson.core</groupId>
+      <artifactId>jackson-databind</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</artifactId>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>javax.inject</groupId>
+      <artifactId>javax.inject</artifactId>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.avro</groupId>
+      <artifactId>avro</artifactId>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.curator</groupId>
+      <artifactId>curator-client</artifactId>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.curator</groupId>
+      <artifactId>curator-framework</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.codehaus.jackson</groupId>
+      <artifactId>jackson-core-asl</artifactId>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.codehaus.jackson</groupId>
+      <artifactId>jackson-jaxrs</artifactId>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.codehaus.jackson</groupId>
+      <artifactId>jackson-mapper-asl</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>

Added: dev/lucene/lucene-solr-5.5.2-RC1-revcfb792be2c783fc0dfee97a779281e0ef0148006/solr/maven/org/apache/solr/solr-map-reduce/5.5.2/solr-map-reduce-5.5.2.pom.asc
==============================================================================
--- dev/lucene/lucene-solr-5.5.2-RC1-revcfb792be2c783fc0dfee97a779281e0ef0148006/solr/maven/org/apache/solr/solr-map-reduce/5.5.2/solr-map-reduce-5.5.2.pom.asc (added)
+++ dev/lucene/lucene-solr-5.5.2-RC1-revcfb792be2c783fc0dfee97a779281e0ef0148006/solr/maven/org/apache/solr/solr-map-reduce/5.5.2/solr-map-reduce-5.5.2.pom.asc Tue Jun 21 12:13:46 2016
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v1
+
+iQIcBAABAgAGBQJXaMkrAAoJEHGGsG4e0Tnn/uUP/jShENFKNZHUqmmDUzT9f3dF
+JdPshdoiNpDHx6v+Qd8CmY++Kr2StrYBGoPRj/Nqq/MVlCm4z7EE5iSqev99k4Cq
++gH25+7kNn5EzGjJpC+lX+xk5+RFijrt403DugfXWpiiVDaSb05uWxxWlA6TYw+F
+4SYBTCyqeHaLpy7nqcrL+AA3e2vbaVRTE/r74YvIcG9OIhSE0neNqLsaDvsomhmx
+PgggGF1KNhI44AWUKz66zC0zQ8y8Vonk5R8BU11SZ3UzpDGIt4AvyIe5jlXIVtlg
+XrWGifAZykEQ2Vc5LNFoQGZ6+fxzRjTtBL7BFhn88u6Ir4m/Fiwb274ROJmt+nDa
+GSXiFUDtipFnxS0EP5a9z6MKUF8V2hRpJ/aP8FbnWly5YKpYPbmIxcAtVzsyVdEI
+Cy9mZnA9H63Pl1YkzFcf9v/U7NmZuAKG8wIh887wpDXiHVoowoiN9cOqzV2wQcPf
+EBOQYHv9OCMJS3OqGNPCX2E4GrMeb01dAjy4n2VV1KN6eiQpttsihN8S617DIDG5
+byH3rrlAGgUCr0w5uXA6J3glr7OOs/v5RICIUxSIfAhKmCGIBcWZ/aRS+hER5eXs
+A5KsyjhJZRe3ZIEl9KjKwvCNwwmM3bSPl/skdMU6BQqVWdYg07/fZ3GkNuho6Svn
+Mus0CczZizPlBldJLBYG
+=5MoW
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-5.5.2-RC1-revcfb792be2c783fc0dfee97a779281e0ef0148006/solr/maven/org/apache/solr/solr-map-reduce/5.5.2/solr-map-reduce-5.5.2.pom.md5
==============================================================================
--- dev/lucene/lucene-solr-5.5.2-RC1-revcfb792be2c783fc0dfee97a779281e0ef0148006/solr/maven/org/apache/solr/solr-map-reduce/5.5.2/solr-map-reduce-5.5.2.pom.md5 (added)
+++ dev/lucene/lucene-solr-5.5.2-RC1-revcfb792be2c783fc0dfee97a779281e0ef0148006/solr/maven/org/apache/solr/solr-map-reduce/5.5.2/solr-map-reduce-5.5.2.pom.md5 Tue Jun 21 12:13:46 2016
@@ -0,0 +1 @@
+00e406ac3612ece517772bbbde987e73
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.5.2-RC1-revcfb792be2c783fc0dfee97a779281e0ef0148006/solr/maven/org/apache/solr/solr-map-reduce/5.5.2/solr-map-reduce-5.5.2.pom.sha1
==============================================================================
--- dev/lucene/lucene-solr-5.5.2-RC1-revcfb792be2c783fc0dfee97a779281e0ef0148006/solr/maven/org/apache/solr/solr-map-reduce/5.5.2/solr-map-reduce-5.5.2.pom.sha1 (added)
+++ dev/lucene/lucene-solr-5.5.2-RC1-revcfb792be2c783fc0dfee97a779281e0ef0148006/solr/maven/org/apache/solr/solr-map-reduce/5.5.2/solr-map-reduce-5.5.2.pom.sha1 Tue Jun 21 12:13:46 2016
@@ -0,0 +1 @@
+e869508020daa8a07c8b28dc7f53d947efb856d1
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.5.2-RC1-revcfb792be2c783fc0dfee97a779281e0ef0148006/solr/maven/org/apache/solr/solr-map-reduce/maven-metadata.xml
==============================================================================
--- dev/lucene/lucene-solr-5.5.2-RC1-revcfb792be2c783fc0dfee97a779281e0ef0148006/solr/maven/org/apache/solr/solr-map-reduce/maven-metadata.xml (added)
+++ dev/lucene/lucene-solr-5.5.2-RC1-revcfb792be2c783fc0dfee97a779281e0ef0148006/solr/maven/org/apache/solr/solr-map-reduce/maven-metadata.xml Tue Jun 21 12:13:46 2016
@@ -0,0 +1,12 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<metadata>
+  <groupId>org.apache.solr</groupId>
+  <artifactId>solr-map-reduce</artifactId>
+  <version>5.5.2</version>
+  <versioning>
+    <versions>
+      <version>5.5.2</version>
+    </versions>
+    <lastUpdated>20160621045639</lastUpdated>
+  </versioning>
+</metadata>

Added: dev/lucene/lucene-solr-5.5.2-RC1-revcfb792be2c783fc0dfee97a779281e0ef0148006/solr/maven/org/apache/solr/solr-map-reduce/maven-metadata.xml.md5
==============================================================================
--- dev/lucene/lucene-solr-5.5.2-RC1-revcfb792be2c783fc0dfee97a779281e0ef0148006/solr/maven/org/apache/solr/solr-map-reduce/maven-metadata.xml.md5 (added)
+++ dev/lucene/lucene-solr-5.5.2-RC1-revcfb792be2c783fc0dfee97a779281e0ef0148006/solr/maven/org/apache/solr/solr-map-reduce/maven-metadata.xml.md5 Tue Jun 21 12:13:46 2016
@@ -0,0 +1 @@
+57f694c0a68a1abb95a713624ee46fd7
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.5.2-RC1-revcfb792be2c783fc0dfee97a779281e0ef0148006/solr/maven/org/apache/solr/solr-map-reduce/maven-metadata.xml.sha1
==============================================================================
--- dev/lucene/lucene-solr-5.5.2-RC1-revcfb792be2c783fc0dfee97a779281e0ef0148006/solr/maven/org/apache/solr/solr-map-reduce/maven-metadata.xml.sha1 (added)
+++ dev/lucene/lucene-solr-5.5.2-RC1-revcfb792be2c783fc0dfee97a779281e0ef0148006/solr/maven/org/apache/solr/solr-map-reduce/maven-metadata.xml.sha1 Tue Jun 21 12:13:46 2016
@@ -0,0 +1 @@
+7fcaccd887e4b4cabbc4be92e6b273f89e34535b
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.5.2-RC1-revcfb792be2c783fc0dfee97a779281e0ef0148006/solr/maven/org/apache/solr/solr-morphlines-cell/5.5.2/solr-morphlines-cell-5.5.2-javadoc.jar
==============================================================================
Binary file - no diff available.

Propchange: dev/lucene/lucene-solr-5.5.2-RC1-revcfb792be2c783fc0dfee97a779281e0ef0148006/solr/maven/org/apache/solr/solr-morphlines-cell/5.5.2/solr-morphlines-cell-5.5.2-javadoc.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: dev/lucene/lucene-solr-5.5.2-RC1-revcfb792be2c783fc0dfee97a779281e0ef0148006/solr/maven/org/apache/solr/solr-morphlines-cell/5.5.2/solr-morphlines-cell-5.5.2-javadoc.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-5.5.2-RC1-revcfb792be2c783fc0dfee97a779281e0ef0148006/solr/maven/org/apache/solr/solr-morphlines-cell/5.5.2/solr-morphlines-cell-5.5.2-javadoc.jar.asc (added)
+++ dev/lucene/lucene-solr-5.5.2-RC1-revcfb792be2c783fc0dfee97a779281e0ef0148006/solr/maven/org/apache/solr/solr-morphlines-cell/5.5.2/solr-morphlines-cell-5.5.2-javadoc.jar.asc Tue Jun 21 12:13:46 2016
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v1
+
+iQIcBAABAgAGBQJXaMksAAoJEHGGsG4e0TnnujgP/173Fu0tVnxRp7lPRAiGqjB6
+wxL0QBRuq3cIx6AiGEh9S7YpAWXawigHMbtFIM//Ur04l+JPQYrnL4gwaNaUJmZJ
+lm2IEJaQr64TIuGMpxJ97PRFjmxrcmcJcQOBFRP6x0JYJHYgIZoXK+CZaGNqSMdC
+T5mba0RedRR/sEBgg0o9m73k2snPzyjpJkkmM5SOd+eHxsTJFPs5kfX46IjCP5ML
+1HMivqOw4hXjAwbh3bu6ivO9UKUEvvyBJvN+9ca+TeIezyQXqqNXCkmUPQKKttA5
+iKbcqe2mDRXt6iE4e5VxG0jNZE4KB3kE/JtEPrk+1aA8nBhvAl9MGqdpdnUgeM46
+kD2odyuHOGE1kCCHfq5i2oSFgEoSWEED6iFscMPjBeklO1dAw8QRDB48HW47J/fP
+uzI6I4M0wf31VTJlAjzx0Jb+kghFHaySWf2OH2PSlAQ0LhQR5XS4rPBhTKoAPGIT
+xWrZuDVb2gy9LeLXaZXzEYNJU4qg09ZdpRprBhqT6qinixRnA6pkWQFJs+XyYgfB
+S3TZmYevR+c2CaCvfWvPg7X4jKoAsB2yVbyHsv77503yXIwrlsqgpEzzkkZW9+m2
+JXTej3YpcVNzl1LHGwWZo11HwImnDoU74wcfs0WPidtKupxCKnrE8joaF0YqQLst
+S85e3FvtKRuMTZF/VmC/
+=iKsY
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-5.5.2-RC1-revcfb792be2c783fc0dfee97a779281e0ef0148006/solr/maven/org/apache/solr/solr-morphlines-cell/5.5.2/solr-morphlines-cell-5.5.2-javadoc.jar.md5
==============================================================================
--- dev/lucene/lucene-solr-5.5.2-RC1-revcfb792be2c783fc0dfee97a779281e0ef0148006/solr/maven/org/apache/solr/solr-morphlines-cell/5.5.2/solr-morphlines-cell-5.5.2-javadoc.jar.md5 (added)
+++ dev/lucene/lucene-solr-5.5.2-RC1-revcfb792be2c783fc0dfee97a779281e0ef0148006/solr/maven/org/apache/solr/solr-morphlines-cell/5.5.2/solr-morphlines-cell-5.5.2-javadoc.jar.md5 Tue Jun 21 12:13:46 2016
@@ -0,0 +1 @@
+3690f36463afe6efa2e23c691c696da0
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.5.2-RC1-revcfb792be2c783fc0dfee97a779281e0ef0148006/solr/maven/org/apache/solr/solr-morphlines-cell/5.5.2/solr-morphlines-cell-5.5.2-javadoc.jar.sha1
==============================================================================
--- dev/lucene/lucene-solr-5.5.2-RC1-revcfb792be2c783fc0dfee97a779281e0ef0148006/solr/maven/org/apache/solr/solr-morphlines-cell/5.5.2/solr-morphlines-cell-5.5.2-javadoc.jar.sha1 (added)
+++ dev/lucene/lucene-solr-5.5.2-RC1-revcfb792be2c783fc0dfee97a779281e0ef0148006/solr/maven/org/apache/solr/solr-morphlines-cell/5.5.2/solr-morphlines-cell-5.5.2-javadoc.jar.sha1 Tue Jun 21 12:13:46 2016
@@ -0,0 +1 @@
+86bf8213bbeae9468aa68dfebc54eea288da389a
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.5.2-RC1-revcfb792be2c783fc0dfee97a779281e0ef0148006/solr/maven/org/apache/solr/solr-morphlines-cell/5.5.2/solr-morphlines-cell-5.5.2-sources.jar
==============================================================================
Binary file - no diff available.

Propchange: dev/lucene/lucene-solr-5.5.2-RC1-revcfb792be2c783fc0dfee97a779281e0ef0148006/solr/maven/org/apache/solr/solr-morphlines-cell/5.5.2/solr-morphlines-cell-5.5.2-sources.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: dev/lucene/lucene-solr-5.5.2-RC1-revcfb792be2c783fc0dfee97a779281e0ef0148006/solr/maven/org/apache/solr/solr-morphlines-cell/5.5.2/solr-morphlines-cell-5.5.2-sources.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-5.5.2-RC1-revcfb792be2c783fc0dfee97a779281e0ef0148006/solr/maven/org/apache/solr/solr-morphlines-cell/5.5.2/solr-morphlines-cell-5.5.2-sources.jar.asc (added)
+++ dev/lucene/lucene-solr-5.5.2-RC1-revcfb792be2c783fc0dfee97a779281e0ef0148006/solr/maven/org/apache/solr/solr-morphlines-cell/5.5.2/solr-morphlines-cell-5.5.2-sources.jar.asc Tue Jun 21 12:13:46 2016
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v1
+
+iQIcBAABAgAGBQJXaMksAAoJEHGGsG4e0TnnT88P/1DgVG49cYqFCy/wlbmi7pYn
+W75fojy7kINGzYDBCJIBCtseKkG313q7zL2OggfNm3IVngmrmmgaU93cOAMZ7ijl
+kzXgTOQ8TpqtaIfVDdTGcZuDWx/qR6W5CPAeWJD2xA9s9GnyUqr8ktUD7s6HjVxg
+SOK6fHs8epWdAQG4s9JtyKEAKJUZo6QVVm8U+96XpNNHugMl+P8VTRQ79l/ThcC4
+4cM9oIY7wu+AKbQcMSpn6ymTDZcj7V7dX2N/leGrLFcGPCixSFyL8zTiyWgy/fCx
+3XUUTeOqNWRUrnLQNwvX1zMoaVj3L5r8HUEnsrf1TTGZjgG70fKenxhB9c30CbIT
+q6iYz5/GeeKeI9Z0X6lpIbuCVmnlOneg8iVF/CBVBE75tcUdu+UTmMRjqqxE/AdX
+Z/6UWY5KgavyG8Pd+TY229T+72JicnmAWDjI88FccnV5gOl1os6iCcbav0h0SYWc
+mHdQu1GnFUyBOEXUpJeC036eWempX0DkMXwRSXfI8fo64Wd/HHgXkJ7HkHcUUfD1
+MDyIKKtLLGtZIlzeUq920KQsofco9YzKAns2iDmlBs/12MGprdQiXl9y5WZYhb0d
+jnG/ypjUPAAC/AEl/sldg9Y9XfYM72AybZ25yShEr74A2DdL+hPc5NCFDucH4VgW
+FRfbdbYEazSFsYhEukvd
+=I//d
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-5.5.2-RC1-revcfb792be2c783fc0dfee97a779281e0ef0148006/solr/maven/org/apache/solr/solr-morphlines-cell/5.5.2/solr-morphlines-cell-5.5.2-sources.jar.md5
==============================================================================
--- dev/lucene/lucene-solr-5.5.2-RC1-revcfb792be2c783fc0dfee97a779281e0ef0148006/solr/maven/org/apache/solr/solr-morphlines-cell/5.5.2/solr-morphlines-cell-5.5.2-sources.jar.md5 (added)
+++ dev/lucene/lucene-solr-5.5.2-RC1-revcfb792be2c783fc0dfee97a779281e0ef0148006/solr/maven/org/apache/solr/solr-morphlines-cell/5.5.2/solr-morphlines-cell-5.5.2-sources.jar.md5 Tue Jun 21 12:13:46 2016
@@ -0,0 +1 @@
+c42c41391ac80c569eb16ae89b9a27f9
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.5.2-RC1-revcfb792be2c783fc0dfee97a779281e0ef0148006/solr/maven/org/apache/solr/solr-morphlines-cell/5.5.2/solr-morphlines-cell-5.5.2-sources.jar.sha1
==============================================================================
--- dev/lucene/lucene-solr-5.5.2-RC1-revcfb792be2c783fc0dfee97a779281e0ef0148006/solr/maven/org/apache/solr/solr-morphlines-cell/5.5.2/solr-morphlines-cell-5.5.2-sources.jar.sha1 (added)
+++ dev/lucene/lucene-solr-5.5.2-RC1-revcfb792be2c783fc0dfee97a779281e0ef0148006/solr/maven/org/apache/solr/solr-morphlines-cell/5.5.2/solr-morphlines-cell-5.5.2-sources.jar.sha1 Tue Jun 21 12:13:46 2016
@@ -0,0 +1 @@
+8e2b973dea24671ce87c458fec08b33fde01a3ef
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.5.2-RC1-revcfb792be2c783fc0dfee97a779281e0ef0148006/solr/maven/org/apache/solr/solr-morphlines-cell/5.5.2/solr-morphlines-cell-5.5.2.jar
==============================================================================
Binary file - no diff available.

Propchange: dev/lucene/lucene-solr-5.5.2-RC1-revcfb792be2c783fc0dfee97a779281e0ef0148006/solr/maven/org/apache/solr/solr-morphlines-cell/5.5.2/solr-morphlines-cell-5.5.2.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: dev/lucene/lucene-solr-5.5.2-RC1-revcfb792be2c783fc0dfee97a779281e0ef0148006/solr/maven/org/apache/solr/solr-morphlines-cell/5.5.2/solr-morphlines-cell-5.5.2.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-5.5.2-RC1-revcfb792be2c783fc0dfee97a779281e0ef0148006/solr/maven/org/apache/solr/solr-morphlines-cell/5.5.2/solr-morphlines-cell-5.5.2.jar.asc (added)
+++ dev/lucene/lucene-solr-5.5.2-RC1-revcfb792be2c783fc0dfee97a779281e0ef0148006/solr/maven/org/apache/solr/solr-morphlines-cell/5.5.2/solr-morphlines-cell-5.5.2.jar.asc Tue Jun 21 12:13:46 2016
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v1
+
+iQIcBAABAgAGBQJXaMktAAoJEHGGsG4e0TnnnKcQAJWiVQB8yIOvC0jZMdkPSgVd
++WagzIi8HSM1S9bXamDbUlxXVQrlUaARn6f6bzCTKgxy9E6fvVrbw3QP990ZjCYz
+wT+DaerNYxTTIyftlVzFM+ozHQ8v81jTQU8aWAXpNYoUDrqs+TPACREyh74Gopg4
+yIQMgEXVhlKSf/0w9rMViMK8eyDUkkLSMG47N2lVxJZpfJCnomTDF82UUymYs2Ws
+fkGwBBSoM54CCh6jJ0qDqGKN/ZhBreRdwjqKztYYtFZTRgHUlu4K9qWA/FPbyiRu
++Nuj4oSzEvDcXO4v0whVOOy/wIQMu1k9jEhhXr67AUwZxJ8TKs/6BJvs8QnMayhr
+wS8GtlBt3MRcPRYK1yKPmXeTDMKNIIVB3e2hCS9qLq7JLu9c1XBeEfFAn7wdLg8w
+2/j9J7v62UNrLgYu3rc83I0hk0IerNQxkx2uBtRdX0wQiRQHX/soMEEEzY58DQWF
+lG7/FuP+HQMhnuftyaGhB7Zl/CjsOo02KamTPBNv0VSLW4UxgHaVVqQUgKDfaF/M
+/qqj5oJ6ux644pK+2fHBM3bBDpZJI1VSW2upUzE2tx/s0QWnZbkFZb+Kph8AFngf
+SDBhl+MrjW8rcoYIzvEdf0cI/bNnftzpRkt+RWVtmz+owSZbLTyBTuNCOK5O1tad
+Ml+EqSa2H0ZHzzbFneHS
+=1P2+
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-5.5.2-RC1-revcfb792be2c783fc0dfee97a779281e0ef0148006/solr/maven/org/apache/solr/solr-morphlines-cell/5.5.2/solr-morphlines-cell-5.5.2.jar.md5
==============================================================================
--- dev/lucene/lucene-solr-5.5.2-RC1-revcfb792be2c783fc0dfee97a779281e0ef0148006/solr/maven/org/apache/solr/solr-morphlines-cell/5.5.2/solr-morphlines-cell-5.5.2.jar.md5 (added)
+++ dev/lucene/lucene-solr-5.5.2-RC1-revcfb792be2c783fc0dfee97a779281e0ef0148006/solr/maven/org/apache/solr/solr-morphlines-cell/5.5.2/solr-morphlines-cell-5.5.2.jar.md5 Tue Jun 21 12:13:46 2016
@@ -0,0 +1 @@
+b5b0eecb8b2db2988928e80b5ffe4a7a
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.5.2-RC1-revcfb792be2c783fc0dfee97a779281e0ef0148006/solr/maven/org/apache/solr/solr-morphlines-cell/5.5.2/solr-morphlines-cell-5.5.2.jar.sha1
==============================================================================
--- dev/lucene/lucene-solr-5.5.2-RC1-revcfb792be2c783fc0dfee97a779281e0ef0148006/solr/maven/org/apache/solr/solr-morphlines-cell/5.5.2/solr-morphlines-cell-5.5.2.jar.sha1 (added)
+++ dev/lucene/lucene-solr-5.5.2-RC1-revcfb792be2c783fc0dfee97a779281e0ef0148006/solr/maven/org/apache/solr/solr-morphlines-cell/5.5.2/solr-morphlines-cell-5.5.2.jar.sha1 Tue Jun 21 12:13:46 2016
@@ -0,0 +1 @@
+2ca5f73b6a3461ac2b323ae3602cad148309a762
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.5.2-RC1-revcfb792be2c783fc0dfee97a779281e0ef0148006/solr/maven/org/apache/solr/solr-morphlines-cell/5.5.2/solr-morphlines-cell-5.5.2.pom
==============================================================================
--- dev/lucene/lucene-solr-5.5.2-RC1-revcfb792be2c783fc0dfee97a779281e0ef0148006/solr/maven/org/apache/solr/solr-morphlines-cell/5.5.2/solr-morphlines-cell-5.5.2.pom (added)
+++ dev/lucene/lucene-solr-5.5.2-RC1-revcfb792be2c783fc0dfee97a779281e0ef0148006/solr/maven/org/apache/solr/solr-morphlines-cell/5.5.2/solr-morphlines-cell-5.5.2.pom Tue Jun 21 12:13:46 2016
@@ -0,0 +1,803 @@
+<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">
+  <!--
+    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.
+  -->
+  <modelVersion>4.0.0</modelVersion>
+  <parent>
+    <groupId>org.apache.solr</groupId>
+    <artifactId>solr-parent</artifactId>
+    <version>5.5.2</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-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</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.codahale.metrics</groupId>
+      <artifactId>metrics-core</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.codahale.metrics</groupId>
+      <artifactId>metrics-healthchecks</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.drewnoakes</groupId>
+      <artifactId>metadata-extractor</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.fasterxml.jackson.core</groupId>
+      <artifactId>jackson-core</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.fasterxml.jackson.dataformat</groupId>
+      <artifactId>jackson-dataformat-smile</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.google.guava</groupId>
+      <artifactId>guava</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.google.protobuf</groupId>
+      <artifactId>protobuf-java</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.googlecode.concurrentlinkedhashmap</groupId>
+      <artifactId>concurrentlinkedhashmap-lru</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.ibm.icu</groupId>
+      <artifactId>icu4j</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.pff</groupId>
+      <artifactId>java-libpst</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.spatial4j</groupId>
+      <artifactId>spatial4j</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>javax.servlet</groupId>
+      <artifactId>javax.servlet-api</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>jdom</groupId>
+      <artifactId>jdom</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>joda-time</groupId>
+      <artifactId>joda-time</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>log4j</groupId>
+      <artifactId>log4j</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>net.sourceforge.jmatio</groupId>
+      <artifactId>jmatio</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.antlr</groupId>
+      <artifactId>antlr4-runtime</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.commons</groupId>
+      <artifactId>commons-compress</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.commons</groupId>
+      <artifactId>commons-exec</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.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.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.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.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.htrace</groupId>
+      <artifactId>htrace-core</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.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.fasterxml.jackson.core</groupId>
+      <artifactId>jackson-annotations</artifactId>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>com.fasterxml.jackson.core</groupId>
+      <artifactId>jackson-databind</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</artifactId>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>javax.inject</groupId>
+      <artifactId>javax.inject</artifactId>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.avro</groupId>
+      <artifactId>avro</artifactId>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.curator</groupId>
+      <artifactId>curator-client</artifactId>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.curator</groupId>
+      <artifactId>curator-framework</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-core-asl</artifactId>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.codehaus.jackson</groupId>
+      <artifactId>jackson-jaxrs</artifactId>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.codehaus.jackson</groupId>
+      <artifactId>jackson-mapper-asl</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>

Added: dev/lucene/lucene-solr-5.5.2-RC1-revcfb792be2c783fc0dfee97a779281e0ef0148006/solr/maven/org/apache/solr/solr-morphlines-cell/5.5.2/solr-morphlines-cell-5.5.2.pom.asc
==============================================================================
--- dev/lucene/lucene-solr-5.5.2-RC1-revcfb792be2c783fc0dfee97a779281e0ef0148006/solr/maven/org/apache/solr/solr-morphlines-cell/5.5.2/solr-morphlines-cell-5.5.2.pom.asc (added)
+++ dev/lucene/lucene-solr-5.5.2-RC1-revcfb792be2c783fc0dfee97a779281e0ef0148006/solr/maven/org/apache/solr/solr-morphlines-cell/5.5.2/solr-morphlines-cell-5.5.2.pom.asc Tue Jun 21 12:13:46 2016
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v1
+
+iQIcBAABAgAGBQJXaMktAAoJEHGGsG4e0TnnJpIP/0IqyhUIm3uRsO1DIWh2Cc5X
+wfSLCnNvUT/0yOvllhsNZw9ssgKJww/vDsAVvppSZ5vS92pvz44LP1kaRU56CvWG
+oFxAUK8JCB7RxmWCDRnwtrZA7BEGC3GBVAPRBVNsqySC0jUdQex7bNXzgM3l+Pze
+GySDLJn934Y2EaFEBkIZjH9FXSquwj2j6JCwCpByUdcrGWHz+y7ABVvesPufbswL
+qLEIcuGomC3/e7mJWFFAiGVbzMzdjDjr+adXVo0O75K2jaM5iwh3y6KPk6zJNUwW
+QZR9J8b3rZ1nutLSek5TmW1IuJWrZYUEa3u19cLK5FtLBP2Brc9/RQhrFDwJABs8
+s1M0rTjoSOmktpq7JIZylcnoaRKmbsNSgHhTriEQ6SPHos2zcNEOvrSDtlZxCBEi
+6v7Ai1u1/68TocX8iKY6XWIULPai4hy/SU8ZBNrSLwdSxkxP5HwWdT3luqCjqbkG
+rfTy/VOHL/6X7x1kaHTI6uehFQUoa+cC2YMPa92IeiPTuSIPZ8M1KUB5wiU223Lm
+v1bJJNW5AMY/+jNvKjtMO26Kb7KAfCVAOJllttdm5pFKckIXnbwaIkSb/IcpK9O/
+aH3MB/Bbn2tIVWhYuThGY8Cr6Z9RezUz0ystFDruZjUjO4QJ+Ph/bnGkw05RvPyT
+rioDtf1xBVZekzHIXGKd
+=JUpm
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-5.5.2-RC1-revcfb792be2c783fc0dfee97a779281e0ef0148006/solr/maven/org/apache/solr/solr-morphlines-cell/5.5.2/solr-morphlines-cell-5.5.2.pom.md5
==============================================================================
--- dev/lucene/lucene-solr-5.5.2-RC1-revcfb792be2c783fc0dfee97a779281e0ef0148006/solr/maven/org/apache/solr/solr-morphlines-cell/5.5.2/solr-morphlines-cell-5.5.2.pom.md5 (added)
+++ dev/lucene/lucene-solr-5.5.2-RC1-revcfb792be2c783fc0dfee97a779281e0ef0148006/solr/maven/org/apache/solr/solr-morphlines-cell/5.5.2/solr-morphlines-cell-5.5.2.pom.md5 Tue Jun 21 12:13:46 2016
@@ -0,0 +1 @@
+5269ea581079967268276d6eb80ac41e
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.5.2-RC1-revcfb792be2c783fc0dfee97a779281e0ef0148006/solr/maven/org/apache/solr/solr-morphlines-cell/5.5.2/solr-morphlines-cell-5.5.2.pom.sha1
==============================================================================
--- dev/lucene/lucene-solr-5.5.2-RC1-revcfb792be2c783fc0dfee97a779281e0ef0148006/solr/maven/org/apache/solr/solr-morphlines-cell/5.5.2/solr-morphlines-cell-5.5.2.pom.sha1 (added)
+++ dev/lucene/lucene-solr-5.5.2-RC1-revcfb792be2c783fc0dfee97a779281e0ef0148006/solr/maven/org/apache/solr/solr-morphlines-cell/5.5.2/solr-morphlines-cell-5.5.2.pom.sha1 Tue Jun 21 12:13:46 2016
@@ -0,0 +1 @@
+12129827e3b23ff260920812e45d94be3937c18b
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.5.2-RC1-revcfb792be2c783fc0dfee97a779281e0ef0148006/solr/maven/org/apache/solr/solr-morphlines-cell/maven-metadata.xml
==============================================================================
--- dev/lucene/lucene-solr-5.5.2-RC1-revcfb792be2c783fc0dfee97a779281e0ef0148006/solr/maven/org/apache/solr/solr-morphlines-cell/maven-metadata.xml (added)
+++ dev/lucene/lucene-solr-5.5.2-RC1-revcfb792be2c783fc0dfee97a779281e0ef0148006/solr/maven/org/apache/solr/solr-morphlines-cell/maven-metadata.xml Tue Jun 21 12:13:46 2016
@@ -0,0 +1,12 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<metadata>
+  <groupId>org.apache.solr</groupId>
+  <artifactId>solr-morphlines-cell</artifactId>
+  <version>5.5.2</version>
+  <versioning>
+    <versions>
+      <version>5.5.2</version>
+    </versions>
+    <lastUpdated>20160621045644</lastUpdated>
+  </versioning>
+</metadata>

Added: dev/lucene/lucene-solr-5.5.2-RC1-revcfb792be2c783fc0dfee97a779281e0ef0148006/solr/maven/org/apache/solr/solr-morphlines-cell/maven-metadata.xml.md5
==============================================================================
--- dev/lucene/lucene-solr-5.5.2-RC1-revcfb792be2c783fc0dfee97a779281e0ef0148006/solr/maven/org/apache/solr/solr-morphlines-cell/maven-metadata.xml.md5 (added)
+++ dev/lucene/lucene-solr-5.5.2-RC1-revcfb792be2c783fc0dfee97a779281e0ef0148006/solr/maven/org/apache/solr/solr-morphlines-cell/maven-metadata.xml.md5 Tue Jun 21 12:13:46 2016
@@ -0,0 +1 @@
+a72017114850e0be241dc39ec1b3590b
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.5.2-RC1-revcfb792be2c783fc0dfee97a779281e0ef0148006/solr/maven/org/apache/solr/solr-morphlines-cell/maven-metadata.xml.sha1
==============================================================================
--- dev/lucene/lucene-solr-5.5.2-RC1-revcfb792be2c783fc0dfee97a779281e0ef0148006/solr/maven/org/apache/solr/solr-morphlines-cell/maven-metadata.xml.sha1 (added)
+++ dev/lucene/lucene-solr-5.5.2-RC1-revcfb792be2c783fc0dfee97a779281e0ef0148006/solr/maven/org/apache/solr/solr-morphlines-cell/maven-metadata.xml.sha1 Tue Jun 21 12:13:46 2016
@@ -0,0 +1 @@
+056997685728b14e84ec5a784d72a6bba4ebf588
\ No newline at end of file

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

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

Added: dev/lucene/lucene-solr-5.5.2-RC1-revcfb792be2c783fc0dfee97a779281e0ef0148006/solr/maven/org/apache/solr/solr-morphlines-core/5.5.2/solr-morphlines-core-5.5.2-javadoc.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-5.5.2-RC1-revcfb792be2c783fc0dfee97a779281e0ef0148006/solr/maven/org/apache/solr/solr-morphlines-core/5.5.2/solr-morphlines-core-5.5.2-javadoc.jar.asc (added)
+++ dev/lucene/lucene-solr-5.5.2-RC1-revcfb792be2c783fc0dfee97a779281e0ef0148006/solr/maven/org/apache/solr/solr-morphlines-core/5.5.2/solr-morphlines-core-5.5.2-javadoc.jar.asc Tue Jun 21 12:13:46 2016
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v1
+
+iQIcBAABAgAGBQJXaMkuAAoJEHGGsG4e0TnnqdcP/07fN1aTfQKNOYARHJRAUIqL
+LyLUxdE7qODkXgb6GI5BTXAefT52kvdJBGJE4g3B8aWtuZbWZs3KqH8bKZ0WsCwC
+9gbKovZpWldcHf90ejTeQuQV5lCNQG1Ums6ArgWBv2okEvrMH8WVlepqqH8FcMIG
+WJNbE+T9aO0954g2HUvuCfO6krkGTthYm+N6ne6abn0AhrUBA/4Yf21J0jD7YlDm
+YaVrKDTuNP6kXHkyrgcg2KGj3Xcl7Fab+mZDYJFRmb3KNnxtDuwmRxOtKPGe1HSR
+89MYKQ7/8qPDzI7d9fgYxjaYCWWjEgDBaySfezOAEi+pF8YvqSvSwry50oQT/vYY
+77oPofn7si8ZHF0nerGtldrCX9TAnIi+zNEl7GRWVQ5XPLo0vOwRFUP2NPy/tLBr
+0CM50eLLm7gPIfeegQXNTgRULiBM92f23qVTNPuzZdvnst69pPyoY98UPbAJ9gQi
+IUJzI4gjsUBSGfHO9VXsrGe9vGkoL4cSmpAsGIp8HBgx3r0B8yxFIHF1F63wimmN
+p1aC4JIuWT1fj4HvKfvcvtTqt32I38khQSY3CkDT8ya8nZoGJwFHoskfu9EuSGv5
+bBLBDeJR9jF/h/C0SvvhJ0AA8NPU31eAZvzQSn0HdDt1ncgKywXiHx4LAdNQnFE8
+r8CQNTQoeYp8ztHBpsxl
+=nrZe
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-5.5.2-RC1-revcfb792be2c783fc0dfee97a779281e0ef0148006/solr/maven/org/apache/solr/solr-morphlines-core/5.5.2/solr-morphlines-core-5.5.2-javadoc.jar.md5
==============================================================================
--- dev/lucene/lucene-solr-5.5.2-RC1-revcfb792be2c783fc0dfee97a779281e0ef0148006/solr/maven/org/apache/solr/solr-morphlines-core/5.5.2/solr-morphlines-core-5.5.2-javadoc.jar.md5 (added)
+++ dev/lucene/lucene-solr-5.5.2-RC1-revcfb792be2c783fc0dfee97a779281e0ef0148006/solr/maven/org/apache/solr/solr-morphlines-core/5.5.2/solr-morphlines-core-5.5.2-javadoc.jar.md5 Tue Jun 21 12:13:46 2016
@@ -0,0 +1 @@
+ae84f1d369276ff4db21e46ba98bce01
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.5.2-RC1-revcfb792be2c783fc0dfee97a779281e0ef0148006/solr/maven/org/apache/solr/solr-morphlines-core/5.5.2/solr-morphlines-core-5.5.2-javadoc.jar.sha1
==============================================================================
--- dev/lucene/lucene-solr-5.5.2-RC1-revcfb792be2c783fc0dfee97a779281e0ef0148006/solr/maven/org/apache/solr/solr-morphlines-core/5.5.2/solr-morphlines-core-5.5.2-javadoc.jar.sha1 (added)
+++ dev/lucene/lucene-solr-5.5.2-RC1-revcfb792be2c783fc0dfee97a779281e0ef0148006/solr/maven/org/apache/solr/solr-morphlines-core/5.5.2/solr-morphlines-core-5.5.2-javadoc.jar.sha1 Tue Jun 21 12:13:46 2016
@@ -0,0 +1 @@
+c5d317fb47081783f438e639670889e3caa715e1
\ No newline at end of file

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

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

Added: dev/lucene/lucene-solr-5.5.2-RC1-revcfb792be2c783fc0dfee97a779281e0ef0148006/solr/maven/org/apache/solr/solr-morphlines-core/5.5.2/solr-morphlines-core-5.5.2-sources.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-5.5.2-RC1-revcfb792be2c783fc0dfee97a779281e0ef0148006/solr/maven/org/apache/solr/solr-morphlines-core/5.5.2/solr-morphlines-core-5.5.2-sources.jar.asc (added)
+++ dev/lucene/lucene-solr-5.5.2-RC1-revcfb792be2c783fc0dfee97a779281e0ef0148006/solr/maven/org/apache/solr/solr-morphlines-core/5.5.2/solr-morphlines-core-5.5.2-sources.jar.asc Tue Jun 21 12:13:46 2016
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v1
+
+iQIcBAABAgAGBQJXaMkuAAoJEHGGsG4e0Tnn2kYP/A136xKoo/1+TwpmC3dc4kp7
+jCpxjz/eRrYTQonQSOQTHNMblSWBYzly4iiFOFd2Wz6IA5zYB+InZ4dTDlvmrKAL
+HIAMcFxNsy3dlyR9+oxTRM5TRaNArSxLrze625pTQTzHtZuG6vc6P8vAw+K/P973
+o1lCLz/A65BgKKplWP5EcCraxuESSvAtpDWZL5ejoWjxPL/sdbOhpPdFJdrTrcOI
+Am96GRuEoJv85x4VGe5AIItb+wuyYSBA1XuUAQRJ18Nwoh69/+4yecQfYW5G3Vmq
+da1kTwWQ46tImnPHoiNQPkZBUud8vwTuL6rvB19DGN9CF5tZpDgGcJNBSmAj3zGO
+5mEZ7voer5MAU+Fpwps6uLX1xNsNT3VX3giXRrgaqMElcXR96JnJpKnX3DWj+4Ms
+vb1Tto2416Zs60RCFst+Q3TlfpFx3/9pvsmYWonKBxGT5Y0YCDa8OehEV217wTqt
++tWjpQh1vm7GiYrTx0e//pDhBZeemQSKDHwONmrDgKkKcr5beK0LqR6DlF1z0vPc
+KmmrPsbb6XIYvB6W85YLkkLtWig6CtLBueIA7eeKaYy36rsRHMvQkQrZY0A25ZJ7
+HtU5yfCvGx8Rp9kEJZ1G/GkYWmwMSO3Yd8SBX8NzJnXW0vZfESXupmEjG2CW1Bwx
+s6134CQ0P4Y9eEG2SIFZ
+=mMwX
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-5.5.2-RC1-revcfb792be2c783fc0dfee97a779281e0ef0148006/solr/maven/org/apache/solr/solr-morphlines-core/5.5.2/solr-morphlines-core-5.5.2-sources.jar.md5
==============================================================================
--- dev/lucene/lucene-solr-5.5.2-RC1-revcfb792be2c783fc0dfee97a779281e0ef0148006/solr/maven/org/apache/solr/solr-morphlines-core/5.5.2/solr-morphlines-core-5.5.2-sources.jar.md5 (added)
+++ dev/lucene/lucene-solr-5.5.2-RC1-revcfb792be2c783fc0dfee97a779281e0ef0148006/solr/maven/org/apache/solr/solr-morphlines-core/5.5.2/solr-morphlines-core-5.5.2-sources.jar.md5 Tue Jun 21 12:13:46 2016
@@ -0,0 +1 @@
+5fb920dccdad4200a25fea417a17188f
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.5.2-RC1-revcfb792be2c783fc0dfee97a779281e0ef0148006/solr/maven/org/apache/solr/solr-morphlines-core/5.5.2/solr-morphlines-core-5.5.2-sources.jar.sha1
==============================================================================
--- dev/lucene/lucene-solr-5.5.2-RC1-revcfb792be2c783fc0dfee97a779281e0ef0148006/solr/maven/org/apache/solr/solr-morphlines-core/5.5.2/solr-morphlines-core-5.5.2-sources.jar.sha1 (added)
+++ dev/lucene/lucene-solr-5.5.2-RC1-revcfb792be2c783fc0dfee97a779281e0ef0148006/solr/maven/org/apache/solr/solr-morphlines-core/5.5.2/solr-morphlines-core-5.5.2-sources.jar.sha1 Tue Jun 21 12:13:46 2016
@@ -0,0 +1 @@
+1d3fc2f66c0c2f889c2d7c0a0138d0a8be06506c
\ No newline at end of file

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

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

Added: dev/lucene/lucene-solr-5.5.2-RC1-revcfb792be2c783fc0dfee97a779281e0ef0148006/solr/maven/org/apache/solr/solr-morphlines-core/5.5.2/solr-morphlines-core-5.5.2.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-5.5.2-RC1-revcfb792be2c783fc0dfee97a779281e0ef0148006/solr/maven/org/apache/solr/solr-morphlines-core/5.5.2/solr-morphlines-core-5.5.2.jar.asc (added)
+++ dev/lucene/lucene-solr-5.5.2-RC1-revcfb792be2c783fc0dfee97a779281e0ef0148006/solr/maven/org/apache/solr/solr-morphlines-core/5.5.2/solr-morphlines-core-5.5.2.jar.asc Tue Jun 21 12:13:46 2016
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v1
+
+iQIcBAABAgAGBQJXaMkvAAoJEHGGsG4e0TnniGIP/j7C7kr2lwssqwEDBfDd9XZ7
+99oKdS87PRWt6bTWPC/e8kUwVUJkH8YtscwtxvDGnlDV8V9ZWmCbwGzoqwhjgO4M
+dOJRBm4xmkXSFG5kENwTT74UuBn/vgyhxJ/OT54mjprihfG/KPYor2lGSmG+/xUl
+6wpwkVsIRJIrV8XdbTXA+om0PsYqaP/c/J91KPwfm94y0lOnfpV+Q77Vc66uzuBb
+qfOXfDg86Tb90j2gsJ7D8VokGS2sC2GPo4r88t+qvQg5Y7Za48UvjbL1xFmjlDvO
+gS8LXxtceY2B1OTtK4lgqewzb2ISpJlOjU0XfjSIhS3IhuXMNDMhdyXIX35wjoHj
+gX8bz8MZHoXb01SQ1JkQTftZmke/oqsNLtgm5m9YiBuAEETfflNfVCdSOpfHhDJC
+gBKKkovNOUaos7EwjdxETq4Ix15jimmAlfJoUJwJxvLJe+YJsXfsutQxSy9N9evz
+QwEIA/sSNibd+i9sKzHidyRttycaMKhSH+HMjaHc0Wfccjb0MnP6zG1fB27NUtVN
+BFBaXOQMQth62ybXtpbLg5qU6VUqI5QrwWHoq6Wvsd1rSvZn+tT8KXhkIljT0fF7
+eR6nb604OuJq3WtaEUK2XDx9p1+8Wx9H0LU/n0UTYBSrIRqq+z9cE6cabg0XZNLF
+EPKt6pnvOojyLKjaPKHf
+=rvU/
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-5.5.2-RC1-revcfb792be2c783fc0dfee97a779281e0ef0148006/solr/maven/org/apache/solr/solr-morphlines-core/5.5.2/solr-morphlines-core-5.5.2.jar.md5
==============================================================================
--- dev/lucene/lucene-solr-5.5.2-RC1-revcfb792be2c783fc0dfee97a779281e0ef0148006/solr/maven/org/apache/solr/solr-morphlines-core/5.5.2/solr-morphlines-core-5.5.2.jar.md5 (added)
+++ dev/lucene/lucene-solr-5.5.2-RC1-revcfb792be2c783fc0dfee97a779281e0ef0148006/solr/maven/org/apache/solr/solr-morphlines-core/5.5.2/solr-morphlines-core-5.5.2.jar.md5 Tue Jun 21 12:13:46 2016
@@ -0,0 +1 @@
+25dea2ae585cdc21bf511118a80ffa69
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.5.2-RC1-revcfb792be2c783fc0dfee97a779281e0ef0148006/solr/maven/org/apache/solr/solr-morphlines-core/5.5.2/solr-morphlines-core-5.5.2.jar.sha1
==============================================================================
--- dev/lucene/lucene-solr-5.5.2-RC1-revcfb792be2c783fc0dfee97a779281e0ef0148006/solr/maven/org/apache/solr/solr-morphlines-core/5.5.2/solr-morphlines-core-5.5.2.jar.sha1 (added)
+++ dev/lucene/lucene-solr-5.5.2-RC1-revcfb792be2c783fc0dfee97a779281e0ef0148006/solr/maven/org/apache/solr/solr-morphlines-core/5.5.2/solr-morphlines-core-5.5.2.jar.sha1 Tue Jun 21 12:13:46 2016
@@ -0,0 +1 @@
+a5e515d5d9a284b1e322b6d579e7037956a5f6a5
\ No newline at end of file