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/06 22:50:34 UTC

svn commit: r8536 [20/21] - in /dev/lucene/lucene-solr-5.1.0-RC1-rev1671632: ./ 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-RC1-rev1671632/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-RC1-rev1671632/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-RC1-rev1671632/solr/maven/org/apache/solr/solr-morphlines-core/5.1.0/solr-morphlines-core-5.1.0.pom Mon Apr  6 20:50:32 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-RC1-rev1671632/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-RC1-rev1671632/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-RC1-rev1671632/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-RC1-rev1671632/solr/maven/org/apache/solr/solr-morphlines-core/5.1.0/solr-morphlines-core-5.1.0.pom.asc Mon Apr  6 20:50:32 2015
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Comment: GPGTools - https://gpgtools.org
+
+iQIcBAABCgAGBQJVIt1CAAoJEBQ1S0L27UT8U1IQAIgMh/pvI+sD7fx7G8SkmyvZ
+87PRLkuaDbc0nMBpCs8clWT7N4TZIfYugsxp2x1BcuweRdL8FHYaea1oVAmlfpW0
+fSyw+KnXxXiJFej/NsDK9vUNNNHp3d9L5HQYlPeqat+cY+E8zm1k6bvoarmD/awo
+hzpzOWPNFbRq8uqyeHCgxLJHGvQCDk9MlCY0Et0yECoeFzS1sNtWyCOGECB8UkRI
+G7eYYgvDnpuFLuP4l9iItulIqRWLk7O06nBXAoBvM018khdtNUzW3xryk51IdkF+
+4G+ojzTa8xX9EmF7aWLqXcojSr2p2Fy0KCdTmu5CB0C8BxlgpWNTbBV7Dn6BeCJn
+K6G3V4CYx1WHBeE2/tWvpkOGt8qcG1GvyuaFMD+NSLaFWkInYLbqjZGX6XoLqAVs
+2TIJTi5kw3Hp4EV5J6Z4dbL9p6agyYlhtbaujH5FtXRPuS9DICt1+BFwIFraS/18
+4FqOOtY0OAtXktZOEwH02yp6btA0AisXRgddhLwrAJwyHB9ma7dvY8Ac0M6pI7mW
+Lp28YZHgrtEjAjyaV5gUfWyaew4TTxIdvI1WScGBOwJc7sZgP9WjyyKcr5V/fEVK
+acBzx2UIoj43GQcvlCtBbLMNx5ua0XRWbGRp3c2NAJWzw/OMw7vpEJ9lMu4SGgWU
++Q7ki1zLMlB7wRAwvrz0
+=dDtW
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-5.1.0-RC1-rev1671632/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-RC1-rev1671632/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-RC1-rev1671632/solr/maven/org/apache/solr/solr-morphlines-core/5.1.0/solr-morphlines-core-5.1.0.pom.md5 Mon Apr  6 20:50:32 2015
@@ -0,0 +1 @@
+32ea6b6a7a494440ed05d13237b80b89
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.1.0-RC1-rev1671632/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-RC1-rev1671632/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-RC1-rev1671632/solr/maven/org/apache/solr/solr-morphlines-core/5.1.0/solr-morphlines-core-5.1.0.pom.sha1 Mon Apr  6 20:50:32 2015
@@ -0,0 +1 @@
+c23b18ec018be529fbd92cdaf8791528af8752cc
\ No newline at end of file

Propchange: dev/lucene/lucene-solr-5.1.0-RC1-rev1671632/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-RC1-rev1671632/solr/maven/org/apache/solr/solr-morphlines-core/maven-metadata.xml
==============================================================================
--- dev/lucene/lucene-solr-5.1.0-RC1-rev1671632/solr/maven/org/apache/solr/solr-morphlines-core/maven-metadata.xml (added)
+++ dev/lucene/lucene-solr-5.1.0-RC1-rev1671632/solr/maven/org/apache/solr/solr-morphlines-core/maven-metadata.xml Mon Apr  6 20:50:32 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>20150406192317</lastUpdated>
+  </versioning>
+</metadata>

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

