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 16:48:12 UTC

svn commit: r14076 [17/19] - in /dev/lucene/lucene-solr-5.5.2-RC2-rev8e5d40b22a3968df065dfc078ef81cbb031f0e4a: ./ 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-RC2-rev8e5d40b22a3968df065dfc078ef81cbb031f0e4a/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-RC2-rev8e5d40b22a3968df065dfc078ef81cbb031f0e4a/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-RC2-rev8e5d40b22a3968df065dfc078ef81cbb031f0e4a/solr/maven/org/apache/solr/solr-map-reduce/5.5.2/solr-map-reduce-5.5.2.pom Tue Jun 21 16:48:09 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-RC2-rev8e5d40b22a3968df065dfc078ef81cbb031f0e4a/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-RC2-rev8e5d40b22a3968df065dfc078ef81cbb031f0e4a/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-RC2-rev8e5d40b22a3968df065dfc078ef81cbb031f0e4a/solr/maven/org/apache/solr/solr-map-reduce/5.5.2/solr-map-reduce-5.5.2.pom.asc Tue Jun 21 16:48:09 2016
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v1
+
+iQIcBAABAgAGBQJXaWF9AAoJEHGGsG4e0Tnn0QUQAIjf+a4rIZP2v8/nbhicZxYc
+ummgByMod9WzrxWF42Go2earKMQ6PQ/oCYDTTW6L4q6HYpLJC4EjJi+EbfdF8iuP
+rtAXHMIn3EZYfW0hwKwQsxWvWjhdKP8svvYWZFZiJPcaDlhKJj1n1sopRdnZ3ZSA
+p54M4ZyZ+IVPvQSLXuvQJKECdbFpGKqDc5CjrXtriiHvZ8o7H2xUppJvBUfDMxi/
+zi7EW1iEkLPQ3fQ5A3fqJIcGLvj0Hthag0vNs9Yuk4x09e79eWv0yYq+1YCnKCXx
+7F3qgl1CEd3KQysdi1FU2b0MNDHqTY/K0DwJrW/vG7Y/SJ5E5UT3htIQT0hGEg2r
+gdmGJ8W+K1o+FXlQ8u8GT9MBJcjWVWbfgDk3jfPkkDMKCXjm82l89gLCynERin66
+nU6Rc1N3RqqUNO46hxz4liJYR1kLaQCoKXSM7+61KipmXxHihRX9Yim4x1eaHNZP
+TyWBgoy3U3h8Vq1nS4E6y6Eh1Zsk4RiQZFxbv0QBPZNCFL/SZtN/v6ZA011toJMg
+ei0bS7PQ3BBq6Le7vybrTEjkJx2IOokwN3CHbeEy19OQNd5rnT4HL1ZQRAr14hom
+jAmjGEmzBWMVkC4du5k3+0v3N7kcy4ZcJrdtrQRRAEG43wnprq6IsnD2PC6J9Jca
++qnEEQjsIKlcM2vb/sSe
+=0Cmv
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-5.5.2-RC2-rev8e5d40b22a3968df065dfc078ef81cbb031f0e4a/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-RC2-rev8e5d40b22a3968df065dfc078ef81cbb031f0e4a/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-RC2-rev8e5d40b22a3968df065dfc078ef81cbb031f0e4a/solr/maven/org/apache/solr/solr-map-reduce/5.5.2/solr-map-reduce-5.5.2.pom.md5 Tue Jun 21 16:48:09 2016
@@ -0,0 +1 @@
+00e406ac3612ece517772bbbde987e73
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.5.2-RC2-rev8e5d40b22a3968df065dfc078ef81cbb031f0e4a/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-RC2-rev8e5d40b22a3968df065dfc078ef81cbb031f0e4a/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-RC2-rev8e5d40b22a3968df065dfc078ef81cbb031f0e4a/solr/maven/org/apache/solr/solr-map-reduce/5.5.2/solr-map-reduce-5.5.2.pom.sha1 Tue Jun 21 16:48:09 2016
@@ -0,0 +1 @@
+e869508020daa8a07c8b28dc7f53d947efb856d1
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.5.2-RC2-rev8e5d40b22a3968df065dfc078ef81cbb031f0e4a/solr/maven/org/apache/solr/solr-map-reduce/maven-metadata.xml
==============================================================================
--- dev/lucene/lucene-solr-5.5.2-RC2-rev8e5d40b22a3968df065dfc078ef81cbb031f0e4a/solr/maven/org/apache/solr/solr-map-reduce/maven-metadata.xml (added)
+++ dev/lucene/lucene-solr-5.5.2-RC2-rev8e5d40b22a3968df065dfc078ef81cbb031f0e4a/solr/maven/org/apache/solr/solr-map-reduce/maven-metadata.xml Tue Jun 21 16:48:09 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>20160621154636</lastUpdated>
+  </versioning>
+</metadata>

