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

svn commit: r8568 [20/21] - in /dev/lucene/lucene-solr-5.1.0-RC2-rev1672403: ./ lucene/ lucene/changes/ lucene/maven/ lucene/maven/org/ lucene/maven/org/apache/ lucene/maven/org/apache/lucene/ lucene/maven/org/apache/lucene/lucene-analyzers-common/ luc...

Added: dev/lucene/lucene-solr-5.1.0-RC2-rev1672403/solr/maven/org/apache/solr/solr-morphlines-core/5.1.0/solr-morphlines-core-5.1.0.pom
==============================================================================
--- dev/lucene/lucene-solr-5.1.0-RC2-rev1672403/solr/maven/org/apache/solr/solr-morphlines-core/5.1.0/solr-morphlines-core-5.1.0.pom (added)
+++ dev/lucene/lucene-solr-5.1.0-RC2-rev1672403/solr/maven/org/apache/solr/solr-morphlines-core/5.1.0/solr-morphlines-core-5.1.0.pom Thu Apr  9 17:22:06 2015
@@ -0,0 +1,760 @@
+<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.1.0</version>
+    <relativePath>../../pom.xml</relativePath>
+  </parent>
+  <groupId>org.apache.solr</groupId>
+  <artifactId>solr-morphlines-core</artifactId>
+  <packaging>jar</packaging>
+  <name>Apache Solr Morphlines Core</name>
+  <description>Apache Solr - Morphlines Core</description>
+  <properties>
+    <module-directory>solr/contrib/morphlines-core</module-directory>
+    <relative-top-level>../../../..</relative-top-level>
+    <module-path>${relative-top-level}/${module-directory}</module-path>
+  </properties>
+  <scm>
+    <connection>scm:svn:${vc-anonymous-base-url}/${module-directory}</connection>
+    <developerConnection>scm:svn:${vc-dev-base-url}/${module-directory}</developerConnection>
+    <url>${vc-browse-base-url}/${module-directory}</url>
+  </scm>
+  <dependencies>
+    <dependency>
+      <!-- lucene-test-framework dependency must be declared before lucene-core -->
+      <!-- This dependency cannot be put into solr-parent, because local        -->
+      <!-- dependencies are always ordered before inherited dependencies.       -->
+      <groupId>org.apache.lucene</groupId>
+      <artifactId>lucene-test-framework</artifactId>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.solr</groupId>
+      <artifactId>solr-test-framework</artifactId>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.lucene</groupId>
+      <artifactId>lucene-analyzers-common</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.lucene</groupId>
+      <artifactId>lucene-analyzers-kuromoji</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.lucene</groupId>
+      <artifactId>lucene-analyzers-phonetic</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.lucene</groupId>
+      <artifactId>lucene-backward-codecs</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.lucene</groupId>
+      <artifactId>lucene-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-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-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.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-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>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>antlr-runtime</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.commons</groupId>
+      <artifactId>commons-compress</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-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-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.eclipse.jetty.orbit</groupId>
+      <artifactId>javax.servlet</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.noggit</groupId>
+      <artifactId>noggit</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.ow2.asm</groupId>
+      <artifactId>asm</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.ow2.asm</groupId>
+      <artifactId>asm-commons</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.restlet.jee</groupId>
+      <artifactId>org.restlet</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.restlet.jee</groupId>
+      <artifactId>org.restlet.ext.servlet</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.slf4j</groupId>
+      <artifactId>jul-to-slf4j</artifactId>
+      <optional>true</optional>
+    </dependency>
+    <dependency>
+      <groupId>org.slf4j</groupId>
+      <artifactId>slf4j-api</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.slf4j</groupId>
+      <artifactId>slf4j-log4j12</artifactId>
+      <optional>true</optional>
+    </dependency>
+    <dependency>
+      <groupId>org.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-core</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>commons-collections</groupId>
+      <artifactId>commons-collections</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.hadoop</groupId>
+      <artifactId>hadoop-common</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-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.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.slf4j</groupId>
+      <artifactId>jcl-over-slf4j</artifactId>
+      <scope>test</scope>
+      <optional>true</optional>
+    </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>
+        <directory>${top-level}/dev-tools/maven/solr</directory>
+        <includes>
+          <include>maven.testlogging.properties</include>
+        </includes>
+      </testResource>
+    </testResources>
+    <plugins>
+      <plugin>
+        <groupId>de.thetaphi</groupId>
+        <artifactId>forbiddenapis</artifactId>
+        <executions>
+          <execution>
+            <id>test-check-forbidden-servlet-api</id>
+            <configuration>
+              <signaturesFiles>
+                <signaturesFile>${top-level}/lucene/tools/forbiddenApis/servlet-api.txt</signaturesFile>
+              </signaturesFiles>
+            </configuration>
+            <goals>
+              <goal>testCheck</goal>
+            </goals>
+          </execution>
+        </executions>
+      </plugin>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-jar-plugin</artifactId>
+        <executions>
+          <execution>
+            <goals>
+              <goal>test-jar</goal>
+            </goals>
+          </execution>
+        </executions>
+      </plugin>
+    </plugins>
+  </build>
+</project>

Propchange: dev/lucene/lucene-solr-5.1.0-RC2-rev1672403/solr/maven/org/apache/solr/solr-morphlines-core/5.1.0/solr-morphlines-core-5.1.0.pom
------------------------------------------------------------------------------
    svn:eol-style = native

Added: dev/lucene/lucene-solr-5.1.0-RC2-rev1672403/solr/maven/org/apache/solr/solr-morphlines-core/5.1.0/solr-morphlines-core-5.1.0.pom.asc
==============================================================================
--- dev/lucene/lucene-solr-5.1.0-RC2-rev1672403/solr/maven/org/apache/solr/solr-morphlines-core/5.1.0/solr-morphlines-core-5.1.0.pom.asc (added)
+++ dev/lucene/lucene-solr-5.1.0-RC2-rev1672403/solr/maven/org/apache/solr/solr-morphlines-core/5.1.0/solr-morphlines-core-5.1.0.pom.asc Thu Apr  9 17:22:06 2015
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Comment: GPGTools - https://gpgtools.org
+
+iQIcBAABCgAGBQJVJqueAAoJEBQ1S0L27UT8YcsP/0CIiGUix7nuII0ti0mXbYsm
+Qs92BJkjNTDPGqObAv+XbLXqr3U3N23p8AO05PkmROCrGt8/pg2c/5Rcyyq3kPTY
+octDDdBHpW5ZRsJ7CKM7bT+u2ac3LZMRBvUcGVkellWWoWAuAOF18dSuhnRYOkW3
+6kEcWxxn1ts/U0gKlXt2KI9g1pznJm2PwN1eSZeruGFiLBy9xme3sNNN2zxg5t8a
++4m0BNW+78x/aCEqlK6el4sW7FeutrOmQRyoV/ynWI1yJUhMWbFRz5UTVW1Y+SqV
+iW+9XL3Spe4RpMk9Vw7FcjH64Jm+NFaE8VaAeckCLtE/9FMOf6PwW/U4pGXSKAVx
+kemdnJlzDD90y+VwRezV7miyuQBY92SI/SeZZPSqYWw8XsvBgroHSUmWMUBwnGY+
++00wU9URFlV39XbNG4t+YFvHuL/RDuic8pGiXzbZw60LxZwFccNXzy76loJDKd6q
+58zcIE8O81rxTEpvm/W2QNt4vohBX7jcoO9+yUr7nXn4heZBRqXrQA2JR4+1aGoF
++9kiQA8FbQ4NRD2K76NHjXx08E62U/VwXjxiNwf4/mTe4DBsmoR6VMwkQS95O5AO
+CIavcc8V8/isbbEqRLrerc/XSmdNXi8c/1eYm7ziI5bNyrdwlLyZApaKI0/9sluj
+rG6IA9DiAKD0O8uqss+E
+=l9Fa
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-5.1.0-RC2-rev1672403/solr/maven/org/apache/solr/solr-morphlines-core/5.1.0/solr-morphlines-core-5.1.0.pom.md5
==============================================================================
--- dev/lucene/lucene-solr-5.1.0-RC2-rev1672403/solr/maven/org/apache/solr/solr-morphlines-core/5.1.0/solr-morphlines-core-5.1.0.pom.md5 (added)
+++ dev/lucene/lucene-solr-5.1.0-RC2-rev1672403/solr/maven/org/apache/solr/solr-morphlines-core/5.1.0/solr-morphlines-core-5.1.0.pom.md5 Thu Apr  9 17:22:06 2015
@@ -0,0 +1 @@
+32ea6b6a7a494440ed05d13237b80b89
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.1.0-RC2-rev1672403/solr/maven/org/apache/solr/solr-morphlines-core/5.1.0/solr-morphlines-core-5.1.0.pom.sha1
==============================================================================
--- dev/lucene/lucene-solr-5.1.0-RC2-rev1672403/solr/maven/org/apache/solr/solr-morphlines-core/5.1.0/solr-morphlines-core-5.1.0.pom.sha1 (added)
+++ dev/lucene/lucene-solr-5.1.0-RC2-rev1672403/solr/maven/org/apache/solr/solr-morphlines-core/5.1.0/solr-morphlines-core-5.1.0.pom.sha1 Thu Apr  9 17:22:06 2015
@@ -0,0 +1 @@
+c23b18ec018be529fbd92cdaf8791528af8752cc
\ No newline at end of file