Added: dev/lucene/lucene-solr-5.1.0-RC1-rev1671632/solr/maven/org/apache/solr/solr-morphlines-core/maven-metadata.xml.md5
==============================================================================
--- dev/lucene/lucene-solr-5.1.0-RC1-rev1671632/solr/maven/org/apache/solr/solr-morphlines-core/maven-metadata.xml.md5 (added)
+++ dev/lucene/lucene-solr-5.1.0-RC1-rev1671632/solr/maven/org/apache/solr/solr-morphlines-core/maven-metadata.xml.md5 Mon Apr  6 20:50:32 2015
@@ -0,0 +1 @@
+ebf64342853c7f577eaea13d6552972e
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.1.0-RC1-rev1671632/solr/maven/org/apache/solr/solr-morphlines-core/maven-metadata.xml.sha1
==============================================================================
--- dev/lucene/lucene-solr-5.1.0-RC1-rev1671632/solr/maven/org/apache/solr/solr-morphlines-core/maven-metadata.xml.sha1 (added)
+++ dev/lucene/lucene-solr-5.1.0-RC1-rev1671632/solr/maven/org/apache/solr/solr-morphlines-core/maven-metadata.xml.sha1 Mon Apr  6 20:50:32 2015
@@ -0,0 +1 @@
+e95de406f39b76c7bbf26b074af9ecf27b7b430e
\ No newline at end of file

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

Added: dev/lucene/lucene-solr-5.1.0-RC1-rev1671632/solr/maven/org/apache/solr/solr-parent/5.1.0/solr-parent-5.1.0.pom
==============================================================================
--- dev/lucene/lucene-solr-5.1.0-RC1-rev1671632/solr/maven/org/apache/solr/solr-parent/5.1.0/solr-parent-5.1.0.pom (added)
+++ dev/lucene/lucene-solr-5.1.0-RC1-rev1671632/solr/maven/org/apache/solr/solr-parent/5.1.0/solr-parent-5.1.0.pom Mon Apr  6 20:50:32 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-RC1-rev1671632/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-RC1-rev1671632/solr/maven/org/apache/solr/solr-parent/5.1.0/solr-parent-5.1.0.pom.asc
==============================================================================
--- dev/lucene/lucene-solr-5.1.0-RC1-rev1671632/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-RC1-rev1671632/solr/maven/org/apache/solr/solr-parent/5.1.0/solr-parent-5.1.0.pom.asc Mon Apr  6 20:50:32 2015
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Comment: GPGTools - https://gpgtools.org
+
+iQIcBAABCgAGBQJVIt1DAAoJEBQ1S0L27UT8ZwQP/RLJ6uckdwwYTS37VIMCRAFP
+8IjGEeU7Y7GPIvHvTa3RzVsZZum2qGLa/0hn4RmzM2cVdJpUII9arZRNI7uYwYZI
+q9lHCUjVJJKBK/l/+CB1Aj4dwecG4/QR82w5PoOA0UjFwEmDJNIN4/mwKVKdV9/F
+sxQofTRzzp31S+zcTBONQacRQGIykDCDcO9iXpwH/r7QmjkjvTx+eYlOAQWYNy4N
+aOFwjUiP2fclEnpCMgEzP3YyMXDaTr3ZBw24iTS9vS+0/IX5Kygdb9heQh1KzsYa
+5h23eswFdx0P19RIU4NY5Bm8SsKPj8M8hrK+nyhNDiWmk7nbF1frhHfbdwPLj8s9
+q/UAM4TvGRf0yv999QFjueXcrOkfxbjxXt6qosq0HeBYw+JACsRdPSkqKvbuq4ok
+tBI2ky2fX68l1J20dFzlGlcQ7JQqW7MEfXsNbRr7HqIim1BtD4SsDNrBIUtks5te
+pOsGDjQh8QL6braygZxK6tZPtu3Jj/R6+ujwvmcopOsCCa94EVby+9kFO+4Qxx9k
+9z8YNh/yH2KBv45PR32t6uGcBIwsfamH6Gs869rOPtLXM0Z3Ws74d/uTx8/YgXfd
+psSz3mhnWr25pXpxZtSmhQVdil5NB81fkxVjX0Yi/GKrOOIEmXJM8kBgOMIYNY9c
+6cOhtkm51NKcxux4LHTX
+=yy/3
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-5.1.0-RC1-rev1671632/solr/maven/org/apache/solr/solr-parent/5.1.0/solr-parent-5.1.0.pom.md5
==============================================================================
--- dev/lucene/lucene-solr-5.1.0-RC1-rev1671632/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-RC1-rev1671632/solr/maven/org/apache/solr/solr-parent/5.1.0/solr-parent-5.1.0.pom.md5 Mon Apr  6 20:50:32 2015
@@ -0,0 +1 @@
+efff7bfd09d47647dea78a7c96c42ceb
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.1.0-RC1-rev1671632/solr/maven/org/apache/solr/solr-parent/5.1.0/solr-parent-5.1.0.pom.sha1
==============================================================================
--- dev/lucene/lucene-solr-5.1.0-RC1-rev1671632/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-RC1-rev1671632/solr/maven/org/apache/solr/solr-parent/5.1.0/solr-parent-5.1.0.pom.sha1 Mon Apr  6 20:50:32 2015
@@ -0,0 +1 @@
+f2d60cdb80077580ef7b2c2dc68c55e16ebab676
\ No newline at end of file