Added: dev/lucene/lucene-solr-5.5.2-RC2-rev8e5d40b22a3968df065dfc078ef81cbb031f0e4a/solr/maven/org/apache/solr/solr-map-reduce/maven-metadata.xml.md5
==============================================================================
--- dev/lucene/lucene-solr-5.5.2-RC2-rev8e5d40b22a3968df065dfc078ef81cbb031f0e4a/solr/maven/org/apache/solr/solr-map-reduce/maven-metadata.xml.md5 (added)
+++ dev/lucene/lucene-solr-5.5.2-RC2-rev8e5d40b22a3968df065dfc078ef81cbb031f0e4a/solr/maven/org/apache/solr/solr-map-reduce/maven-metadata.xml.md5 Tue Jun 21 16:48:09 2016
@@ -0,0 +1 @@
+39511bef960252e1b4c410dfbbc8889b
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.5.2-RC2-rev8e5d40b22a3968df065dfc078ef81cbb031f0e4a/solr/maven/org/apache/solr/solr-map-reduce/maven-metadata.xml.sha1
==============================================================================
--- dev/lucene/lucene-solr-5.5.2-RC2-rev8e5d40b22a3968df065dfc078ef81cbb031f0e4a/solr/maven/org/apache/solr/solr-map-reduce/maven-metadata.xml.sha1 (added)
+++ dev/lucene/lucene-solr-5.5.2-RC2-rev8e5d40b22a3968df065dfc078ef81cbb031f0e4a/solr/maven/org/apache/solr/solr-map-reduce/maven-metadata.xml.sha1 Tue Jun 21 16:48:09 2016
@@ -0,0 +1 @@
+431a8d498c72f2b8cb1fe39d7e65c53887525d5c
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.5.2-RC2-rev8e5d40b22a3968df065dfc078ef81cbb031f0e4a/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-RC2-rev8e5d40b22a3968df065dfc078ef81cbb031f0e4a/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-RC2-rev8e5d40b22a3968df065dfc078ef81cbb031f0e4a/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-RC2-rev8e5d40b22a3968df065dfc078ef81cbb031f0e4a/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-RC2-rev8e5d40b22a3968df065dfc078ef81cbb031f0e4a/solr/maven/org/apache/solr/solr-morphlines-cell/5.5.2/solr-morphlines-cell-5.5.2-javadoc.jar.asc Tue Jun 21 16:48:09 2016
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v1
+
+iQIcBAABAgAGBQJXaWF+AAoJEHGGsG4e0TnnyjoP/AwAfTG2yQrfnhvHxdQaJ0H4
++dFnbgJS3+0utHdjCp8S2PqrlbdIFq5hN17UWNlXMFa1qm51cVjUmcUsIpbx3Za1
+LM4iOldD3BAANVGvLpvvBXpH/H0mgBvd22YHeS4uIlb3DbPKq8rU9fK56o/AWNrB
+0JCii3Z09m1JGl7ZiofhKCd5mxTheC6DMKvl0kFtDyqqhgvSZgGvYOxYR9Z3JR97
+pKeX2lKP+KynIA7mD7xYCDL6tMTNjgdPjNeMoI2MlTRALqM0pGsZfRb8Wqvduizz
+m2bh5VYjxzqz4HVEx9IYso+BP/Itn9v6rkSDIkNNAIqeri4+QRQxI9iX8NhMWg59
+goYjaFRVz0l6vBGujnwuxpdeaGArhROf3f4U98ZBPjumopqEeLygtUKi3DGNqVDR
+262dxUSHUOF396wYVHNTgyGup0tFVibKzKWOkyN23WnYqTFx1Wz2hBPM4QkAXmJZ
+Wl3kSMzR9/eEk+qUGYPqNIbXiM0DZAlb46/lnLsvk9WujZ/VslNdXB2aECG+GXzr
+ea/3aZecjW8v8LEDRZbacASsfKlxppQYHs5+5ynk5MHhiNcB1cJs4M8B5Q7cg32h
+Pdmd9q8jcIGRwhefTBA4lHGoZtClbYWGKqB7kLx2GkdQzG9GT77kTqDDnhpibs//
+iSVBtxJHhqUBpOGcn/Zm
+=zigq
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-5.5.2-RC2-rev8e5d40b22a3968df065dfc078ef81cbb031f0e4a/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-RC2-rev8e5d40b22a3968df065dfc078ef81cbb031f0e4a/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-RC2-rev8e5d40b22a3968df065dfc078ef81cbb031f0e4a/solr/maven/org/apache/solr/solr-morphlines-cell/5.5.2/solr-morphlines-cell-5.5.2-javadoc.jar.md5 Tue Jun 21 16:48:09 2016
@@ -0,0 +1 @@
+9956af3d3272585e115e9596aea28a22
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.5.2-RC2-rev8e5d40b22a3968df065dfc078ef81cbb031f0e4a/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-RC2-rev8e5d40b22a3968df065dfc078ef81cbb031f0e4a/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-RC2-rev8e5d40b22a3968df065dfc078ef81cbb031f0e4a/solr/maven/org/apache/solr/solr-morphlines-cell/5.5.2/solr-morphlines-cell-5.5.2-javadoc.jar.sha1 Tue Jun 21 16:48:09 2016
@@ -0,0 +1 @@
+4f88fed7efad87a1e89f35df324215037b8b4179
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.5.2-RC2-rev8e5d40b22a3968df065dfc078ef81cbb031f0e4a/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-RC2-rev8e5d40b22a3968df065dfc078ef81cbb031f0e4a/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-RC2-rev8e5d40b22a3968df065dfc078ef81cbb031f0e4a/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-RC2-rev8e5d40b22a3968df065dfc078ef81cbb031f0e4a/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-RC2-rev8e5d40b22a3968df065dfc078ef81cbb031f0e4a/solr/maven/org/apache/solr/solr-morphlines-cell/5.5.2/solr-morphlines-cell-5.5.2-sources.jar.asc Tue Jun 21 16:48:09 2016
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v1
+
+iQIcBAABAgAGBQJXaWF+AAoJEHGGsG4e0TnnDKQQAIFtVqnzdfh7IvdPIF9Vdvy+
+uRCE/OvoRHaKH53YDBhsznOz2Kcimy537cadAXh2TyNvoPBBiQT71n96hzIz+cyF
+Fcc068ItzQLZYurTJN7GvjUrSM0LNbwckh4TyQZE2iugkqBINTgMfzZv3nc+ZpL+
+lg/iUAmDCYrYYQoW++wsDN6rJj9SesVG+5rnnyDKSNz9WrKh1knrqbRssd4TXJKh
+xTlrAI7+FyB1L2FGYOwDHoaz1GUo0NotgN9y5b773/IEaj49Q2r5EnXi4YluopgU
+1j2QCzCPW8Gz2CYJKIrIyf0N85JLHi9jMAg+paI9Y3y4LtFN+qt/dF34oNEZ6yCq
+t55731d76wULHt36RysJfXFq1pY5KoEjrm5xcKAMEpBpdIIAhYGqdouiJVWA8NsW
+RvUdyVBR859kVto1mTKMqp/9GNYXk1L2uT+lOSSBcjU45gY/8efoXSMawx5auPcb
+g4PPE4BEswsmB9PBLlp12/E6O7uoH+e+N1RZC61zS/yF6ofmqHTlK93j2iip7wog
+vlvQTfEEw1EaC8NxKJ9Z0ygwtTwkYAnLRm6u6lGHtk3PRZ/YaRdXEgESE1Ao/QVD
+m2WfFyqZFUPKvbjDfAwZrKCt69kr+QAq9zFKWSUvO0mYEh0CnuK6ZU0bx08hAqUZ
+dzzpS5EJpdcdmqWAQ4rO
+=097b
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-5.5.2-RC2-rev8e5d40b22a3968df065dfc078ef81cbb031f0e4a/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-RC2-rev8e5d40b22a3968df065dfc078ef81cbb031f0e4a/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-RC2-rev8e5d40b22a3968df065dfc078ef81cbb031f0e4a/solr/maven/org/apache/solr/solr-morphlines-cell/5.5.2/solr-morphlines-cell-5.5.2-sources.jar.md5 Tue Jun 21 16:48:09 2016
@@ -0,0 +1 @@
+ef03441248158a22d811672a37b8ef89
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.5.2-RC2-rev8e5d40b22a3968df065dfc078ef81cbb031f0e4a/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-RC2-rev8e5d40b22a3968df065dfc078ef81cbb031f0e4a/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-RC2-rev8e5d40b22a3968df065dfc078ef81cbb031f0e4a/solr/maven/org/apache/solr/solr-morphlines-cell/5.5.2/solr-morphlines-cell-5.5.2-sources.jar.sha1 Tue Jun 21 16:48:09 2016
@@ -0,0 +1 @@
+5d6917a086616c066b1e4b2348fa67a81a948cc4
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.5.2-RC2-rev8e5d40b22a3968df065dfc078ef81cbb031f0e4a/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-RC2-rev8e5d40b22a3968df065dfc078ef81cbb031f0e4a/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-RC2-rev8e5d40b22a3968df065dfc078ef81cbb031f0e4a/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-RC2-rev8e5d40b22a3968df065dfc078ef81cbb031f0e4a/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-RC2-rev8e5d40b22a3968df065dfc078ef81cbb031f0e4a/solr/maven/org/apache/solr/solr-morphlines-cell/5.5.2/solr-morphlines-cell-5.5.2.jar.asc Tue Jun 21 16:48:09 2016
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v1
+
+iQIcBAABAgAGBQJXaWF/AAoJEHGGsG4e0TnnUNoQAKOdHqhhICM/RFQnWmf5DabY
+flzEk4gaUXAJ1I9KLX+A5f3ZklFWL74qaoWZ2nQvBpVThtjbHgOhNLvyq20Jqo+j
+qtM6PBvCcrgJcxVy0pjgXIrpMPTrQP2aorZJuyqO94AyKtan25fEDnzvQtRi1FFM
+fpxiqfQFuyQyAvEGR7hN9keMZrGnHzR6YYFWpIAB7tfuxTHyTq/mh7lrAjw0iPl/
+5BMvJFoMRFz/Eu93hh3Knw2tpRfxPrw0Nql+TZANM2Vc7j7roHARX76WfZH4QOY1
+ScDNs10Y+qWIYD1PP3w++xXiVs49YIh5dT/8JrvUk80YItxrj6M0q+0mqq1691yh
+f6ZLBYsIDkM3BnHh+41+0n6pZsBgn57NKhLb8g2leFjtzwonZph7yWRaTDEl5BLg
+k4Ti0oFWF86TGqWecWWX5L4sf/AJbtIFCwq45qrmqSOYRwewoN0UwVvTHKCRacO/
+DiGMUEnMU0WsP/mznHsHXOSi8LViUn7qbfpNf+HnAHPEQZy1UUDFKdjlveBS3pKi
+tadOl+3SepwlR7O0v/2s3QyEF66cp2/U7ZEd5kE28SwVRiWz31RyXNP7HpoFWpV8
+/MKmZxQabcLQmhRcWHuYnJsB/Nlhhs1IrCFqJG8nFHr+Jiz/kRu1Ni0UbXDRUG9A
+vdv46+AvfB0tAwFCTjKR
+=qeG3
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-5.5.2-RC2-rev8e5d40b22a3968df065dfc078ef81cbb031f0e4a/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-RC2-rev8e5d40b22a3968df065dfc078ef81cbb031f0e4a/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-RC2-rev8e5d40b22a3968df065dfc078ef81cbb031f0e4a/solr/maven/org/apache/solr/solr-morphlines-cell/5.5.2/solr-morphlines-cell-5.5.2.jar.md5 Tue Jun 21 16:48:09 2016
@@ -0,0 +1 @@
+e293e4b23626f435f66216ed8a4d03ba
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.5.2-RC2-rev8e5d40b22a3968df065dfc078ef81cbb031f0e4a/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-RC2-rev8e5d40b22a3968df065dfc078ef81cbb031f0e4a/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-RC2-rev8e5d40b22a3968df065dfc078ef81cbb031f0e4a/solr/maven/org/apache/solr/solr-morphlines-cell/5.5.2/solr-morphlines-cell-5.5.2.jar.sha1 Tue Jun 21 16:48:09 2016
@@ -0,0 +1 @@
+a5c610724cf30545d95fd4afa5c863bf649d19f0
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.5.2-RC2-rev8e5d40b22a3968df065dfc078ef81cbb031f0e4a/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-RC2-rev8e5d40b22a3968df065dfc078ef81cbb031f0e4a/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-RC2-rev8e5d40b22a3968df065dfc078ef81cbb031f0e4a/solr/maven/org/apache/solr/solr-morphlines-cell/5.5.2/solr-morphlines-cell-5.5.2.pom Tue Jun 21 16:48:09 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-RC2-rev8e5d40b22a3968df065dfc078ef81cbb031f0e4a/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-RC2-rev8e5d40b22a3968df065dfc078ef81cbb031f0e4a/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-RC2-rev8e5d40b22a3968df065dfc078ef81cbb031f0e4a/solr/maven/org/apache/solr/solr-morphlines-cell/5.5.2/solr-morphlines-cell-5.5.2.pom.asc Tue Jun 21 16:48:09 2016
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v1
+
+iQIcBAABAgAGBQJXaWF/AAoJEHGGsG4e0Tnnm6cP/211UKztmSynI0BxI1CqaeQx
+bufDBJVTMvMgorVAfkC0UYq9gXXr/zo8BcDAJ1uuy+wDeSyGLuxHXARUsWq5eny3
+AUwUkJtnMdbd3eYMgyFxt7qbdhr6CHfjSNrdaEkLZWfNdoVkaiRfvIHAcNxSjncK
+QTvvX+n+FHv0nc1ERz6f4ROlr+W37CyVOUc13tFhy7b5J8lbDAEKmWzzqbhrBdcj
+pgGVOV4e5t1lukGCGl8Fmj7yZ7x8Fxx5+h7AQD9i67QirDxtTpL9C7UhQkSaap9W
+UtGh72f6lu2tRajtMLdit6meFnJSkyhMYTCFdc7OLQ/kdjO7Qbsv6rBQ7KsoECBw
+XPiR0ZqRX0MwtB+TildgQiCuk0o8XO+q5yVe0wttzm7yZkBqW2+1MKJDZkSsP26C
+/tiq5VAS+ezn2Bl6rol9Pz+2UCpAHvuIG13CiCz8ps/ubsUuaksKW4+GLVdOIbKC
+38hI3LeTjYbjLB9pKwXA/qzwIZ1q3e3YCnc4DZu31y2PciGLHjwv/ESPAks8EVAq
+GcmTJGCu09YSp4ui2TlFTHM1dLfs6cmv1WfbYESQAzmFv/pAlkUB1sud55351e3Q
+cHVQlZbaWvZBHtLO9vbSbe9Bgliqs+D7uiNWnLCZbOJFbj3kxjbRdEGlqwo0oSyq
+ZWXZV5fYOdwdWpViaeeo
+=s/WC
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-5.5.2-RC2-rev8e5d40b22a3968df065dfc078ef81cbb031f0e4a/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-RC2-rev8e5d40b22a3968df065dfc078ef81cbb031f0e4a/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-RC2-rev8e5d40b22a3968df065dfc078ef81cbb031f0e4a/solr/maven/org/apache/solr/solr-morphlines-cell/5.5.2/solr-morphlines-cell-5.5.2.pom.md5 Tue Jun 21 16:48:09 2016
@@ -0,0 +1 @@
+5269ea581079967268276d6eb80ac41e
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.5.2-RC2-rev8e5d40b22a3968df065dfc078ef81cbb031f0e4a/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-RC2-rev8e5d40b22a3968df065dfc078ef81cbb031f0e4a/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-RC2-rev8e5d40b22a3968df065dfc078ef81cbb031f0e4a/solr/maven/org/apache/solr/solr-morphlines-cell/5.5.2/solr-morphlines-cell-5.5.2.pom.sha1 Tue Jun 21 16:48:09 2016
@@ -0,0 +1 @@
+12129827e3b23ff260920812e45d94be3937c18b
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.5.2-RC2-rev8e5d40b22a3968df065dfc078ef81cbb031f0e4a/solr/maven/org/apache/solr/solr-morphlines-cell/maven-metadata.xml
==============================================================================
--- dev/lucene/lucene-solr-5.5.2-RC2-rev8e5d40b22a3968df065dfc078ef81cbb031f0e4a/solr/maven/org/apache/solr/solr-morphlines-cell/maven-metadata.xml (added)
+++ dev/lucene/lucene-solr-5.5.2-RC2-rev8e5d40b22a3968df065dfc078ef81cbb031f0e4a/solr/maven/org/apache/solr/solr-morphlines-cell/maven-metadata.xml Tue Jun 21 16:48:09 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>20160621154640</lastUpdated>
+  </versioning>
+</metadata>