Propchange: dev/lucene/lucene-solr-5.1.0-RC2-rev1672403/solr/maven/org/apache/solr/solr-morphlines-core/5.1.0/solr-morphlines-core-5.1.0.pom.sha1
------------------------------------------------------------------------------
    svn:eol-style = native

Added: dev/lucene/lucene-solr-5.1.0-RC2-rev1672403/solr/maven/org/apache/solr/solr-morphlines-core/maven-metadata.xml
==============================================================================
--- dev/lucene/lucene-solr-5.1.0-RC2-rev1672403/solr/maven/org/apache/solr/solr-morphlines-core/maven-metadata.xml (added)
+++ dev/lucene/lucene-solr-5.1.0-RC2-rev1672403/solr/maven/org/apache/solr/solr-morphlines-core/maven-metadata.xml Thu Apr  9 17:22:06 2015
@@ -0,0 +1,12 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<metadata>
+  <groupId>org.apache.solr</groupId>
+  <artifactId>solr-morphlines-core</artifactId>
+  <version>5.1.0</version>
+  <versioning>
+    <versions>
+      <version>5.1.0</version>
+    </versions>
+    <lastUpdated>20150409164033</lastUpdated>
+  </versioning>
+</metadata>

Propchange: dev/lucene/lucene-solr-5.1.0-RC2-rev1672403/solr/maven/org/apache/solr/solr-morphlines-core/maven-metadata.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Added: dev/lucene/lucene-solr-5.1.0-RC2-rev1672403/solr/maven/org/apache/solr/solr-morphlines-core/maven-metadata.xml.md5
==============================================================================
--- dev/lucene/lucene-solr-5.1.0-RC2-rev1672403/solr/maven/org/apache/solr/solr-morphlines-core/maven-metadata.xml.md5 (added)
+++ dev/lucene/lucene-solr-5.1.0-RC2-rev1672403/solr/maven/org/apache/solr/solr-morphlines-core/maven-metadata.xml.md5 Thu Apr  9 17:22:06 2015
@@ -0,0 +1 @@
+1221a6ddf9b99209e2a49ccc8fb3af96
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.1.0-RC2-rev1672403/solr/maven/org/apache/solr/solr-morphlines-core/maven-metadata.xml.sha1
==============================================================================
--- dev/lucene/lucene-solr-5.1.0-RC2-rev1672403/solr/maven/org/apache/solr/solr-morphlines-core/maven-metadata.xml.sha1 (added)
+++ dev/lucene/lucene-solr-5.1.0-RC2-rev1672403/solr/maven/org/apache/solr/solr-morphlines-core/maven-metadata.xml.sha1 Thu Apr  9 17:22:06 2015
@@ -0,0 +1 @@
+ad94c2f5b871b8f4f747f62eac289e5aacc61cc9
\ No newline at end of file

Propchange: dev/lucene/lucene-solr-5.1.0-RC2-rev1672403/solr/maven/org/apache/solr/solr-morphlines-core/maven-metadata.xml.sha1
------------------------------------------------------------------------------
    svn:eol-style = native

Added: dev/lucene/lucene-solr-5.1.0-RC2-rev1672403/solr/maven/org/apache/solr/solr-parent/5.1.0/solr-parent-5.1.0.pom
==============================================================================
--- dev/lucene/lucene-solr-5.1.0-RC2-rev1672403/solr/maven/org/apache/solr/solr-parent/5.1.0/solr-parent-5.1.0.pom (added)
+++ dev/lucene/lucene-solr-5.1.0-RC2-rev1672403/solr/maven/org/apache/solr/solr-parent/5.1.0/solr-parent-5.1.0.pom Thu Apr  9 17:22:06 2015
@@ -0,0 +1,179 @@
+<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.lucene</groupId>
+    <artifactId>lucene-solr-grandparent</artifactId>
+    <version>5.1.0</version>
+    <relativePath>../pom.xml</relativePath>
+  </parent>
+  <groupId>org.apache.solr</groupId>
+  <artifactId>solr-parent</artifactId>
+  <packaging>pom</packaging>
+  <name>Apache Solr parent POM</name>
+  <description>Apache Solr parent POM</description>
+  <modules>
+    <module>core</module>
+    <module>solrj</module>
+    <module>test-framework</module>
+    <module>contrib</module>
+  </modules>
+  <properties>
+    <module-directory>solr</module-directory>
+  </properties>
+  <scm>
+    <connection>scm:svn:${vc-anonymous-base-url}/${module-directory}</connection>
+    <developerConnection>scm:svn:${vc-dev-base-url}/${module-directory}</developerConnection>
+    <url>${vc-browse-base-url}/${module-directory}</url>
+  </scm>
+  <issueManagement>
+    <system>JIRA</system>
+    <url>https://issues.apache.org/jira/browse/SOLR</url>
+  </issueManagement>
+  <mailingLists>
+    <mailingList>
+      <name>Solr User List</name>
+      <subscribe>solr-user-subscribe@lucene.apache.org</subscribe>
+      <unsubscribe>solr-user-unsubscribe@lucene.apache.org</unsubscribe>
+      <archive>
+        http://mail-archives.apache.org/mod_mbox/solr-user/
+      </archive>
+    </mailingList>
+    <mailingList>
+      <name>Java Developer List</name>
+      <subscribe>dev-subscribe@lucene.apache.org</subscribe>
+      <unsubscribe>dev-unsubscribe@lucene.apache.org</unsubscribe>
+      <archive>http://mail-archives.apache.org/mod_mbox/lucene-dev/</archive>
+    </mailingList>
+    <mailingList>
+      <name>Java Commits List</name>
+      <subscribe>commits-subscribe@lucene.apache.org</subscribe>
+      <unsubscribe>commits-unsubscribe@lucene.apache.org</unsubscribe>
+      <archive>
+        http://mail-archives.apache.org/mod_mbox/lucene-java-commits/
+      </archive>
+    </mailingList>
+  </mailingLists>
+  <inceptionYear>2006</inceptionYear>
+  <repositories>
+    <repository>
+      <id>maven-restlet</id>
+      <name>Public online Restlet repository</name>
+      <url>http://maven.restlet.org</url>
+    </repository>
+    <repository>
+      <id>releases.cloudera.com</id>
+      <name>Cloudera Releases</name>
+      <url>https://repository.cloudera.com/artifactory/libs-release</url>
+    </repository>
+  </repositories>
+  <build>
+    <pluginManagement>
+      <plugins>
+        <plugin>
+          <groupId>org.apache.maven.plugins</groupId>
+          <artifactId>maven-javadoc-plugin</artifactId>
+          <configuration>
+            <overview/>
+            <windowtitle>${project.name} ${project.version} API (${now.version})</windowtitle>
+            <doctitle>${project.name} ${project.version} API (${now.version})</doctitle>
+          </configuration>
+        </plugin>
+        <plugin>
+          <groupId>org.apache.maven.plugins</groupId>
+          <artifactId>maven-surefire-plugin</artifactId>
+          <configuration>
+            <systemPropertyVariables>
+              <tests.jettyConnector>${tests.jettyConnector}</tests.jettyConnector>
+              <tests.disableHdfs>${tests.disableHdfs}</tests.disableHdfs>
+            </systemPropertyVariables>
+          </configuration>
+        </plugin>
+      </plugins>
+    </pluginManagement>
+    <plugins>
+      <plugin>
+        <groupId>de.thetaphi</groupId>
+        <artifactId>forbiddenapis</artifactId>
+        <executions>
+          <execution>
+            <id>solr-shared-check-forbidden-apis</id>
+            <configuration>
+              <!-- disallow undocumented classes like sun.misc.Unsafe: -->
+              <internalRuntimeForbidden>true</internalRuntimeForbidden>
+              <bundledSignatures>
+                <bundledSignature>jdk-unsafe</bundledSignature>
+                <bundledSignature>jdk-deprecated</bundledSignature>
+              </bundledSignatures>
+              <signaturesFiles>
+                <signaturesFile>${top-level}/lucene/tools/forbiddenApis/base.txt</signaturesFile>
+              </signaturesFiles>
+            </configuration>
+            <goals>
+              <goal>check</goal>
+            </goals>
+          </execution>
+          <execution>
+            <id>solr-shared-test-check-forbidden-apis</id>
+            <configuration>
+              <!-- disallow undocumented classes like sun.misc.Unsafe: -->
+              <internalRuntimeForbidden>true</internalRuntimeForbidden>
+              <bundledSignatures>
+                <bundledSignature>jdk-unsafe</bundledSignature>
+                <bundledSignature>jdk-deprecated</bundledSignature>
+                <!-- Include commons-io-unsafe only in those modules with commons-io on their classpath -->
+                <!-- <bundledSignature>commons-io-unsafe-2.4</bundledSignature>       -->
+              </bundledSignatures>
+              <signaturesFiles>
+                <signaturesFile>${top-level}/lucene/tools/forbiddenApis/tests.txt</signaturesFile>
+                <signaturesFile>${top-level}/lucene/tools/forbiddenApis/base.txt</signaturesFile>
+              </signaturesFiles>
+            </configuration>
+            <goals>
+              <goal>testCheck</goal>
+            </goals>
+          </execution>
+        </executions>
+      </plugin>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-surefire-plugin</artifactId>
+        <configuration>
+          <systemPropertyVariables>
+            <java.util.logging.config.file>${top-level}/solr/testlogging.properties</java.util.logging.config.file>
+          </systemPropertyVariables>
+        </configuration>
+      </plugin>
+    </plugins>
+  </build>
+  <profiles>
+    <profile>
+      <id>windows-tests-disableHdfs</id>
+      <activation>
+        <os><family>windows</family></os>
+      </activation>
+      <properties>
+        <tests.disableHdfs>true</tests.disableHdfs>
+      </properties>
+    </profile>
+  </profiles>
+</project>