Propchange: dev/lucene/lucene-solr-5.1.0-RC1-rev1671632/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-RC1-rev1671632/solr/maven/org/apache/solr/solr-parent/maven-metadata.xml
==============================================================================
--- dev/lucene/lucene-solr-5.1.0-RC1-rev1671632/solr/maven/org/apache/solr/solr-parent/maven-metadata.xml (added)
+++ dev/lucene/lucene-solr-5.1.0-RC1-rev1671632/solr/maven/org/apache/solr/solr-parent/maven-metadata.xml Mon Apr  6 20:50:32 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>20150406192239</lastUpdated>
+  </versioning>
+</metadata>

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

Added: dev/lucene/lucene-solr-5.1.0-RC1-rev1671632/solr/maven/org/apache/solr/solr-parent/maven-metadata.xml.md5
==============================================================================
--- dev/lucene/lucene-solr-5.1.0-RC1-rev1671632/solr/maven/org/apache/solr/solr-parent/maven-metadata.xml.md5 (added)
+++ dev/lucene/lucene-solr-5.1.0-RC1-rev1671632/solr/maven/org/apache/solr/solr-parent/maven-metadata.xml.md5 Mon Apr  6 20:50:32 2015
@@ -0,0 +1 @@
+447b24431c78c052e89170af5d9525aa
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.1.0-RC1-rev1671632/solr/maven/org/apache/solr/solr-parent/maven-metadata.xml.sha1
==============================================================================
--- dev/lucene/lucene-solr-5.1.0-RC1-rev1671632/solr/maven/org/apache/solr/solr-parent/maven-metadata.xml.sha1 (added)
+++ dev/lucene/lucene-solr-5.1.0-RC1-rev1671632/solr/maven/org/apache/solr/solr-parent/maven-metadata.xml.sha1 Mon Apr  6 20:50:32 2015
@@ -0,0 +1 @@
+f331fa7b93271f4a9496a9db32ee7f2933c0e130
\ No newline at end of file

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

Added: dev/lucene/lucene-solr-5.1.0-RC1-rev1671632/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-RC1-rev1671632/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-RC1-rev1671632/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-RC1-rev1671632/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-RC1-rev1671632/solr/maven/org/apache/solr/solr-solrj/5.1.0/solr-solrj-5.1.0-javadoc.jar.asc Mon Apr  6 20:50:32 2015
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Comment: GPGTools - https://gpgtools.org
+
+iQIcBAABCgAGBQJVIt1DAAoJEBQ1S0L27UT8ofQP+gOVBe/iAIt7r5khL5Of3C8l
+M/XPo5dUQGMsvJBuJGvLqgXLMygYuuMVe9H7UDcXgziUPy/t+FHyyseLWKhJOjZW
+2vxq+nIBDVlEO+trCUOZNhA2igfSOyVYgI05T0DhIHXP6etDXmbvzBeqRmQEgxPM
+Pngl3MEFjNwMDgdhTP2VfaEFbO9c/U7XJFwUGcbjkj3wHbItonqJAIy2M/mpuq0F
+YOBOmxn9CX4kd7ii2AMUrtnOi0bcHMeZw+JoSECKeSlErwngfYdJivVbCaVAeYfM
+i52zy/yjWvlRqpAVHVOJsJv7tpY4lJY8yRx8MrJtlHE9Jz3vXxub/B4+UxeNMmjw
+R2eV2cJrrSiwAvpP39IDsI2xp5iy4x1FgvEnTJ2/WVUmdrh3v8O71te2tOd2Gokq
+9uWTt47f+BAtnLxndRMQWu4CuE2pJ/8mkfV0xHN0oGbywjapd0v3V/GHTOx90Z1M
+4GkjbIIrDIF7C1Q0k62fukeH2rqLASiXtSEyKoPrhZz/OVBkoZI+m9c/GXGH4vap
+gbdRCLxdywchc4hFX5vFcvlH73CgxQfYcgn+PcHg+3wm65Q65EoTKP2t/xRGq7nD
+POARSU9lTxIA+5lXIAclwp+Rr8nwZOs8PIqRk6wGjrOQ524WZ+jKxNq7JDa1fwe4
+dzQCjHuGk6tZEkrKNJWP
+=pU1f
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-5.1.0-RC1-rev1671632/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-RC1-rev1671632/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-RC1-rev1671632/solr/maven/org/apache/solr/solr-solrj/5.1.0/solr-solrj-5.1.0-javadoc.jar.md5 Mon Apr  6 20:50:32 2015
@@ -0,0 +1 @@
+376441addb32b0ee343b28cb5aff5870
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.1.0-RC1-rev1671632/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-RC1-rev1671632/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-RC1-rev1671632/solr/maven/org/apache/solr/solr-solrj/5.1.0/solr-solrj-5.1.0-javadoc.jar.sha1 Mon Apr  6 20:50:32 2015
@@ -0,0 +1 @@
+eacce49cc14f2b7d388e4cbec2f53b4b3451bb8b
\ No newline at end of file