Added: dev/lucene/lucene-solr-5.5.2-RC2-rev8e5d40b22a3968df065dfc078ef81cbb031f0e4a/solr/maven/org/apache/solr/solr-morphlines-cell/maven-metadata.xml.md5
==============================================================================
--- dev/lucene/lucene-solr-5.5.2-RC2-rev8e5d40b22a3968df065dfc078ef81cbb031f0e4a/solr/maven/org/apache/solr/solr-morphlines-cell/maven-metadata.xml.md5 (added)
+++ dev/lucene/lucene-solr-5.5.2-RC2-rev8e5d40b22a3968df065dfc078ef81cbb031f0e4a/solr/maven/org/apache/solr/solr-morphlines-cell/maven-metadata.xml.md5 Tue Jun 21 16:48:09 2016
@@ -0,0 +1 @@
+0316abaf22f13f1f29a4b1aabf66601c
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.5.2-RC2-rev8e5d40b22a3968df065dfc078ef81cbb031f0e4a/solr/maven/org/apache/solr/solr-morphlines-cell/maven-metadata.xml.sha1
==============================================================================
--- dev/lucene/lucene-solr-5.5.2-RC2-rev8e5d40b22a3968df065dfc078ef81cbb031f0e4a/solr/maven/org/apache/solr/solr-morphlines-cell/maven-metadata.xml.sha1 (added)
+++ dev/lucene/lucene-solr-5.5.2-RC2-rev8e5d40b22a3968df065dfc078ef81cbb031f0e4a/solr/maven/org/apache/solr/solr-morphlines-cell/maven-metadata.xml.sha1 Tue Jun 21 16:48:09 2016
@@ -0,0 +1 @@
+f9c0202ba260138e521ed4fcb7e984a7219834c9
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.5.2-RC2-rev8e5d40b22a3968df065dfc078ef81cbb031f0e4a/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-RC2-rev8e5d40b22a3968df065dfc078ef81cbb031f0e4a/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-RC2-rev8e5d40b22a3968df065dfc078ef81cbb031f0e4a/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-RC2-rev8e5d40b22a3968df065dfc078ef81cbb031f0e4a/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-RC2-rev8e5d40b22a3968df065dfc078ef81cbb031f0e4a/solr/maven/org/apache/solr/solr-morphlines-core/5.5.2/solr-morphlines-core-5.5.2-javadoc.jar.asc Tue Jun 21 16:48:09 2016
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v1
+
+iQIcBAABAgAGBQJXaWGAAAoJEHGGsG4e0TnngqMP/jFNv4fmCf5LF5n5x1jRgtGk
+p01w74aToKbSXWHKviIs7zKKzILJF22km2yF5EA5UmMr+kuEeHoDGtRNJRzrSA4k
+Gop6jkjc8V8fr81f+wDuVMLzaKiYe4NQwBybX2mc4HOVIrM0xaclvsg2MQr0N3Rl
+TDOn51U1jUu2nPKngHKcrgrzqOBcDGne0MiwSfcpU+M5U3JoWlSntAo73qL2o9O0
+UmNgvlmt8tSi55tSh1/gJKkDmNCYC16wDmvdJ7BgSa1Ps2LEOT1HfxujV4WGw26G
+PVzpaSAvpBTd0MrG0Q+tSpWGIC0WD+Ien+URpYph9TKAqPieIL+Z2Appe3H5RP3p
+NmubA6aN/pPVlHztyCbTHsa0rT1TBEj4G9ubZBW0ctxlY2qFQ+8AbIpzwBTOsDNM
+A3dT8dQqCaPFx5oIatV8XxRcjuK7UGNUz/YluWSwWFOv3cRnjINBO4jmMrb/zvza
+sccJzTV3/oiEFT/t7DTxOIoII/G47dCUAtU6IqOAo2xhzxgzmT2oYsTR4HefkPLH
+YvTj5idlbHztpAVC1Aosut7WOMG3CXZrOTimZIziSlI5QMhs3uvVskYVXook75PR
+wnNhwU+iAjrQB1N7pA8LxCI0CyeEklwIY0xNo5yOqmVvYR6aLRcQATdfmRy8WMMl
+spoAzT3TPPpZB8c7DAa5
+=8rQi
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-5.5.2-RC2-rev8e5d40b22a3968df065dfc078ef81cbb031f0e4a/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-RC2-rev8e5d40b22a3968df065dfc078ef81cbb031f0e4a/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-RC2-rev8e5d40b22a3968df065dfc078ef81cbb031f0e4a/solr/maven/org/apache/solr/solr-morphlines-core/5.5.2/solr-morphlines-core-5.5.2-javadoc.jar.md5 Tue Jun 21 16:48:09 2016
@@ -0,0 +1 @@
+d1cf8f1309b2711cf70597a14d90bda7
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.5.2-RC2-rev8e5d40b22a3968df065dfc078ef81cbb031f0e4a/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-RC2-rev8e5d40b22a3968df065dfc078ef81cbb031f0e4a/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-RC2-rev8e5d40b22a3968df065dfc078ef81cbb031f0e4a/solr/maven/org/apache/solr/solr-morphlines-core/5.5.2/solr-morphlines-core-5.5.2-javadoc.jar.sha1 Tue Jun 21 16:48:09 2016
@@ -0,0 +1 @@
+949ef251f877d15c60e67a7b856bce8257ea93ea
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.5.2-RC2-rev8e5d40b22a3968df065dfc078ef81cbb031f0e4a/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-RC2-rev8e5d40b22a3968df065dfc078ef81cbb031f0e4a/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-RC2-rev8e5d40b22a3968df065dfc078ef81cbb031f0e4a/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-RC2-rev8e5d40b22a3968df065dfc078ef81cbb031f0e4a/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-RC2-rev8e5d40b22a3968df065dfc078ef81cbb031f0e4a/solr/maven/org/apache/solr/solr-morphlines-core/5.5.2/solr-morphlines-core-5.5.2-sources.jar.asc Tue Jun 21 16:48:09 2016
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v1
+
+iQIcBAABAgAGBQJXaWGAAAoJEHGGsG4e0Tnnmp0QAKfGF64E3k7VfOBjqIqZ6qNz
+VLtyOr3MpAHnlmG5q7Ek0OrWVmL4G6WfLmKhsVNlk0aMZj28Hm2IccOXtEYGeR9J
+qoCpGqWJhUijiNWFm0eScUBSUsjowZ18j+7i+wtoZkM6gfCixZllXL4bZOesbr02
+kdcqZanfsrHiDmx/esHTeM4/El4OKkQ36zuoQAhjC7g7NYEnFXcWq1jza5KwCnl5
+D/PIwqW/jSTF8fTT0hVxrhNC3M32l6CoBk3cZlkLc4lChtAhqZf7h2i5f5AmN81m
+heDPn0FCrJiE4YLk6Uk+UkTHpLXohWhbZlqMGAqmm31U/LVzf4PJmilDORJdjLor
+Hy206+Nz+tlh8tJOm9LDNHx1Iz7AacYzOaupbA+YyKL9qMcH29G0+Iu/Q+QJh6Ig
+NdDRThyWjGZJvNemjtrOJLEIQSjLDfQpQdnKPk6cQ4+LZxUPi0rvMgo3Y9Z+EnrG
+kyPYsXS66oZLDpPds7jFDnKEh5H0mjqBAMAt6JHA/OGfHmZxE6enWF1OLdhf8sRI
+IzkfLi4L4A/mJPu82g8gvTbC5WmyHDa3DvCZi8CWGneFGXm8EtVEYDYC6gS3sT1r
+rEUxjjQFkvrEhGUhPYP61+uYG+tjXYlSLaymKn8eSfKK58nIPc/nuIW7nCjRGL5r
+X04bRjgPmrQEKnjmk7Q3
+=wysz
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-5.5.2-RC2-rev8e5d40b22a3968df065dfc078ef81cbb031f0e4a/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-RC2-rev8e5d40b22a3968df065dfc078ef81cbb031f0e4a/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-RC2-rev8e5d40b22a3968df065dfc078ef81cbb031f0e4a/solr/maven/org/apache/solr/solr-morphlines-core/5.5.2/solr-morphlines-core-5.5.2-sources.jar.md5 Tue Jun 21 16:48:09 2016
@@ -0,0 +1 @@
+4a79a50c6757e02efdfc1dc088a978f5
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.5.2-RC2-rev8e5d40b22a3968df065dfc078ef81cbb031f0e4a/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-RC2-rev8e5d40b22a3968df065dfc078ef81cbb031f0e4a/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-RC2-rev8e5d40b22a3968df065dfc078ef81cbb031f0e4a/solr/maven/org/apache/solr/solr-morphlines-core/5.5.2/solr-morphlines-core-5.5.2-sources.jar.sha1 Tue Jun 21 16:48:09 2016
@@ -0,0 +1 @@
+10f31b06b612722f98b5cd9a7c0ef5ebde70abde
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.5.2-RC2-rev8e5d40b22a3968df065dfc078ef81cbb031f0e4a/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-RC2-rev8e5d40b22a3968df065dfc078ef81cbb031f0e4a/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-RC2-rev8e5d40b22a3968df065dfc078ef81cbb031f0e4a/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-RC2-rev8e5d40b22a3968df065dfc078ef81cbb031f0e4a/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-RC2-rev8e5d40b22a3968df065dfc078ef81cbb031f0e4a/solr/maven/org/apache/solr/solr-morphlines-core/5.5.2/solr-morphlines-core-5.5.2.jar.asc Tue Jun 21 16:48:09 2016
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v1
+
+iQIcBAABAgAGBQJXaWGBAAoJEHGGsG4e0Tnn1jsQAJZrV7psQrXViO5Rht98Cb5s
+q0/gbS1TkqBYJ3/1DniXby3xb4C/5DnoAmsd50jS0Fmvk6l3KR3V0SfQjlp8aEsG
+2RJBVQUNxfPfXaetwvUT4qy+qcje8pV3Lq0LTbZhtZXzSsB3XQpnCx00fGtMEdyi
+prSPBIWtZyQBumLXVJCGDgZL8FiYOdPq3vwMTrZj3WyErB4bbIBL/pfBr8uAjtLJ
+FioTE6fOkBO9R2yQctuflGqlAm6QScuCfOrXoNeojPJcnW+h4MNRXbzo8GPwzs/U
+wzfwJjS7xqr21sjwNISQpq8NNXyn4WHOOpjwgaA+lbktPQF//nw97dTOVMZj9+rs
+wMOH2bFj33Cjq+pyYX6fNn/+wiklz8jzrmeMnbw0GiK7BkvXIYFMJkrchaJ+jvzk
+1FrVrOeWUqJ08K+gafkotUxvTtRjZ6ljtLP/ixia9Y9VN8eTK7y3/d3ryS+YSCkS
+zkSM1WIlzD2VMVyRIA885iam4eUIUXwtcEuqswYu47JpffawOhTdeeLX6AAK2oIh
+fErNMQ/CZntuxzwj6IuTggbiIsJgaJ/3bI29wLDposlBbUUwp8eXSZ0zf8AAZoSH
+gVi6vvwFJlMOMOicxxzWBtI5t14jqQvNbCGxOhuoEnEeKd6+pvWmqXgBdxtsz1sf
+uPcSPbXnq/C+2ACNr8kH
+=cwLO
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-5.5.2-RC2-rev8e5d40b22a3968df065dfc078ef81cbb031f0e4a/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-RC2-rev8e5d40b22a3968df065dfc078ef81cbb031f0e4a/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-RC2-rev8e5d40b22a3968df065dfc078ef81cbb031f0e4a/solr/maven/org/apache/solr/solr-morphlines-core/5.5.2/solr-morphlines-core-5.5.2.jar.md5 Tue Jun 21 16:48:09 2016
@@ -0,0 +1 @@
+626d72e59455571bd1332fbbbca91960
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.5.2-RC2-rev8e5d40b22a3968df065dfc078ef81cbb031f0e4a/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-RC2-rev8e5d40b22a3968df065dfc078ef81cbb031f0e4a/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-RC2-rev8e5d40b22a3968df065dfc078ef81cbb031f0e4a/solr/maven/org/apache/solr/solr-morphlines-core/5.5.2/solr-morphlines-core-5.5.2.jar.sha1 Tue Jun 21 16:48:09 2016
@@ -0,0 +1 @@
+ec2e8acfb79258d180bbc4529382a09e3c3275aa
\ No newline at end of file