Propchange: dev/lucene/lucene-solr-5.1.0-RC2-rev1672403/solr/maven/org/apache/solr/solr-parent/5.1.0/solr-parent-5.1.0.pom
------------------------------------------------------------------------------
    svn:eol-style = native

Added: dev/lucene/lucene-solr-5.1.0-RC2-rev1672403/solr/maven/org/apache/solr/solr-parent/5.1.0/solr-parent-5.1.0.pom.asc
==============================================================================
--- dev/lucene/lucene-solr-5.1.0-RC2-rev1672403/solr/maven/org/apache/solr/solr-parent/5.1.0/solr-parent-5.1.0.pom.asc (added)
+++ dev/lucene/lucene-solr-5.1.0-RC2-rev1672403/solr/maven/org/apache/solr/solr-parent/5.1.0/solr-parent-5.1.0.pom.asc Thu Apr  9 17:22:06 2015
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Comment: GPGTools - https://gpgtools.org
+
+iQIcBAABCgAGBQJVJqueAAoJEBQ1S0L27UT8uqAP/3ZuqMC4A2Er43d0Q7kGnOlH
+nXJFBXijQwYL1UWfpiqumLOVrcyEuYKMkWTpoIAlLHuaJEcIjzrKDcvsyy6/9naf
+4JlKB+YEnrVMZc4WU+DEt08dDcJwmKUVzKWEaCdwajOl2cKycjfvSXz7Yc/YXr8M
+r+ujiA5Q89ccvoQBWeKrFChhd2muf5820HRmauIr6MA5E1GErBBqDDMYav02mJ0F
+TKci9SidVgEUNYCrFJBUUfZu9x6rFZ6Z9f9ugUYl8VKp/bEc5uOAWF/mMqkeyCJG
+/XeC9IsgTQDkP4vXcSGZOvTfGy1E9R1QK2YzuPcCAv3h7bJ1bVfkq0uo6FxwqMul
+5zPOapDm1KfA42ODQ/W9tG4v5NGn/gMw57g53KHQsS/a7rjuLQv/9NAesJmt/QNX
+7ILWXYO/5Wu6sW+aydQFo/5uEYhGVKdInO8zhsufqm7pH/npDjy87CWGr8HgjqDx
+Xb1UosZjK6eJaR16oULmgLuWX82vZHYPWgxSnlSYlAB7CK1TcaN7UTDCgNtSKaam
+g79YyQYTPUAq968u8ILAkKDBW4tWwbf3eeFfsbluBJH0Rne9fhpAbURE7rNre1ge
+FVnfrH5H1wDQHlho3ZkV2E1Kg/rhwH2mIBTQrKwhWUW5zNJHOq0C+NLsstJ2GYax
+77isGWNSmjjyAEjJFn4S
+=WkhU
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-5.1.0-RC2-rev1672403/solr/maven/org/apache/solr/solr-parent/5.1.0/solr-parent-5.1.0.pom.md5
==============================================================================
--- dev/lucene/lucene-solr-5.1.0-RC2-rev1672403/solr/maven/org/apache/solr/solr-parent/5.1.0/solr-parent-5.1.0.pom.md5 (added)
+++ dev/lucene/lucene-solr-5.1.0-RC2-rev1672403/solr/maven/org/apache/solr/solr-parent/5.1.0/solr-parent-5.1.0.pom.md5 Thu Apr  9 17:22:06 2015
@@ -0,0 +1 @@
+efff7bfd09d47647dea78a7c96c42ceb
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.1.0-RC2-rev1672403/solr/maven/org/apache/solr/solr-parent/5.1.0/solr-parent-5.1.0.pom.sha1
==============================================================================
--- dev/lucene/lucene-solr-5.1.0-RC2-rev1672403/solr/maven/org/apache/solr/solr-parent/5.1.0/solr-parent-5.1.0.pom.sha1 (added)
+++ dev/lucene/lucene-solr-5.1.0-RC2-rev1672403/solr/maven/org/apache/solr/solr-parent/5.1.0/solr-parent-5.1.0.pom.sha1 Thu Apr  9 17:22:06 2015
@@ -0,0 +1 @@
+f2d60cdb80077580ef7b2c2dc68c55e16ebab676
\ No newline at end of file

Propchange: dev/lucene/lucene-solr-5.1.0-RC2-rev1672403/solr/maven/org/apache/solr/solr-parent/5.1.0/solr-parent-5.1.0.pom.sha1
------------------------------------------------------------------------------
    svn:eol-style = native

Added: dev/lucene/lucene-solr-5.1.0-RC2-rev1672403/solr/maven/org/apache/solr/solr-parent/maven-metadata.xml
==============================================================================
--- dev/lucene/lucene-solr-5.1.0-RC2-rev1672403/solr/maven/org/apache/solr/solr-parent/maven-metadata.xml (added)
+++ dev/lucene/lucene-solr-5.1.0-RC2-rev1672403/solr/maven/org/apache/solr/solr-parent/maven-metadata.xml Thu Apr  9 17:22:06 2015
@@ -0,0 +1,12 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<metadata>
+  <groupId>org.apache.solr</groupId>
+  <artifactId>solr-parent</artifactId>
+  <version>5.1.0</version>
+  <versioning>
+    <versions>
+      <version>5.1.0</version>
+    </versions>
+    <lastUpdated>20150409163953</lastUpdated>
+  </versioning>
+</metadata>

Propchange: dev/lucene/lucene-solr-5.1.0-RC2-rev1672403/solr/maven/org/apache/solr/solr-parent/maven-metadata.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Added: dev/lucene/lucene-solr-5.1.0-RC2-rev1672403/solr/maven/org/apache/solr/solr-parent/maven-metadata.xml.md5
==============================================================================
--- dev/lucene/lucene-solr-5.1.0-RC2-rev1672403/solr/maven/org/apache/solr/solr-parent/maven-metadata.xml.md5 (added)
+++ dev/lucene/lucene-solr-5.1.0-RC2-rev1672403/solr/maven/org/apache/solr/solr-parent/maven-metadata.xml.md5 Thu Apr  9 17:22:06 2015
@@ -0,0 +1 @@
+3ad314a2b91a2c71ac98fd5efa7605b9
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.1.0-RC2-rev1672403/solr/maven/org/apache/solr/solr-parent/maven-metadata.xml.sha1
==============================================================================
--- dev/lucene/lucene-solr-5.1.0-RC2-rev1672403/solr/maven/org/apache/solr/solr-parent/maven-metadata.xml.sha1 (added)
+++ dev/lucene/lucene-solr-5.1.0-RC2-rev1672403/solr/maven/org/apache/solr/solr-parent/maven-metadata.xml.sha1 Thu Apr  9 17:22:06 2015
@@ -0,0 +1 @@
+a6f28d822a17ddbfadb1b6e236db5bb4a4d26b14
\ No newline at end of file

Propchange: dev/lucene/lucene-solr-5.1.0-RC2-rev1672403/solr/maven/org/apache/solr/solr-parent/maven-metadata.xml.sha1
------------------------------------------------------------------------------
    svn:eol-style = native

Added: dev/lucene/lucene-solr-5.1.0-RC2-rev1672403/solr/maven/org/apache/solr/solr-solrj/5.1.0/solr-solrj-5.1.0-javadoc.jar
==============================================================================
Binary file - no diff available.