Propchange: dev/lucene/lucene-solr-5.1.0-RC1-rev1671632/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-RC1-rev1671632/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-RC1-rev1671632/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-RC1-rev1671632/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-RC1-rev1671632/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-RC1-rev1671632/solr/maven/org/apache/solr/solr-solrj/5.1.0/solr-solrj-5.1.0-sources.jar.asc Mon Apr  6 20:50:32 2015
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Comment: GPGTools - https://gpgtools.org
+
+iQIcBAABCgAGBQJVIt1EAAoJEBQ1S0L27UT8yTMP/jQ8d552dK/E/+xegRo97JEa
+ovITrPEo1wrL2l53Mc3jWahzBNu16gTK96WuV/sH3rwUlte8sCDz4KYeZM9d/jgT
+M7ODb/Co6o2H/FLrkYDbECSyaaowQfEtlt8hM6+NtzxusLfo7JzM4YidGS/d1Wu0
+yUCXyhxY+5drMDtIdA4S7rioBFKmCYCaujzUoqz7G8wcC2ZqpuI3vErP7lfxfZla
+NRGzi+LFKdxLvBoHgLa74e4pU36rAnzwajE8eHOCJGu5YJfxWKQORrw24Ah8uMie
+AYXM72DAMZMKFwbQuzh5X9AVdYckzYkB5YlbOJjZbma7K7k1VEtypVFod8YgU8FS
+nMbtKBh4wSDP7pUHOfYHEYjPavnNRm32A2Mpa4Mn2zv+MXevSyl8EbpNm3SHd0Hy
+PbfEf2vgGE83XQs/r/iCU95EFseI5NOCRzYCYZ/MIK7gYeIw/t3KJ0vGiOcdzj62
+FwmwWLiypTgI38wN6DfqW8W7nX6zYFf9Z3jTAUKZ4xRrjJ7kRMtxHLx8c4dIdfEX
+toa8tkBJXxO9Ub/A6T5QSqr4zAbJ4/dqUg7C9mTEKoggPNiyC9deblQHQwrotZNI
+jp2hj8fZYvCA0oWwMjQqeKPRLDgS9MB/PK5PSku0TI0k83sB0UCX6fxZnEzfnyAI
+usywaO+okRk4nGpDcsBy
+=nKJA
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-5.1.0-RC1-rev1671632/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-RC1-rev1671632/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-RC1-rev1671632/solr/maven/org/apache/solr/solr-solrj/5.1.0/solr-solrj-5.1.0-sources.jar.md5 Mon Apr  6 20:50:32 2015
@@ -0,0 +1 @@
+56e5c8cca5224f9b97c9806b5c36be5c
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.1.0-RC1-rev1671632/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-RC1-rev1671632/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-RC1-rev1671632/solr/maven/org/apache/solr/solr-solrj/5.1.0/solr-solrj-5.1.0-sources.jar.sha1 Mon Apr  6 20:50:32 2015
@@ -0,0 +1 @@
+ce8f0ff6fad1494edc90f59274ff1e6c129a9cdb
\ No newline at end of file

Propchange: dev/lucene/lucene-solr-5.1.0-RC1-rev1671632/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-RC1-rev1671632/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-RC1-rev1671632/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-RC1-rev1671632/solr/maven/org/apache/solr/solr-solrj/5.1.0/solr-solrj-5.1.0.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-5.1.0-RC1-rev1671632/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-RC1-rev1671632/solr/maven/org/apache/solr/solr-solrj/5.1.0/solr-solrj-5.1.0.jar.asc Mon Apr  6 20:50:32 2015
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Comment: GPGTools - https://gpgtools.org
+
+iQIcBAABCgAGBQJVIt1FAAoJEBQ1S0L27UT86cgP+wZoC8uFA2om730dImwcqo6I
+Tnfy7THDjo3aKvIzeDnHEQ7Jb3frXm242N/i7kta0Qe3STKpr886fAhkIAq5rymo
+UmLSGwu3PJNyNDEqfig2l1yOBXwrsZlTTjCnYp1hBhWk6ydLUhFs/9C3Ytij0Sq2
+7Moqx/IPKdkH9Fcu8YGpIDWYRhkJxu+KzZ/lGNpmKVRkjqO5YUxpQv3KJcXhrZ/F
+h1MSAJuoG6bYnf2xJkZFo7O9pMyCyPQWppouA64sn3ddolv4OJ8T2lkfWdynd/bd
+99Sxdt7s2eUsMKb1+wuk2h3hg1PfSPEEsmTXW/w3ThMloXeuURaA+X3WtFgOiWna
+XGdqrYj6xPVCjvi0D1dhm4rW9gyIzdxunjzrh4JssVCfxMZ3TNJAz9l8ma8teKlX
+/8YFkMVfYswr6ysBZxjC9Yr9YGUDNT6bu010kOLzkjVtfwTzKpQZ8pVcY0knriD4
+z/TcDFQ5GXSBZzYQJP4utglHTNzAAx4OnM5bo7JE1VGM8NK2SXfjjOQvI5F2PMFo
+R7EQSudkl4w2CQweciuqZBRH2JuF5Wx5VMtECuwPT+eEZmSghSPfXEaR+5u8+g3d
+LV5KcawkV2GUwj3MJyvBgzARishI0A9Br6RVqQKj3McS+iRCIRIMo0niCjYK983o
+9gCfyZvqZn6dWwl7XRar
+=eFY4
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-5.1.0-RC1-rev1671632/solr/maven/org/apache/solr/solr-solrj/5.1.0/solr-solrj-5.1.0.jar.md5
==============================================================================
--- dev/lucene/lucene-solr-5.1.0-RC1-rev1671632/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-RC1-rev1671632/solr/maven/org/apache/solr/solr-solrj/5.1.0/solr-solrj-5.1.0.jar.md5 Mon Apr  6 20:50:32 2015
@@ -0,0 +1 @@
+9abb1f9724e98c95e06b70ef9df9ab5e
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.1.0-RC1-rev1671632/solr/maven/org/apache/solr/solr-solrj/5.1.0/solr-solrj-5.1.0.jar.sha1
==============================================================================
--- dev/lucene/lucene-solr-5.1.0-RC1-rev1671632/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-RC1-rev1671632/solr/maven/org/apache/solr/solr-solrj/5.1.0/solr-solrj-5.1.0.jar.sha1 Mon Apr  6 20:50:32 2015
@@ -0,0 +1 @@
+7a9e16565422b3e8436ae3b7f1bd1f2fee962a11
\ No newline at end of file