Propchange: dev/lucene/lucene-solr-5.1.0-RC2-rev1672403/solr/maven/org/apache/solr/solr-solrj/5.1.0/solr-solrj-5.1.0-javadoc.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: dev/lucene/lucene-solr-5.1.0-RC2-rev1672403/solr/maven/org/apache/solr/solr-solrj/5.1.0/solr-solrj-5.1.0-javadoc.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-5.1.0-RC2-rev1672403/solr/maven/org/apache/solr/solr-solrj/5.1.0/solr-solrj-5.1.0-javadoc.jar.asc (added)
+++ dev/lucene/lucene-solr-5.1.0-RC2-rev1672403/solr/maven/org/apache/solr/solr-solrj/5.1.0/solr-solrj-5.1.0-javadoc.jar.asc Thu Apr  9 17:22:06 2015
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Comment: GPGTools - https://gpgtools.org
+
+iQIcBAABCgAGBQJVJqufAAoJEBQ1S0L27UT8p2YP/inNgBhkohmIzyazZE2VWpTT
+u7SfINWQuyKlKaaO8TTA4j6C9mZ3Sqyksej5h5Zz1rd/ro8jW/Wx47uuvolmm1Aq
+RgKuKctQEaDAL9qJpSog8we85awBrQtqzbUYso3E6+pj6y2CiFRcuihezmjrFhr6
+PvaMlk4rFbdCqBPVssaDYHZi/C4Tat2RShxDZiVafPMTB2B+OIEJwhXWl5Stp9Ar
+72ZkfmAb2xSUdqaIghKDZlrbwNgp5KzINjKmSSR9k2YF1NfibyPFhgD+IsyghNxc
+R/78VwD6C+uY5x4ZvKJ9PmSQjSYxUwyTtml8/CujuXEOEC/5bs5j8OFHlszw7748
+pq8fDgctXY7IpPQtt+tg20hOfdMvnA9SOL7I07X32mLG1zLCCbfyvR0/9jgudO3y
+xcsxQ00ERYh+SnJkmz2KLKRgA8F9gCOscueE1WhNATTBIlZhRC10dbTBDrbp7BGn
+VNm2NzahLIIzZwBv42cxbhHLtqirC06BjLxBCJePxj1GxfP3q4XpV5f+mfvEK66m
+0BSAjHdMsQtnQr9OuaMSQodMWTU4WOr77s+asi+I9SjocXo1Nk3Nt0C1V5ZJ1KsX
+/oBD4ivLSBiZ7OklCu5zJljgm6AWRfhjbW6dYf6QZ+lWjN1oewgtWWBU3rOk2b/w
+jQbOXZ6uhUuAwjgQCC1f
+=fi/G
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-5.1.0-RC2-rev1672403/solr/maven/org/apache/solr/solr-solrj/5.1.0/solr-solrj-5.1.0-javadoc.jar.md5
==============================================================================
--- dev/lucene/lucene-solr-5.1.0-RC2-rev1672403/solr/maven/org/apache/solr/solr-solrj/5.1.0/solr-solrj-5.1.0-javadoc.jar.md5 (added)
+++ dev/lucene/lucene-solr-5.1.0-RC2-rev1672403/solr/maven/org/apache/solr/solr-solrj/5.1.0/solr-solrj-5.1.0-javadoc.jar.md5 Thu Apr  9 17:22:06 2015
@@ -0,0 +1 @@
+93880b8e029af6d14f31fb3209ba2ad5
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.1.0-RC2-rev1672403/solr/maven/org/apache/solr/solr-solrj/5.1.0/solr-solrj-5.1.0-javadoc.jar.sha1
==============================================================================
--- dev/lucene/lucene-solr-5.1.0-RC2-rev1672403/solr/maven/org/apache/solr/solr-solrj/5.1.0/solr-solrj-5.1.0-javadoc.jar.sha1 (added)
+++ dev/lucene/lucene-solr-5.1.0-RC2-rev1672403/solr/maven/org/apache/solr/solr-solrj/5.1.0/solr-solrj-5.1.0-javadoc.jar.sha1 Thu Apr  9 17:22:06 2015
@@ -0,0 +1 @@
+24956977de0cfa6528c9739b3cb5befbc84b9b67
\ No newline at end of file

Propchange: dev/lucene/lucene-solr-5.1.0-RC2-rev1672403/solr/maven/org/apache/solr/solr-solrj/5.1.0/solr-solrj-5.1.0-javadoc.jar.sha1
------------------------------------------------------------------------------
    svn:eol-style = native

Added: dev/lucene/lucene-solr-5.1.0-RC2-rev1672403/solr/maven/org/apache/solr/solr-solrj/5.1.0/solr-solrj-5.1.0-sources.jar
==============================================================================
Binary file - no diff available.

Propchange: dev/lucene/lucene-solr-5.1.0-RC2-rev1672403/solr/maven/org/apache/solr/solr-solrj/5.1.0/solr-solrj-5.1.0-sources.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: dev/lucene/lucene-solr-5.1.0-RC2-rev1672403/solr/maven/org/apache/solr/solr-solrj/5.1.0/solr-solrj-5.1.0-sources.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-5.1.0-RC2-rev1672403/solr/maven/org/apache/solr/solr-solrj/5.1.0/solr-solrj-5.1.0-sources.jar.asc (added)
+++ dev/lucene/lucene-solr-5.1.0-RC2-rev1672403/solr/maven/org/apache/solr/solr-solrj/5.1.0/solr-solrj-5.1.0-sources.jar.asc Thu Apr  9 17:22:06 2015
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Comment: GPGTools - https://gpgtools.org
+
+iQIcBAABCgAGBQJVJqugAAoJEBQ1S0L27UT8HzYP/13hnmKaB2qs+V96qOtSks7t
+JZqsTE6SK8cJ6vo9+INPxai8NyAGRijmVyjPFtYQCON++Tk2U+CABSKyTFfz3wN3
+rcDfqamf2mmw3Yop+6QFYu4YcEVZeQr/dMAuaGAtl6mqxYTRM9qasJEJp0xEI5di
+LBccLwr7Mog5id0GVSKPH07Y2t1M7brzu4pnxeSp44J9NtXQamDlY/+YAvZ9X9an
+NpuTbJbPMZH08MvnLK+QYd8aXYkVuBzB3BArA+12povq4m4gCAfTuLQfpJF+QWFp
+9MBSvbWbEHgy2iIgu9HoRPo/ZF5rn0Y1J8yVMuvyNHpt0i3w0smdfd9E4h7auyK0
+NHn9qtYMeWobHv5dMM+O1a6O+jTg/9bF2somXe4asXA2gJGQfp25u0huv6pyX0zS
+L1GxfL4lge0gE65KsDOypMV1K1gmia2DY5xuga/n2ZtCUI3zy7bmmZwqEFquPORm
+mUMPI39FbOhlfDQ2M4vev9HZIXlm3/0/o00AhR3pj+CF1a575RI4GyX7//ymMaHv
+ToV2rlyPvhQGYuctKR3LdHiqDKMmzxouh+jK1l1iPPhJIpMmmn0qVGvZ12GJ9Lku
+OF9o1DLi2pF8BRDPn+qmKmxwLlezqksHxEaWHTxss6ECWRWYySmXkaQBSQ/+OV6Y
+S2vxN/0nhJ7z6wVZbOHQ
+=L0sz
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-5.1.0-RC2-rev1672403/solr/maven/org/apache/solr/solr-solrj/5.1.0/solr-solrj-5.1.0-sources.jar.md5
==============================================================================
--- dev/lucene/lucene-solr-5.1.0-RC2-rev1672403/solr/maven/org/apache/solr/solr-solrj/5.1.0/solr-solrj-5.1.0-sources.jar.md5 (added)
+++ dev/lucene/lucene-solr-5.1.0-RC2-rev1672403/solr/maven/org/apache/solr/solr-solrj/5.1.0/solr-solrj-5.1.0-sources.jar.md5 Thu Apr  9 17:22:06 2015
@@ -0,0 +1 @@
+4df956f8e1315d72eddc46da52b1a777
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.1.0-RC2-rev1672403/solr/maven/org/apache/solr/solr-solrj/5.1.0/solr-solrj-5.1.0-sources.jar.sha1
==============================================================================
--- dev/lucene/lucene-solr-5.1.0-RC2-rev1672403/solr/maven/org/apache/solr/solr-solrj/5.1.0/solr-solrj-5.1.0-sources.jar.sha1 (added)
+++ dev/lucene/lucene-solr-5.1.0-RC2-rev1672403/solr/maven/org/apache/solr/solr-solrj/5.1.0/solr-solrj-5.1.0-sources.jar.sha1 Thu Apr  9 17:22:06 2015
@@ -0,0 +1 @@
+b67675ea18ee5909649de9ec2c27ee8ec07fad18
\ No newline at end of file

Propchange: dev/lucene/lucene-solr-5.1.0-RC2-rev1672403/solr/maven/org/apache/solr/solr-solrj/5.1.0/solr-solrj-5.1.0-sources.jar.sha1
------------------------------------------------------------------------------
    svn:eol-style = native

Added: dev/lucene/lucene-solr-5.1.0-RC2-rev1672403/solr/maven/org/apache/solr/solr-solrj/5.1.0/solr-solrj-5.1.0.jar
==============================================================================
Binary file - no diff available.