Propchange: dev/lucene/lucene-solr-5.1.0-RC1-rev1671632/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-RC1-rev1671632/solr/maven/org/apache/solr/solr-solrj/5.1.0/solr-solrj-5.1.0.pom
==============================================================================
--- dev/lucene/lucene-solr-5.1.0-RC1-rev1671632/solr/maven/org/apache/solr/solr-solrj/5.1.0/solr-solrj-5.1.0.pom (added)
+++ dev/lucene/lucene-solr-5.1.0-RC1-rev1671632/solr/maven/org/apache/solr/solr-solrj/5.1.0/solr-solrj-5.1.0.pom Mon Apr  6 20:50:32 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-RC1-rev1671632/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-RC1-rev1671632/solr/maven/org/apache/solr/solr-solrj/5.1.0/solr-solrj-5.1.0.pom.asc
==============================================================================
--- dev/lucene/lucene-solr-5.1.0-RC1-rev1671632/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-RC1-rev1671632/solr/maven/org/apache/solr/solr-solrj/5.1.0/solr-solrj-5.1.0.pom.asc Mon Apr  6 20:50:32 2015
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Comment: GPGTools - https://gpgtools.org
+
+iQIcBAABCgAGBQJVIt1FAAoJEBQ1S0L27UT8AGEP/0ZBGzUIWp9L0920nV7rPSST
+rJ5hEbdct8wdS53sIGOoKF6DX9hbv87Df1Hu8yf3N7z38zg4kvK9CGl8prAlaYgk
+0B+dXDZPNYhx6gSx2znmyEMozfo1BWebuWt+iFRNbx/D7kIYQHZ0+f/2jHKgC0/F
+/veRW/B7eKDnNzduOvIRbL4jOm5PTqiMc9vf5+VQkAEWgOSn2YFo8f55PZl8mrp2
+4hv49BFIi5mRfsi1T3BsiFHYPQGjZhFgqG9qWSTW4lVo3N3M+st14V7X6mh6zlLT
+MLGZNh2FN0ues437QsBv33CALKWeQVYHzIuEiWMIeCB8NtUrZGfX55B7SGrQBiCt
+jL1Ue3FUwomaPRu5jSKOXHBNkJDNxTnT5aH7+sb6QtP48Vj5VoytEQEeOShH3ZAM
+kT3zzfBPYTVykypOnoaTqBo9AjOcQ6KHi6cSsVKkwcDw9wfGHvx/ga8A/yKoOn+A
+iUT0zZKwPaoCu0oVxhOrDeYv/voKho0skVa69yFmb0JBgeJjh+cKaJ5yxkfODoXR
+Otc1Ubvp1G8T/FKydadXUlBILrNiHHiiibnAVD+PZj9tDLDVJ03TJ39Gc0Kl1wp9
+ZVyOzFpMvPnBqtNyrkEjsHnGVzxlUZx02ETZvNFk/1jcvfd1tZRmnwF4y0kDmmmf
+j2xjoxbwjstr28xxftd4
+=eTCY
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-5.1.0-RC1-rev1671632/solr/maven/org/apache/solr/solr-solrj/5.1.0/solr-solrj-5.1.0.pom.md5
==============================================================================
--- dev/lucene/lucene-solr-5.1.0-RC1-rev1671632/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-RC1-rev1671632/solr/maven/org/apache/solr/solr-solrj/5.1.0/solr-solrj-5.1.0.pom.md5 Mon Apr  6 20:50:32 2015
@@ -0,0 +1 @@
+a149a4492d0df21c28014ef6538e688d
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.1.0-RC1-rev1671632/solr/maven/org/apache/solr/solr-solrj/5.1.0/solr-solrj-5.1.0.pom.sha1
==============================================================================
--- dev/lucene/lucene-solr-5.1.0-RC1-rev1671632/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-RC1-rev1671632/solr/maven/org/apache/solr/solr-solrj/5.1.0/solr-solrj-5.1.0.pom.sha1 Mon Apr  6 20:50:32 2015
@@ -0,0 +1 @@
+e507161277dad5d15c9a4dea1be4ecd22e7b44c6
\ No newline at end of file

Propchange: dev/lucene/lucene-solr-5.1.0-RC1-rev1671632/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-RC1-rev1671632/solr/maven/org/apache/solr/solr-solrj/maven-metadata.xml
==============================================================================
--- dev/lucene/lucene-solr-5.1.0-RC1-rev1671632/solr/maven/org/apache/solr/solr-solrj/maven-metadata.xml (added)
+++ dev/lucene/lucene-solr-5.1.0-RC1-rev1671632/solr/maven/org/apache/solr/solr-solrj/maven-metadata.xml Mon Apr  6 20:50:32 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>20150406192242</lastUpdated>
+  </versioning>
+</metadata>

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

Added: dev/lucene/lucene-solr-5.1.0-RC1-rev1671632/solr/maven/org/apache/solr/solr-solrj/maven-metadata.xml.md5
==============================================================================
--- dev/lucene/lucene-solr-5.1.0-RC1-rev1671632/solr/maven/org/apache/solr/solr-solrj/maven-metadata.xml.md5 (added)
+++ dev/lucene/lucene-solr-5.1.0-RC1-rev1671632/solr/maven/org/apache/solr/solr-solrj/maven-metadata.xml.md5 Mon Apr  6 20:50:32 2015
@@ -0,0 +1 @@
+f65a577f85538d44419e403bd1ab1a6d
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.1.0-RC1-rev1671632/solr/maven/org/apache/solr/solr-solrj/maven-metadata.xml.sha1
==============================================================================
--- dev/lucene/lucene-solr-5.1.0-RC1-rev1671632/solr/maven/org/apache/solr/solr-solrj/maven-metadata.xml.sha1 (added)
+++ dev/lucene/lucene-solr-5.1.0-RC1-rev1671632/solr/maven/org/apache/solr/solr-solrj/maven-metadata.xml.sha1 Mon Apr  6 20:50:32 2015
@@ -0,0 +1 @@
+11452545eaa09c879a9c5df732aebec6a664933f
\ No newline at end of file

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