Propchange: dev/lucene/lucene-solr-5.1.0-RC2-rev1672403/solr/maven/org/apache/solr/solr-solrj/5.1.0/solr-solrj-5.1.0.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: dev/lucene/lucene-solr-5.1.0-RC2-rev1672403/solr/maven/org/apache/solr/solr-solrj/5.1.0/solr-solrj-5.1.0.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-5.1.0-RC2-rev1672403/solr/maven/org/apache/solr/solr-solrj/5.1.0/solr-solrj-5.1.0.jar.asc (added)
+++ dev/lucene/lucene-solr-5.1.0-RC2-rev1672403/solr/maven/org/apache/solr/solr-solrj/5.1.0/solr-solrj-5.1.0.jar.asc Thu Apr  9 17:22:06 2015
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Comment: GPGTools - https://gpgtools.org
+
+iQIbBAABCgAGBQJVJqugAAoJEBQ1S0L27UT8wm8P9RPBcEqDeNE7psmg1F3pDBJ2
+YD4x/M63eAPZx1JLCmCRxEx+d28g9WFJzc2G7kUOfnPfLA35gnDe7wmcv303E4uw
+E2bFkWcJ89MpQ07Ieo5l99l7IQn9d2AEvXTiQIyDbCX4kcr8GOwkZY1gIcWp2b5u
+jzhU7Pf2zkAr1ig8LE4l19XoTxzAEQx6bNePeVfcH+CGFmRB49lbteYPTsE7KzHm
+a68Yk1eJdeY4a2hr5jIdsQ+Lg1V8u31TZJ1xjBKX/OQUrT7auHifQTD8L693RzVq
+bl7k4pWUqzkaMts4mWMPNQBFIhNYOhHmu2pEZEGA1HxralzXgy+2j+WhXlqqvsKs
+F8yz3SeQabRSw29DDQWU5mkevLxmT1grWjH80sZRjnG9rlSIZPYRmiHlHZAdW4NM
+p0eLn5AkDzEgV3zOnaSSWwFC5SvEAGgWBMEHO7SSsiofrnvp81bIo8oaDMUjrTkh
+QvjF+TX2ZLEU0koqB6oE1/3dHnEI5QHam3BsfhyeGMuLuKozR6fwJ89dhaR0Z6Cq
+pDZ4K2cbMqyQ6e2UTSZV4DOAx0iFe8qonFIm3SRKztf9OoCUTsD4s93buqzEU/HB
+US5aftuY/PNvp+qhQvV30F7eWyjE4V61bYXN8SfCK494UeBCf03RSAlTdryCtuHv
+MMhhhlb8EUu6RHzlD1I=
+=mvmo
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-5.1.0-RC2-rev1672403/solr/maven/org/apache/solr/solr-solrj/5.1.0/solr-solrj-5.1.0.jar.md5
==============================================================================
--- dev/lucene/lucene-solr-5.1.0-RC2-rev1672403/solr/maven/org/apache/solr/solr-solrj/5.1.0/solr-solrj-5.1.0.jar.md5 (added)
+++ dev/lucene/lucene-solr-5.1.0-RC2-rev1672403/solr/maven/org/apache/solr/solr-solrj/5.1.0/solr-solrj-5.1.0.jar.md5 Thu Apr  9 17:22:06 2015
@@ -0,0 +1 @@
+d52ded83c0e5943268d358b47a17715b
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.1.0-RC2-rev1672403/solr/maven/org/apache/solr/solr-solrj/5.1.0/solr-solrj-5.1.0.jar.sha1
==============================================================================
--- dev/lucene/lucene-solr-5.1.0-RC2-rev1672403/solr/maven/org/apache/solr/solr-solrj/5.1.0/solr-solrj-5.1.0.jar.sha1 (added)
+++ dev/lucene/lucene-solr-5.1.0-RC2-rev1672403/solr/maven/org/apache/solr/solr-solrj/5.1.0/solr-solrj-5.1.0.jar.sha1 Thu Apr  9 17:22:06 2015
@@ -0,0 +1 @@
+2277260f57c5b7a054bb1671a97b976f5e29798d
\ No newline at end of file

Propchange: dev/lucene/lucene-solr-5.1.0-RC2-rev1672403/solr/maven/org/apache/solr/solr-solrj/5.1.0/solr-solrj-5.1.0.jar.sha1
------------------------------------------------------------------------------
    svn:eol-style = native

Added: dev/lucene/lucene-solr-5.1.0-RC2-rev1672403/solr/maven/org/apache/solr/solr-solrj/5.1.0/solr-solrj-5.1.0.pom
==============================================================================
--- dev/lucene/lucene-solr-5.1.0-RC2-rev1672403/solr/maven/org/apache/solr/solr-solrj/5.1.0/solr-solrj-5.1.0.pom (added)
+++ dev/lucene/lucene-solr-5.1.0-RC2-rev1672403/solr/maven/org/apache/solr/solr-solrj/5.1.0/solr-solrj-5.1.0.pom Thu Apr  9 17:22:06 2015
@@ -0,0 +1,137 @@
+<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.1.0</version>
+    <relativePath>../../../pom.xml</relativePath>
+  </parent>
+  <groupId>org.apache.solr</groupId>
+  <artifactId>solr-solrj</artifactId>
+  <packaging>jar</packaging>
+  <name>Apache Solr Solrj</name>
+  <description>Apache Solr Solrj</description>
+  <properties>
+    <module-directory>solr/solrj</module-directory>
+    <relative-top-level>../../../../..</relative-top-level>
+    <module-path>${relative-top-level}/${module-directory}/src/java</module-path>
+  </properties>
+  <scm>
+    <connection>scm:svn:${vc-anonymous-base-url}/${module-directory}</connection>
+    <developerConnection>scm:svn:${vc-dev-base-url}/${module-directory}</developerConnection>
+    <url>${vc-browse-base-url}/${module-directory}</url>
+  </scm>
+  <dependencies>
+
+    <dependency>
+      <groupId>commons-io</groupId>
+      <artifactId>commons-io</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.httpcomponents</groupId>
+      <artifactId>httpclient</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.httpcomponents</groupId>
+      <artifactId>httpcore</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.httpcomponents</groupId>
+      <artifactId>httpmime</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.zookeeper</groupId>
+      <artifactId>zookeeper</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.codehaus.woodstox</groupId>
+      <artifactId>stax2-api</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.codehaus.woodstox</groupId>
+      <artifactId>woodstox-core-asl</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.noggit</groupId>
+      <artifactId>noggit</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.slf4j</groupId>
+      <artifactId>slf4j-api</artifactId>
+    </dependency>
+  </dependencies>
+  <build>
+    <sourceDirectory>${module-path}</sourceDirectory>
+    <testSourceDirectory/>
+    <plugins>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-surefire-plugin</artifactId>
+        <configuration>
+          <skip>true</skip> <!-- Tests are run from solr-solrj-tests module -->
+        </configuration>
+      </plugin>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-compiler-plugin</artifactId>
+        <configuration>
+          <skip>true</skip> <!-- This skips test compilation - tests are run from solr-solrj-tests module -->
+        </configuration>
+      </plugin>
+      <plugin>
+        <groupId>de.thetaphi</groupId>
+        <artifactId>forbiddenapis</artifactId>
+        <executions>
+          <execution>
+            <id>solr-shared-check-forbidden-apis</id>
+            <phase>none</phase> <!-- Block inherited execution -->
+          </execution>
+          <execution>
+            <id>solr-shared-test-check-forbidden-apis</id>
+            <phase>none</phase> <!-- Block inherited execution -->
+          </execution>
+          <execution>
+            <id>check-forbidden-apis</id>
+            <configuration>
+              <!-- disallow undocumented classes like sun.misc.Unsafe: -->
+              <internalRuntimeForbidden>true</internalRuntimeForbidden>
+              <bundledSignatures>
+                <bundledSignature>jdk-unsafe</bundledSignature>
+                <bundledSignature>jdk-deprecated</bundledSignature>
+                <bundledSignature>commons-io-unsafe-2.4</bundledSignature>
+              </bundledSignatures>
+              <signaturesFiles>
+                <signaturesFile>${top-level}/lucene/tools/forbiddenApis/base.txt</signaturesFile>
+                <!-- Solr-J does NOT depend on servlet-api -->
+                <!-- <signaturesFile>${top-level}/lucene/tools/forbiddenApis/servlet-api.txt</signaturesFile> -->
+              </signaturesFiles>
+            </configuration>
+            <goals>
+              <goal>check</goal>
+            </goals>
+          </execution>
+        </executions>
+      </plugin>
+    </plugins>
+  </build>
+</project>

Propchange: dev/lucene/lucene-solr-5.1.0-RC2-rev1672403/solr/maven/org/apache/solr/solr-solrj/5.1.0/solr-solrj-5.1.0.pom
------------------------------------------------------------------------------
    svn:eol-style = native