Added: dev/lucene/lucene-solr-5.1.0-RC1-rev1671632/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-RC1-rev1671632/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-RC1-rev1671632/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-RC1-rev1671632/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-RC1-rev1671632/solr/maven/org/apache/solr/solr-test-framework/5.1.0/solr-test-framework-5.1.0-javadoc.jar.asc Mon Apr  6 20:50:32 2015
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Comment: GPGTools - https://gpgtools.org
+
+iQIcBAABCgAGBQJVIt1GAAoJEBQ1S0L27UT8T/UP/2slpPbAY8XXJVkYBqEDo7bU
+sfNs6SR0/+u+SIx24HpwGCqRmu69kXg+ywxHOOKgGLeFj66xfp8WY/8zDUOeWILS
+f6Bkspr6tduyilOr7m7+NyiLAgPflkeELTNMFLSfs5KUN+DgZc+0Hpa+2MNIxHxC
+kI6ivBJ0LIzMDsxs8fSSdQUXVRWGdpim2pANmf5pfE1dKRLqfgK8cuej4bNE+cJU
+zVfyioLz4TXHeH+LvM8QAW6TD+2RZrGjyqrWyrV8Q+7p31UizQUVQatAxrJuWFP8
+8BxnwQypbiFDk95b2SMIJChgH0eAS2ZI3PZ2gmCYZpm0og7RW2TslD5RLOupNjG8
+Gzh+C5uvxtvyXlPda7R6muKHzHZKgweolkXdr+XFNCtReq+TzL7ygiLp7G/pUE9K
+2lwavdgJgZQd5onfe00wP05A4bEJKtWmtWgFVt9cugWBpfiUl3fflY4F4FJtOkhM
+lrz2tC/eYVVLVhIn9HrNECD28XyHN0OqMvZsXYsvtbVTeBQYOYnYjB9MHYC2ivWT
+eni03aWTHGNipMB8gIXjTvrQKrJIbRuc8FHHk1UtCGOvvf/lEqDaNW0NrTElLFjF
+sQAP3wkzP28eYex537EKeJkPuDbTI8PhPxxq91+SRR+SKD4r2ribS07FtyU25VJv
+s8s8+JrPSqc4XbBa/rNv
+=ANfj
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-5.1.0-RC1-rev1671632/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-RC1-rev1671632/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-RC1-rev1671632/solr/maven/org/apache/solr/solr-test-framework/5.1.0/solr-test-framework-5.1.0-javadoc.jar.md5 Mon Apr  6 20:50:32 2015
@@ -0,0 +1 @@
+c650be4b239fa1e0ecd5e77d0038d717
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.1.0-RC1-rev1671632/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-RC1-rev1671632/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-RC1-rev1671632/solr/maven/org/apache/solr/solr-test-framework/5.1.0/solr-test-framework-5.1.0-javadoc.jar.sha1 Mon Apr  6 20:50:32 2015
@@ -0,0 +1 @@
+6b308181b85fd49a653164b71d0048d10590cd1b
\ No newline at end of file

Propchange: dev/lucene/lucene-solr-5.1.0-RC1-rev1671632/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-RC1-rev1671632/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-RC1-rev1671632/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-RC1-rev1671632/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-RC1-rev1671632/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-RC1-rev1671632/solr/maven/org/apache/solr/solr-test-framework/5.1.0/solr-test-framework-5.1.0-sources.jar.asc Mon Apr  6 20:50:32 2015
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Comment: GPGTools - https://gpgtools.org
+
+iQIcBAABCgAGBQJVIt1GAAoJEBQ1S0L27UT8IFwP/013+uSa5oAgboJYpKczVsIo
+VZ7tc/JN+TlL+oPevm4PRIMx/HVuFJW0qsFvCnP2zrf95f86MgZDVuXlzXvPeecR
+OqueQJQ21KRH5cA2hEuVvTGQ+uIy2cut/J2oPGF6IH07FWsHCX3DIczbWEFkMwWq
+oBPmGpt9mUHeJYv3u1G0scHnhTfjpu1d2yGMA7eUYwpW4CxJ1y8eOFZyJcK2Lk1a
+KaGlUisRu05soy6gnNO11zymjhyLCnusrEGy+bK6MXtV4Ok0v4J+GwEl8dS14tR+
+L47wG6nPV1Zkdvjdge1Z4PbvHz1fkhYtpfSsxP7TUVn5kSSf0IVjbRQmpkrz097J
+rNt+md0rcwtemSoOZDbGzqxSrUa4RoE2hrAWaVcnXGnE47kY+xI5TadEdWzCjJsq
+P8yJ8P8g2wcF2rr3ACjv2p52Cf7Q0fGHrWkuGGpBAo6g5lTMNFLTFx/DICmVU0tP
+yOGnOvxUiCXFD1xpBQynFl1mg02AcW8AS/pWMTvstj4q2uBMyE+d+B/pjLTg6UXQ
+CdHHgQqjEs7dl2Df/a4Ea328eRpKipC+QmtzsSNh5AVHHNClJKedbZeEVdCRYBCC
+YoN0GTZuDGQHatq/xHAjgRhCMsEIlzfK9dp3iAFLhvPuCn6tcNtGWE9+UfSTvE9A
+qge0dUre7YX+pQ/Q7lLD
+=Ywx0
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-5.1.0-RC1-rev1671632/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-RC1-rev1671632/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-RC1-rev1671632/solr/maven/org/apache/solr/solr-test-framework/5.1.0/solr-test-framework-5.1.0-sources.jar.md5 Mon Apr  6 20:50:32 2015
@@ -0,0 +1 @@
+49f469a09150186fb923bb08a45c3e7b
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.1.0-RC1-rev1671632/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-RC1-rev1671632/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-RC1-rev1671632/solr/maven/org/apache/solr/solr-test-framework/5.1.0/solr-test-framework-5.1.0-sources.jar.sha1 Mon Apr  6 20:50:32 2015
@@ -0,0 +1 @@
+f02afe1ae6145111080a59bad0270aacae57f726
\ No newline at end of file