Added: dev/lucene/lucene-solr-5.1.0-RC2-rev1672403/solr/maven/org/apache/solr/solr-solrj/5.1.0/solr-solrj-5.1.0.pom.asc
==============================================================================
--- dev/lucene/lucene-solr-5.1.0-RC2-rev1672403/solr/maven/org/apache/solr/solr-solrj/5.1.0/solr-solrj-5.1.0.pom.asc (added)
+++ dev/lucene/lucene-solr-5.1.0-RC2-rev1672403/solr/maven/org/apache/solr/solr-solrj/5.1.0/solr-solrj-5.1.0.pom.asc Thu Apr  9 17:22:06 2015
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Comment: GPGTools - https://gpgtools.org
+
+iQIcBAABCgAGBQJVJquhAAoJEBQ1S0L27UT8qjcP/RhqTt/A13bqdFxD3TLuOzS8
+9IAzz6apH3bZF6hbuflW5eyGC9gTVGotJCPHU4/sSNjL20+nStCEhynjFYvtQL2g
+CIaYrpvWntDMLbNw5DBSDbd32VnAFXma/6xwYG/GVRmmrP77OdUGD0LkQ2SldGxB
+BtpzQQdrPk/JftqRIr9KOKK08PxKIXmuXqApaETJuGcwgIryiNg6V9qNUgQyAQ+3
+ODT7ieC9HFhO2dCtEoO/tMYHa9RMFhqyCynMEpv6bg6WhZwXeNTvS679nPwHZOhl
+FY36tHgnB9N2+7RyU0DcYd3tGm/kUzRrAFhESx2EM215WFhvwqUjFwJktsgt3BpW
+ZJ/KFvCgCwJq+Q8+AN/iLEFEbFsBWpCHnRZWd1FTBJ4E6IU506jThkzvnQcADU78
+rTRKN7+lGgXsIBmYb67xqgfKS7ARkf7PEsoblv/rKok25RwiNlPHa/xgbcwksKh6
+8NttXWpb6ycDIghkb++bi4Mcy4XF3nUP19bPzfYHJADf9/H7Be8p2lCQ0vMs618G
+Q51jX7gulCd8h0Ij/VBIPxcMRVWNgPyf5NzFAsO1VNPmaGrxEZDQ7t4ExnucFr3Q
+RNsxMlAgX9h+TU2jvsRB4eLrGyO3XasPSC1I/q10LLbnXxj/ZjUuEfjn4q7ylyQ3
+lzOzaoResKd0cd2oFJtT
+=CnAm
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-5.1.0-RC2-rev1672403/solr/maven/org/apache/solr/solr-solrj/5.1.0/solr-solrj-5.1.0.pom.md5
==============================================================================
--- dev/lucene/lucene-solr-5.1.0-RC2-rev1672403/solr/maven/org/apache/solr/solr-solrj/5.1.0/solr-solrj-5.1.0.pom.md5 (added)
+++ dev/lucene/lucene-solr-5.1.0-RC2-rev1672403/solr/maven/org/apache/solr/solr-solrj/5.1.0/solr-solrj-5.1.0.pom.md5 Thu Apr  9 17:22:06 2015
@@ -0,0 +1 @@
+a149a4492d0df21c28014ef6538e688d
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.1.0-RC2-rev1672403/solr/maven/org/apache/solr/solr-solrj/5.1.0/solr-solrj-5.1.0.pom.sha1
==============================================================================
--- dev/lucene/lucene-solr-5.1.0-RC2-rev1672403/solr/maven/org/apache/solr/solr-solrj/5.1.0/solr-solrj-5.1.0.pom.sha1 (added)
+++ dev/lucene/lucene-solr-5.1.0-RC2-rev1672403/solr/maven/org/apache/solr/solr-solrj/5.1.0/solr-solrj-5.1.0.pom.sha1 Thu Apr  9 17:22:06 2015
@@ -0,0 +1 @@
+e507161277dad5d15c9a4dea1be4ecd22e7b44c6
\ No newline at end of file

Propchange: dev/lucene/lucene-solr-5.1.0-RC2-rev1672403/solr/maven/org/apache/solr/solr-solrj/5.1.0/solr-solrj-5.1.0.pom.sha1
------------------------------------------------------------------------------
    svn:eol-style = native

Added: dev/lucene/lucene-solr-5.1.0-RC2-rev1672403/solr/maven/org/apache/solr/solr-solrj/maven-metadata.xml
==============================================================================
--- dev/lucene/lucene-solr-5.1.0-RC2-rev1672403/solr/maven/org/apache/solr/solr-solrj/maven-metadata.xml (added)
+++ dev/lucene/lucene-solr-5.1.0-RC2-rev1672403/solr/maven/org/apache/solr/solr-solrj/maven-metadata.xml Thu Apr  9 17:22:06 2015
@@ -0,0 +1,12 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<metadata>
+  <groupId>org.apache.solr</groupId>
+  <artifactId>solr-solrj</artifactId>
+  <version>5.1.0</version>
+  <versioning>
+    <versions>
+      <version>5.1.0</version>
+    </versions>
+    <lastUpdated>20150409163956</lastUpdated>
+  </versioning>
+</metadata>

Propchange: dev/lucene/lucene-solr-5.1.0-RC2-rev1672403/solr/maven/org/apache/solr/solr-solrj/maven-metadata.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Added: dev/lucene/lucene-solr-5.1.0-RC2-rev1672403/solr/maven/org/apache/solr/solr-solrj/maven-metadata.xml.md5
==============================================================================
--- dev/lucene/lucene-solr-5.1.0-RC2-rev1672403/solr/maven/org/apache/solr/solr-solrj/maven-metadata.xml.md5 (added)
+++ dev/lucene/lucene-solr-5.1.0-RC2-rev1672403/solr/maven/org/apache/solr/solr-solrj/maven-metadata.xml.md5 Thu Apr  9 17:22:06 2015
@@ -0,0 +1 @@
+91a69a10c0e3146291fcff13095e7937
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.1.0-RC2-rev1672403/solr/maven/org/apache/solr/solr-solrj/maven-metadata.xml.sha1
==============================================================================
--- dev/lucene/lucene-solr-5.1.0-RC2-rev1672403/solr/maven/org/apache/solr/solr-solrj/maven-metadata.xml.sha1 (added)
+++ dev/lucene/lucene-solr-5.1.0-RC2-rev1672403/solr/maven/org/apache/solr/solr-solrj/maven-metadata.xml.sha1 Thu Apr  9 17:22:06 2015
@@ -0,0 +1 @@
+5b402fe08a771d5658a0b617ee08620a3ba547a5
\ No newline at end of file

Propchange: dev/lucene/lucene-solr-5.1.0-RC2-rev1672403/solr/maven/org/apache/solr/solr-solrj/maven-metadata.xml.sha1
------------------------------------------------------------------------------
    svn:eol-style = native

Added: dev/lucene/lucene-solr-5.1.0-RC2-rev1672403/solr/maven/org/apache/solr/solr-test-framework/5.1.0/solr-test-framework-5.1.0-javadoc.jar
==============================================================================
Binary file - no diff available.

Propchange: dev/lucene/lucene-solr-5.1.0-RC2-rev1672403/solr/maven/org/apache/solr/solr-test-framework/5.1.0/solr-test-framework-5.1.0-javadoc.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: dev/lucene/lucene-solr-5.1.0-RC2-rev1672403/solr/maven/org/apache/solr/solr-test-framework/5.1.0/solr-test-framework-5.1.0-javadoc.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-5.1.0-RC2-rev1672403/solr/maven/org/apache/solr/solr-test-framework/5.1.0/solr-test-framework-5.1.0-javadoc.jar.asc (added)
+++ dev/lucene/lucene-solr-5.1.0-RC2-rev1672403/solr/maven/org/apache/solr/solr-test-framework/5.1.0/solr-test-framework-5.1.0-javadoc.jar.asc Thu Apr  9 17:22:06 2015
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Comment: GPGTools - https://gpgtools.org
+
+iQIcBAABCgAGBQJVJquhAAoJEBQ1S0L27UT8quwP/jpND639V04iuFNg0JqFAjCv
+zsX/hUL5cZoUZ4LV6cAvvOg0MfPRW4Ma8nWTLFXHxqTwsEhtXO5BpyVtaIJGcZR6
+Z9Gd3zSchUDz77Xn/ZKOkR6NqMh4PLN89o97J8xwqFf9oCBbYCURQKM+dhP/1r1H
+G7q6W6vPk6BJHutKQbe56X3xpRSpES9x6aesQ7PG3LDGxJowzEGI0+5ae6PJG0Dz
+kL5L955rjpXN6FalPH40YXil3mVuHm0hY7+dXbISpDc00PxEchcdCgd+GK3IJRT2
+HxDw+CahWOG67Qyu/8ujXXHaeRZw1pzsmGffnS+2f+OceY6CzIRl/Cyc1/Ye61Wo
+DtLd7dmiYXtRphw4FDvEWeEzoWk9+TOqgFgIr+IeUjnOEx6WOeY/fkPKAyhuT7r1
+9vITMsIeoQIWTpOEBrr2fWRma73BtCBT+qr9d1HCdFmV8P+urneKxzpid+5aC+dD
+RxrtFXQ6eQjDBWBUm4Zuivqxj1kKcmduLBBWqTniuzNW1VkqZM7VOC1ouUCKrfD2
+lWMIeVV5UOb5lDXhaVK/sm/Jznoadwzyzm0Uh0hXC3FxR6yxKnq7icDkITIBEbkM
+utZUD3LWlf6XmJ0qfdqbaETgO0h9ex2bFLlavrgeadEFNmmStpqTTFbXRzj3Dmu/
+oLhBpyLcwKwu4oZD1ecE
+=0v7e
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-5.1.0-RC2-rev1672403/solr/maven/org/apache/solr/solr-test-framework/5.1.0/solr-test-framework-5.1.0-javadoc.jar.md5
==============================================================================
--- dev/lucene/lucene-solr-5.1.0-RC2-rev1672403/solr/maven/org/apache/solr/solr-test-framework/5.1.0/solr-test-framework-5.1.0-javadoc.jar.md5 (added)
+++ dev/lucene/lucene-solr-5.1.0-RC2-rev1672403/solr/maven/org/apache/solr/solr-test-framework/5.1.0/solr-test-framework-5.1.0-javadoc.jar.md5 Thu Apr  9 17:22:06 2015
@@ -0,0 +1 @@
+95b4d49c64c9aeb9316477772e83144a
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.1.0-RC2-rev1672403/solr/maven/org/apache/solr/solr-test-framework/5.1.0/solr-test-framework-5.1.0-javadoc.jar.sha1
==============================================================================
--- dev/lucene/lucene-solr-5.1.0-RC2-rev1672403/solr/maven/org/apache/solr/solr-test-framework/5.1.0/solr-test-framework-5.1.0-javadoc.jar.sha1 (added)
+++ dev/lucene/lucene-solr-5.1.0-RC2-rev1672403/solr/maven/org/apache/solr/solr-test-framework/5.1.0/solr-test-framework-5.1.0-javadoc.jar.sha1 Thu Apr  9 17:22:06 2015
@@ -0,0 +1 @@
+97ef9987b3aac06b8adf12292d463e284e8f6b63
\ No newline at end of file

Propchange: dev/lucene/lucene-solr-5.1.0-RC2-rev1672403/solr/maven/org/apache/solr/solr-test-framework/5.1.0/solr-test-framework-5.1.0-javadoc.jar.sha1
------------------------------------------------------------------------------
    svn:eol-style = native

Added: dev/lucene/lucene-solr-5.1.0-RC2-rev1672403/solr/maven/org/apache/solr/solr-test-framework/5.1.0/solr-test-framework-5.1.0-sources.jar
==============================================================================
Binary file - no diff available.

Propchange: dev/lucene/lucene-solr-5.1.0-RC2-rev1672403/solr/maven/org/apache/solr/solr-test-framework/5.1.0/solr-test-framework-5.1.0-sources.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: dev/lucene/lucene-solr-5.1.0-RC2-rev1672403/solr/maven/org/apache/solr/solr-test-framework/5.1.0/solr-test-framework-5.1.0-sources.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-5.1.0-RC2-rev1672403/solr/maven/org/apache/solr/solr-test-framework/5.1.0/solr-test-framework-5.1.0-sources.jar.asc (added)
+++ dev/lucene/lucene-solr-5.1.0-RC2-rev1672403/solr/maven/org/apache/solr/solr-test-framework/5.1.0/solr-test-framework-5.1.0-sources.jar.asc Thu Apr  9 17:22:06 2015
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Comment: GPGTools - https://gpgtools.org
+
+iQIcBAABCgAGBQJVJquiAAoJEBQ1S0L27UT8U5sQAJc5GRrOQ6uqoW1NRnIJcA2M
++riU2jkXlNAT2KuXLR5VSb5FxlR80dr5hMRG39SP0rhw1oCMuwG+OhGycYFMq+9R
+IJ5Gg7P3Qh/9hBMEMLDvBeEPl6wlUuNNdgs0oVG+6GF63x1eoMCm++0xlt/A8gQX
+gxgM2igkUXaqfhbohCAtVGVxAUODi4t+YOG/CLNdrNWxSOIGdfrjI//U2OAR5sdA
+6cuHp/JqNI34RosDc7u20z26nVQDtT/+eKEux9aSo7xKxebeRiDHg8VTBUciQ3Fg
+d4sYl0lxiDSQab6ivaQr7GwmOn2qifo+0cXirBZtXtkipjXTnNleo9+ihVzmHlMs
+B7/GTLxEIZ8AlunwmEz1O4QvxDCkGrsLPQk1tN8i74divNovHN1YKgzHXXCHn7d9
+jpaaakE/qSbZmjl83ORGucDdItB6/U92hU8PZhwoJUjJm9g1vuacDGpjptFw4cr4
+nqG7j9DobiGLhe2PpOMbfzfnWSUKWYbWqiOA+7orLySyp+ZtSpfJdLGwhc3gr0A7
+493IwxR74QzifDq+IgKY50C/1o8EScGx2EuyJDtbY+eU7K6wXwnXprMjd/jibueU
+2jGpHzHaap8MzaaBf45Z06CnNRT+iV9wdCuen9hfvp/W/+DYu4CzEGGkcslJmSju
+5yFN9TUQIvbJCOkfCLX/
+=qw99
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-5.1.0-RC2-rev1672403/solr/maven/org/apache/solr/solr-test-framework/5.1.0/solr-test-framework-5.1.0-sources.jar.md5
==============================================================================
--- dev/lucene/lucene-solr-5.1.0-RC2-rev1672403/solr/maven/org/apache/solr/solr-test-framework/5.1.0/solr-test-framework-5.1.0-sources.jar.md5 (added)
+++ dev/lucene/lucene-solr-5.1.0-RC2-rev1672403/solr/maven/org/apache/solr/solr-test-framework/5.1.0/solr-test-framework-5.1.0-sources.jar.md5 Thu Apr  9 17:22:06 2015
@@ -0,0 +1 @@
+8da87cc0a1cf381032ff9eff67a89f62
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.1.0-RC2-rev1672403/solr/maven/org/apache/solr/solr-test-framework/5.1.0/solr-test-framework-5.1.0-sources.jar.sha1
==============================================================================
--- dev/lucene/lucene-solr-5.1.0-RC2-rev1672403/solr/maven/org/apache/solr/solr-test-framework/5.1.0/solr-test-framework-5.1.0-sources.jar.sha1 (added)
+++ dev/lucene/lucene-solr-5.1.0-RC2-rev1672403/solr/maven/org/apache/solr/solr-test-framework/5.1.0/solr-test-framework-5.1.0-sources.jar.sha1 Thu Apr  9 17:22:06 2015
@@ -0,0 +1 @@
+12ea12b6569aef8df7b7164582d377c592d2df26
\ No newline at end of file

Propchange: dev/lucene/lucene-solr-5.1.0-RC2-rev1672403/solr/maven/org/apache/solr/solr-test-framework/5.1.0/solr-test-framework-5.1.0-sources.jar.sha1
------------------------------------------------------------------------------
    svn:eol-style = native

Added: dev/lucene/lucene-solr-5.1.0-RC2-rev1672403/solr/maven/org/apache/solr/solr-test-framework/5.1.0/solr-test-framework-5.1.0.jar
==============================================================================
Binary file - no diff available.