Propchange: dev/lucene/lucene-solr-5.1.0-RC1-rev1671632/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-RC1-rev1671632/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-RC1-rev1671632/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-RC1-rev1671632/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-RC1-rev1671632/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-RC1-rev1671632/solr/maven/org/apache/solr/solr-test-framework/5.1.0/solr-test-framework-5.1.0.jar.asc Mon Apr  6 20:50:32 2015
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Comment: GPGTools - https://gpgtools.org
+
+iQIcBAABCgAGBQJVIt1HAAoJEBQ1S0L27UT8zDAP/iKp1F1XQoWCBdMUrLpUJ0T2
+zpPR74P9mC5hsFsUwSMxQqrMzzYOgtw4SvYJ0YL2/uEgsnt8JUdott1DHPPGDwji
+JgnefSUTRjj+ecrs3ZEeb79nuSS2MWlCxytbKIgXXm8Dva7ENBBXl962r7IOyBa+
+G2stDRcejqbYucxau5WyHndER83OrnGdcv/lm9mIYQUJP1oh25Con1mBPK6K+owQ
+7W3oiesKnJLz9xwHdXCLkKtEBAVuEnYm9+MkhtyiRQN5vPjc7eqnlvyqzXuYqGVm
+cMmb/63ussBmic921G2ZCXvHztsexmv6A6smnvLk7hsh5ed/nlrueIpGGT/XusOm
+jXd1ZJ3Rvj5PY2kFKktWE/4Zax4h/Wwf2ZxEHlAhORb3wbBOP00Gp8iSk0Lpck7y
+ZTwTClg07zpHY93Jdu846xgAhMQURohBRkZz7t4i51EMk5kcaNgfZ3w+7Sftr6bo
+GtREtYiCBuN2gAjyuDmlLTlRazRaZCHbggoYm/WN3WADAN4vrJfjzJBQjCXoRS2Y
+iGyls35FmV0FHwdO4YSwC34/WllCcO5w+dTTsa2sAw6CrZNZ+iYzUyVVtuNBaOef
+9E/fuejBhVwehrSb+Oh4wLrKCHpOPvByAZhZrggVXuR7nAltEGeA3gd+BrHjHGST
+mqq9zP0nk3v7hYUEaS47
+=4mV4
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-5.1.0-RC1-rev1671632/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-RC1-rev1671632/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-RC1-rev1671632/solr/maven/org/apache/solr/solr-test-framework/5.1.0/solr-test-framework-5.1.0.jar.md5 Mon Apr  6 20:50:32 2015
@@ -0,0 +1 @@
+202b59cccb44ff92240b619d2b858892
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.1.0-RC1-rev1671632/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-RC1-rev1671632/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-RC1-rev1671632/solr/maven/org/apache/solr/solr-test-framework/5.1.0/solr-test-framework-5.1.0.jar.sha1 Mon Apr  6 20:50:32 2015
@@ -0,0 +1 @@
+adaa1d6812efbb2813692bef668648522970822e
\ No newline at end of file

Propchange: dev/lucene/lucene-solr-5.1.0-RC1-rev1671632/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-RC1-rev1671632/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-RC1-rev1671632/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-RC1-rev1671632/solr/maven/org/apache/solr/solr-test-framework/5.1.0/solr-test-framework-5.1.0.pom Mon Apr  6 20:50:32 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-RC1-rev1671632/solr/maven/org/apache/solr/solr-test-framework/5.1.0/solr-test-framework-5.1.0.pom
------------------------------------------------------------------------------
    svn:eol-style = native