Propchange: dev/lucene/lucene-solr-5.1.0-RC2-rev1672403/solr/maven/org/apache/solr/solr-test-framework/5.1.0/solr-test-framework-5.1.0.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: dev/lucene/lucene-solr-5.1.0-RC2-rev1672403/solr/maven/org/apache/solr/solr-test-framework/5.1.0/solr-test-framework-5.1.0.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-5.1.0-RC2-rev1672403/solr/maven/org/apache/solr/solr-test-framework/5.1.0/solr-test-framework-5.1.0.jar.asc (added)
+++ dev/lucene/lucene-solr-5.1.0-RC2-rev1672403/solr/maven/org/apache/solr/solr-test-framework/5.1.0/solr-test-framework-5.1.0.jar.asc Thu Apr  9 17:22:06 2015
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Comment: GPGTools - https://gpgtools.org
+
+iQIcBAABCgAGBQJVJquiAAoJEBQ1S0L27UT89JYP/1JCPzMqhcJSkz1w7tsvfjNn
+iDBB5+WgYxsa9Fj8QISOGykq/9hLSZq11LlDEzkkcLAPi8hTWeikCU8mhXV4mMzV
+3COI1A6hGDgEiglL9j5TD0FmLQQ5ugsriUipU5w71olYmYRDdOrLGaWMXADsfCkl
+nJocg3pITHmWn5cSAlPc3BGtvXsAwCaf3Rm9JUNQxJ+SGQAsmBbyMInGNLrnjzBj
+xnbwwgVQyj6GJbSrDv7YJAFJwPKOE86gijwjNkHs5yCGMxY2R5NOoGIIUMcxW8MY
+oljJ6vWdTISivGizIHPz9+aXSfRmsIhPVjCxn518BikNNvAT6AePM5ko2Z94AkmY
+eQ1bpQhmUMJthrBn8tijQVrnCC/1j9O5yP2jEmuBGE8nQPBJW6Vww3HpnmCqTGnr
+1jTAA79ABda8cS7Oni6e5rskUm3oeZyYvf4pZxT195XtO8ymlGBnPnxR6zg3Y+nE
+JCqLFOwgdTyfom7Si11qVZy9ykdPeLdVOke6zejcUI+IjaY1wyt72kTXVC067kYc
+oj8E5LUBcc1a365Sov9OEAnDpWdXkp20IfaubA2StR15q4aX1rx4+keQ+SLRj7sj
+UUDD1kNrmJvroWrr+aZey1K5cHM7os4WqGTU6kVZewxuzB3031LX2UXHR1xSJqrq
+36H874z+eifslMQerYeZ
+=3/V3
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-5.1.0-RC2-rev1672403/solr/maven/org/apache/solr/solr-test-framework/5.1.0/solr-test-framework-5.1.0.jar.md5
==============================================================================
--- dev/lucene/lucene-solr-5.1.0-RC2-rev1672403/solr/maven/org/apache/solr/solr-test-framework/5.1.0/solr-test-framework-5.1.0.jar.md5 (added)
+++ dev/lucene/lucene-solr-5.1.0-RC2-rev1672403/solr/maven/org/apache/solr/solr-test-framework/5.1.0/solr-test-framework-5.1.0.jar.md5 Thu Apr  9 17:22:06 2015
@@ -0,0 +1 @@
+d9d2d280477ac6a985b9fa8169738a76
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.1.0-RC2-rev1672403/solr/maven/org/apache/solr/solr-test-framework/5.1.0/solr-test-framework-5.1.0.jar.sha1
==============================================================================
--- dev/lucene/lucene-solr-5.1.0-RC2-rev1672403/solr/maven/org/apache/solr/solr-test-framework/5.1.0/solr-test-framework-5.1.0.jar.sha1 (added)
+++ dev/lucene/lucene-solr-5.1.0-RC2-rev1672403/solr/maven/org/apache/solr/solr-test-framework/5.1.0/solr-test-framework-5.1.0.jar.sha1 Thu Apr  9 17:22:06 2015
@@ -0,0 +1 @@
+66fb8a6502efce6b95bc78ad1790bd66c9516cec
\ No newline at end of file

Propchange: dev/lucene/lucene-solr-5.1.0-RC2-rev1672403/solr/maven/org/apache/solr/solr-test-framework/5.1.0/solr-test-framework-5.1.0.jar.sha1
------------------------------------------------------------------------------
    svn:eol-style = native

Added: dev/lucene/lucene-solr-5.1.0-RC2-rev1672403/solr/maven/org/apache/solr/solr-test-framework/5.1.0/solr-test-framework-5.1.0.pom
==============================================================================
--- dev/lucene/lucene-solr-5.1.0-RC2-rev1672403/solr/maven/org/apache/solr/solr-test-framework/5.1.0/solr-test-framework-5.1.0.pom (added)
+++ dev/lucene/lucene-solr-5.1.0-RC2-rev1672403/solr/maven/org/apache/solr/solr-test-framework/5.1.0/solr-test-framework-5.1.0.pom Thu Apr  9 17:22:06 2015
@@ -0,0 +1,404 @@
+<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.1.0</version>
+    <relativePath>../pom.xml</relativePath>
+  </parent>
+  <groupId>org.apache.solr</groupId>
+  <artifactId>solr-test-framework</artifactId>
+  <packaging>jar</packaging>
+  <name>Apache Solr Test Framework</name>
+  <description>Apache Solr Test Framework</description>
+  <properties>
+    <module-directory>solr/test-framework</module-directory>
+    <relative-top-level>../../..</relative-top-level>
+    <module-path>${relative-top-level}/${module-directory}</module-path>
+  </properties>
+  <scm>
+    <connection>scm:svn:${vc-anonymous-base-url}/${module-directory}</connection>
+    <developerConnection>scm:svn:${vc-dev-base-url}/${module-directory}</developerConnection>
+    <url>${vc-browse-base-url}/${module-directory}</url>
+  </scm>
+  <dependencies>
+    <!-- These dependencies are compile scope because this is a test framework. -->
+    <dependency>
+      <!-- lucene-test-framework dependency must come before lucene-core -->
+      <groupId>org.apache.lucene</groupId>
+      <artifactId>lucene-test-framework</artifactId>
+    </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-spatial</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.lucene</groupId>
+      <artifactId>lucene-suggest</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.lucene</groupId>
+      <artifactId>lucene-test-framework</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.solr</groupId>
+      <artifactId>solr-core</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.solr</groupId>
+      <artifactId>solr-solrj</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.carrotsearch</groupId>
+      <artifactId>hppc</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.carrotsearch.randomizedtesting</groupId>
+      <artifactId>junit4-ant</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.carrotsearch.randomizedtesting</groupId>
+      <artifactId>randomizedtesting-runner</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.spatial4j</groupId>
+      <artifactId>spatial4j</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.tdunning</groupId>
+      <artifactId>t-digest</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>commons-cli</groupId>
+      <artifactId>commons-cli</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>commons-codec</groupId>
+      <artifactId>commons-codec</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>commons-collections</groupId>
+      <artifactId>commons-collections</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>commons-configuration</groupId>
+      <artifactId>commons-configuration</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>commons-fileupload</groupId>
+      <artifactId>commons-fileupload</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>commons-io</groupId>
+      <artifactId>commons-io</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>commons-lang</groupId>
+      <artifactId>commons-lang</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>dom4j</groupId>
+      <artifactId>dom4j</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>joda-time</groupId>
+      <artifactId>joda-time</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>junit</groupId>
+      <artifactId>junit</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>log4j</groupId>
+      <artifactId>log4j</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.antlr</groupId>
+      <artifactId>antlr-runtime</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.ant</groupId>
+      <artifactId>ant</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.zookeeper</groupId>
+      <artifactId>zookeeper</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-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.eclipse.jetty.orbit</groupId>
+      <artifactId>javax.servlet</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.htrace</groupId>
+      <artifactId>htrace-core</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>
+      <optional>true</optional>
+    </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>
+
+
+  </dependencies>
+  <build>
+    <sourceDirectory>${module-path}/src/java</sourceDirectory>
+    <testSourceDirectory>${module-path}/src/test</testSourceDirectory>
+    <resources>
+      <resource>
+        <directory>${module-path}</directory>
+        <excludes>
+          <exclude>**/*.java</exclude>
+        </excludes>
+      </resource>
+    </resources>
+    <plugins>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-surefire-plugin</artifactId>
+        <configuration>
+          <skip>true</skip>
+        </configuration>
+      </plugin>
+      <plugin>
+        <groupId>de.thetaphi</groupId>
+        <artifactId>forbiddenapis</artifactId>
+        <executions>
+          <execution>
+            <id>solr-shared-check-forbidden-apis</id>
+            <phase>none</phase> <!-- Block inherited execution -->
+          </execution>
+          <execution>
+            <id>solr-shared-test-check-forbidden-apis</id>
+            <phase>none</phase> <!-- Block inherited execution -->
+          </execution>
+          <execution>
+            <id>check-forbidden-apis</id>
+            <configuration>
+              <!-- disallow undocumented classes like sun.misc.Unsafe: -->
+              <internalRuntimeForbidden>true</internalRuntimeForbidden>
+              <bundledSignatures>
+                <bundledSignature>jdk-unsafe</bundledSignature>
+                <bundledSignature>jdk-deprecated</bundledSignature>
+                <bundledSignature>commons-io-unsafe-2.4</bundledSignature>
+              </bundledSignatures>
+              <signaturesFiles>
+                <signaturesFile>${top-level}/lucene/tools/forbiddenApis/base.txt</signaturesFile>
+                <signaturesFile>${top-level}/lucene/tools/forbiddenApis/servlet-api.txt</signaturesFile>
+                <signaturesFile>${top-level}/lucene/tools/forbiddenApis/tests.txt</signaturesFile>
+              </signaturesFiles>
+            </configuration>
+            <goals>
+              <goal>check</goal>  <!-- NOT testcheck -->
+            </goals>
+          </execution>
+        </executions>
+      </plugin>
+    </plugins>
+  </build>
+</project>

Propchange: dev/lucene/lucene-solr-5.1.0-RC2-rev1672403/solr/maven/org/apache/solr/solr-test-framework/5.1.0/solr-test-framework-5.1.0.pom
------------------------------------------------------------------------------
    svn:eol-style = native