You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by ji...@apache.org on 2017/03/21 21:42:58 UTC

svn commit: r18873 [20/22] - in /dev/lucene/lucene-solr-6.5.0-RC1-rev4b16c9a10c3c00cafaf1fc92ec3276a7bc7b8c95: ./ lucene/ lucene/changes/ lucene/maven/ lucene/maven/org/ lucene/maven/org/apache/ lucene/maven/org/apache/lucene/ lucene/maven/org/apache/l...

Added: dev/lucene/lucene-solr-6.5.0-RC1-rev4b16c9a10c3c00cafaf1fc92ec3276a7bc7b8c95/solr/maven/org/apache/solr/solr-morphlines-core/6.5.0/solr-morphlines-core-6.5.0.pom
==============================================================================
--- dev/lucene/lucene-solr-6.5.0-RC1-rev4b16c9a10c3c00cafaf1fc92ec3276a7bc7b8c95/solr/maven/org/apache/solr/solr-morphlines-core/6.5.0/solr-morphlines-core-6.5.0.pom (added)
+++ dev/lucene/lucene-solr-6.5.0-RC1-rev4b16c9a10c3c00cafaf1fc92ec3276a7bc7b8c95/solr/maven/org/apache/solr/solr-morphlines-core/6.5.0/solr-morphlines-core-6.5.0.pom Tue Mar 21 21:42:53 2017
@@ -0,0 +1,853 @@
+<!--
+  Licensed to the Apache Software Foundation (ASF) under one
+  or more contributor license agreements.  See the NOTICE file
+  distributed with this work for additional information
+  regarding copyright ownership.  The ASF licenses this file
+  to you under the Apache License, Version 2.0 (the
+  "License"); you may not use this file except in compliance
+  with the License.  You may obtain a copy of the License at
+  
+  http://www.apache.org/licenses/LICENSE-2.0
+  
+  Unless required by applicable law or agreed to in writing,
+  software distributed under the License is distributed on an
+  "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+  KIND, either express or implied.  See the License for the
+  specific language governing permissions and limitations
+  under the License.
+-->
+<project xmlns="http://maven.apache.org/POM/4.0.0"
+         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+  <modelVersion>4.0.0</modelVersion>
+  <parent>
+    <groupId>org.apache.solr</groupId>
+    <artifactId>solr-parent</artifactId>
+    <version>6.5.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:git:${vc-anonymous-base-url}</connection>
+    <developerConnection>scm:git:${vc-dev-base-url}</developerConnection>
+    <url>${vc-browse-base-url};f=${module-directory}</url>
+  </scm>
+  <dependencies>
+    <dependency>
+      <!-- lucene-test-framework dependency must be declared before lucene-core -->
+      <!-- This dependency cannot be put into solr-parent, because local        -->
+      <!-- dependencies are always ordered before inherited dependencies.       -->
+      <groupId>org.apache.lucene</groupId>
+      <artifactId>lucene-test-framework</artifactId>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.solr</groupId>
+      <artifactId>solr-test-framework</artifactId>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.lucene</groupId>
+      <artifactId>lucene-analyzers-common</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.lucene</groupId>
+      <artifactId>lucene-analyzers-kuromoji</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.lucene</groupId>
+      <artifactId>lucene-analyzers-phonetic</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.lucene</groupId>
+      <artifactId>lucene-backward-codecs</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.lucene</groupId>
+      <artifactId>lucene-classification</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.lucene</groupId>
+      <artifactId>lucene-codecs</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.lucene</groupId>
+      <artifactId>lucene-core</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.lucene</groupId>
+      <artifactId>lucene-expressions</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.lucene</groupId>
+      <artifactId>lucene-grouping</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.lucene</groupId>
+      <artifactId>lucene-highlighter</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.lucene</groupId>
+      <artifactId>lucene-join</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.lucene</groupId>
+      <artifactId>lucene-memory</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.lucene</groupId>
+      <artifactId>lucene-misc</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.lucene</groupId>
+      <artifactId>lucene-queries</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.lucene</groupId>
+      <artifactId>lucene-queryparser</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.lucene</groupId>
+      <artifactId>lucene-sandbox</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.lucene</groupId>
+      <artifactId>lucene-spatial-extras</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.lucene</groupId>
+      <artifactId>lucene-suggest</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.solr</groupId>
+      <artifactId>solr-cell</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.solr</groupId>
+      <artifactId>solr-core</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.solr</groupId>
+      <artifactId>solr-solrj</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.adobe.xmp</groupId>
+      <artifactId>xmpcore</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.carrotsearch</groupId>
+      <artifactId>hppc</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.drewnoakes</groupId>
+      <artifactId>metadata-extractor</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.fasterxml.jackson.dataformat</groupId>
+      <artifactId>jackson-dataformat-smile</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.github.ben-manes.caffeine</groupId>
+      <artifactId>caffeine</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.google.guava</groupId>
+      <artifactId>guava</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.google.protobuf</groupId>
+      <artifactId>protobuf-java</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.googlecode.juniversalchardet</groupId>
+      <artifactId>juniversalchardet</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.googlecode.mp4parser</groupId>
+      <artifactId>isoparser</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.healthmarketscience.jackcess</groupId>
+      <artifactId>jackcess</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.ibm.icu</groupId>
+      <artifactId>icu4j</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.pff</groupId>
+      <artifactId>java-libpst</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.tdunning</groupId>
+      <artifactId>t-digest</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.typesafe</groupId>
+      <artifactId>config</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>commons-cli</groupId>
+      <artifactId>commons-cli</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>commons-codec</groupId>
+      <artifactId>commons-codec</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>commons-configuration</groupId>
+      <artifactId>commons-configuration</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>commons-fileupload</groupId>
+      <artifactId>commons-fileupload</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>commons-io</groupId>
+      <artifactId>commons-io</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>commons-lang</groupId>
+      <artifactId>commons-lang</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>de.l3s.boilerpipe</groupId>
+      <artifactId>boilerpipe</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>dom4j</groupId>
+      <artifactId>dom4j</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>info.ganglia.gmetric4j</groupId>
+      <artifactId>gmetric4j</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>io.dropwizard.metrics</groupId>
+      <artifactId>metrics-core</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>io.dropwizard.metrics</groupId>
+      <artifactId>metrics-ganglia</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>io.dropwizard.metrics</groupId>
+      <artifactId>metrics-graphite</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>io.dropwizard.metrics</groupId>
+      <artifactId>metrics-healthchecks</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>io.dropwizard.metrics</groupId>
+      <artifactId>metrics-jetty9</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>io.dropwizard.metrics</groupId>
+      <artifactId>metrics-jvm</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>javax.servlet</groupId>
+      <artifactId>javax.servlet-api</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>jdom</groupId>
+      <artifactId>jdom</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>joda-time</groupId>
+      <artifactId>joda-time</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>log4j</groupId>
+      <artifactId>log4j</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>net.hydromatic</groupId>
+      <artifactId>eigenbase-properties</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>net.sourceforge.jmatio</groupId>
+      <artifactId>jmatio</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.antlr</groupId>
+      <artifactId>antlr4-runtime</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.calcite</groupId>
+      <artifactId>calcite-core</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.calcite</groupId>
+      <artifactId>calcite-linq4j</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.calcite.avatica</groupId>
+      <artifactId>avatica-core</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.commons</groupId>
+      <artifactId>commons-compress</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.commons</groupId>
+      <artifactId>commons-exec</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.curator</groupId>
+      <artifactId>curator-recipes</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.hadoop</groupId>
+      <artifactId>hadoop-annotations</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.hadoop</groupId>
+      <artifactId>hadoop-auth</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.hadoop</groupId>
+      <artifactId>hadoop-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.pdfbox</groupId>
+      <artifactId>pdfbox-tools</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.poi</groupId>
+      <artifactId>poi</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.poi</groupId>
+      <artifactId>poi-ooxml</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.poi</groupId>
+      <artifactId>poi-ooxml-schemas</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.poi</groupId>
+      <artifactId>poi-scratchpad</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.tika</groupId>
+      <artifactId>tika-core</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.tika</groupId>
+      <artifactId>tika-java7</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.tika</groupId>
+      <artifactId>tika-parsers</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.tika</groupId>
+      <artifactId>tika-xmp</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.xmlbeans</groupId>
+      <artifactId>xmlbeans</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.zookeeper</groupId>
+      <artifactId>zookeeper</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.aspectj</groupId>
+      <artifactId>aspectjrt</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.bouncycastle</groupId>
+      <artifactId>bcmail-jdk15</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.bouncycastle</groupId>
+      <artifactId>bcprov-jdk15</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.ccil.cowan.tagsoup</groupId>
+      <artifactId>tagsoup</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.codehaus.janino</groupId>
+      <artifactId>commons-compiler</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.codehaus.janino</groupId>
+      <artifactId>janino</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.codehaus.woodstox</groupId>
+      <artifactId>stax2-api</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.codehaus.woodstox</groupId>
+      <artifactId>woodstox-core-asl</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.eclipse.jetty</groupId>
+      <artifactId>jetty-continuation</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.eclipse.jetty</groupId>
+      <artifactId>jetty-deploy</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.eclipse.jetty</groupId>
+      <artifactId>jetty-http</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.eclipse.jetty</groupId>
+      <artifactId>jetty-io</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.eclipse.jetty</groupId>
+      <artifactId>jetty-jmx</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.eclipse.jetty</groupId>
+      <artifactId>jetty-rewrite</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.eclipse.jetty</groupId>
+      <artifactId>jetty-security</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.eclipse.jetty</groupId>
+      <artifactId>jetty-server</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.eclipse.jetty</groupId>
+      <artifactId>jetty-servlet</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.eclipse.jetty</groupId>
+      <artifactId>jetty-servlets</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.eclipse.jetty</groupId>
+      <artifactId>jetty-util</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.eclipse.jetty</groupId>
+      <artifactId>jetty-webapp</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.eclipse.jetty</groupId>
+      <artifactId>jetty-xml</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.gagravarr</groupId>
+      <artifactId>vorbis-java-core</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.gagravarr</groupId>
+      <artifactId>vorbis-java-tika</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.kitesdk</groupId>
+      <artifactId>kite-morphlines-avro</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.kitesdk</groupId>
+      <artifactId>kite-morphlines-core</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.locationtech.spatial4j</groupId>
+      <artifactId>spatial4j</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.noggit</groupId>
+      <artifactId>noggit</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.ow2.asm</groupId>
+      <artifactId>asm</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.ow2.asm</groupId>
+      <artifactId>asm-commons</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.restlet.jee</groupId>
+      <artifactId>org.restlet</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.restlet.jee</groupId>
+      <artifactId>org.restlet.ext.servlet</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.slf4j</groupId>
+      <artifactId>jcl-over-slf4j</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.slf4j</groupId>
+      <artifactId>jul-to-slf4j</artifactId>
+      <optional>true</optional>
+    </dependency>
+    <dependency>
+      <groupId>org.slf4j</groupId>
+      <artifactId>slf4j-api</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.slf4j</groupId>
+      <artifactId>slf4j-log4j12</artifactId>
+      <optional>true</optional>
+    </dependency>
+    <dependency>
+      <groupId>org.tukaani</groupId>
+      <artifactId>xz</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>rome</groupId>
+      <artifactId>rome</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>xerces</groupId>
+      <artifactId>xercesImpl</artifactId>
+    </dependency>
+
+    <dependency>
+      <groupId>aopalliance</groupId>
+      <artifactId>aopalliance</artifactId>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>com.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-all</artifactId>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>javax.inject</groupId>
+      <artifactId>javax.inject</artifactId>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>net.bytebuddy</groupId>
+      <artifactId>byte-buddy</artifactId>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.avro</groupId>
+      <artifactId>avro</artifactId>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.curator</groupId>
+      <artifactId>curator-client</artifactId>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.curator</groupId>
+      <artifactId>curator-framework</artifactId>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.hadoop</groupId>
+      <artifactId>hadoop-common</artifactId>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.hadoop</groupId>
+      <artifactId>hadoop-common</artifactId>
+      <scope>test</scope>
+      <classifier>tests</classifier>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.hadoop</groupId>
+      <artifactId>hadoop-hdfs</artifactId>
+      <scope>test</scope>
+      <classifier>tests</classifier>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.hadoop</groupId>
+      <artifactId>hadoop-mapreduce-client-app</artifactId>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.hadoop</groupId>
+      <artifactId>hadoop-mapreduce-client-common</artifactId>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.hadoop</groupId>
+      <artifactId>hadoop-mapreduce-client-core</artifactId>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.hadoop</groupId>
+      <artifactId>hadoop-mapreduce-client-hs</artifactId>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.hadoop</groupId>
+      <artifactId>hadoop-mapreduce-client-jobclient</artifactId>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.hadoop</groupId>
+      <artifactId>hadoop-mapreduce-client-jobclient</artifactId>
+      <scope>test</scope>
+      <classifier>tests</classifier>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.hadoop</groupId>
+      <artifactId>hadoop-mapreduce-client-shuffle</artifactId>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.hadoop</groupId>
+      <artifactId>hadoop-yarn-api</artifactId>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.hadoop</groupId>
+      <artifactId>hadoop-yarn-client</artifactId>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.hadoop</groupId>
+      <artifactId>hadoop-yarn-common</artifactId>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.hadoop</groupId>
+      <artifactId>hadoop-yarn-server-applicationhistoryservice</artifactId>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.hadoop</groupId>
+      <artifactId>hadoop-yarn-server-common</artifactId>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.hadoop</groupId>
+      <artifactId>hadoop-yarn-server-nodemanager</artifactId>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.hadoop</groupId>
+      <artifactId>hadoop-yarn-server-resourcemanager</artifactId>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.hadoop</groupId>
+      <artifactId>hadoop-yarn-server-tests</artifactId>
+      <scope>test</scope>
+      <classifier>tests</classifier>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.hadoop</groupId>
+      <artifactId>hadoop-yarn-server-web-proxy</artifactId>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.htrace</groupId>
+      <artifactId>htrace-core</artifactId>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.mrunit</groupId>
+      <artifactId>mrunit</artifactId>
+      <scope>test</scope>
+      <classifier>hadoop2</classifier>
+    </dependency>
+    <dependency>
+      <groupId>org.codehaus.jackson</groupId>
+      <artifactId>jackson-core-asl</artifactId>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.codehaus.jackson</groupId>
+      <artifactId>jackson-jaxrs</artifactId>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.codehaus.jackson</groupId>
+      <artifactId>jackson-mapper-asl</artifactId>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.fusesource.leveldbjni</groupId>
+      <artifactId>leveldbjni</artifactId>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.iq80.leveldb</groupId>
+      <artifactId>leveldb</artifactId>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.iq80.leveldb</groupId>
+      <artifactId>leveldb-api</artifactId>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.kitesdk</groupId>
+      <artifactId>kite-morphlines-core</artifactId>
+      <scope>test</scope>
+      <classifier>tests</classifier>
+    </dependency>
+    <dependency>
+      <groupId>org.mockito</groupId>
+      <artifactId>mockito-core</artifactId>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.mortbay.jetty</groupId>
+      <artifactId>jetty</artifactId>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.mortbay.jetty</groupId>
+      <artifactId>jetty-util</artifactId>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.objenesis</groupId>
+      <artifactId>objenesis</artifactId>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.xerial.snappy</groupId>
+      <artifactId>snappy-java</artifactId>
+      <scope>test</scope>
+    </dependency>
+  </dependencies>
+  <build>
+    <sourceDirectory>${module-path}/src/java</sourceDirectory>
+    <testSourceDirectory>${module-path}/src/test</testSourceDirectory>
+    <testResources>
+      <testResource>
+        <directory>${module-path}/src/test-files</directory>
+      </testResource>
+      <testResource>
+        <directory>${top-level}/dev-tools/maven/solr</directory>
+        <includes>
+          <include>maven.testlogging.properties</include>
+        </includes>
+      </testResource>
+    </testResources>
+    <plugins>
+      <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>

Added: dev/lucene/lucene-solr-6.5.0-RC1-rev4b16c9a10c3c00cafaf1fc92ec3276a7bc7b8c95/solr/maven/org/apache/solr/solr-morphlines-core/6.5.0/solr-morphlines-core-6.5.0.pom.asc
==============================================================================
--- dev/lucene/lucene-solr-6.5.0-RC1-rev4b16c9a10c3c00cafaf1fc92ec3276a7bc7b8c95/solr/maven/org/apache/solr/solr-morphlines-core/6.5.0/solr-morphlines-core-6.5.0.pom.asc (added)
+++ dev/lucene/lucene-solr-6.5.0-RC1-rev4b16c9a10c3c00cafaf1fc92ec3276a7bc7b8c95/solr/maven/org/apache/solr/solr-morphlines-core/6.5.0/solr-morphlines-core-6.5.0.pom.asc Tue Mar 21 21:42:53 2017
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v2
+
+iQIcBAABCAAGBQJY0YQfAAoJEPmME8+loTXY6qYP/0hkUeSSQxSbIpjATpnv0udm
+jkK5Gx6esCamsu8c8IRfEMlfvwxYctlGnH6E0JVw0V183jZkDsZFD1SDgIsPBT0A
+Upt+n26gyVXfmA3ycQbvAUfIE8dGcVFkRzR9O+mtLHjyqet8izDYv8fT3k9Ifxeg
+DUwAz4YNjdHuH+23fZX0YrXU0Jy1ggtqMViDG1VLBWiCFX5Twmms+KovNa4MGYyd
+mBwOA+mhlwhKB4iWt/D5CgAryWolkZWF3EWYoVOOHf3YDFDDTM+/lQulekd7QrWS
+Yctd86Kfn8qshfPFiKjP/wdUEuqpn7G0zdU/KB10jmRASNsBrN7PEvFIpawQcttV
+td0TMXxa41nVJMmBuhqlKPVXB0As6T1BMU9DlBlq6jGR2RPfMp19CBXrfgZbL3FQ
+6Ng7hbNZsbX8KDUsGIxk6XXtDv5ejUkc6AH1135Qp23yiAzGGMy4fBopGhOAWXwu
+bvSMxBnCkbkT2rDD3CLHF6Tp+WA42wsrw4VdDMLHw246K2xMlr7MGYo8mQgqbkJp
+LxgKAWCY8EDw05W1gO7mSS4wU81TI25sQknFv4OMwaK4OjoNjXSTcF6r1zBDMV6V
+yFAjisaLlSo3Oq6U5ebIYI0hpZGkQ4TswApyhJ8Sm+FFUl/Rq2PcAU9VUzGGXJN7
+vaPosESOIT6TbaVr5TTU
+=B4kt
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-6.5.0-RC1-rev4b16c9a10c3c00cafaf1fc92ec3276a7bc7b8c95/solr/maven/org/apache/solr/solr-morphlines-core/6.5.0/solr-morphlines-core-6.5.0.pom.md5
==============================================================================
--- dev/lucene/lucene-solr-6.5.0-RC1-rev4b16c9a10c3c00cafaf1fc92ec3276a7bc7b8c95/solr/maven/org/apache/solr/solr-morphlines-core/6.5.0/solr-morphlines-core-6.5.0.pom.md5 (added)
+++ dev/lucene/lucene-solr-6.5.0-RC1-rev4b16c9a10c3c00cafaf1fc92ec3276a7bc7b8c95/solr/maven/org/apache/solr/solr-morphlines-core/6.5.0/solr-morphlines-core-6.5.0.pom.md5 Tue Mar 21 21:42:53 2017
@@ -0,0 +1 @@
+da9e563993a63924abded0abedd910ec
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.5.0-RC1-rev4b16c9a10c3c00cafaf1fc92ec3276a7bc7b8c95/solr/maven/org/apache/solr/solr-morphlines-core/6.5.0/solr-morphlines-core-6.5.0.pom.sha1
==============================================================================
--- dev/lucene/lucene-solr-6.5.0-RC1-rev4b16c9a10c3c00cafaf1fc92ec3276a7bc7b8c95/solr/maven/org/apache/solr/solr-morphlines-core/6.5.0/solr-morphlines-core-6.5.0.pom.sha1 (added)
+++ dev/lucene/lucene-solr-6.5.0-RC1-rev4b16c9a10c3c00cafaf1fc92ec3276a7bc7b8c95/solr/maven/org/apache/solr/solr-morphlines-core/6.5.0/solr-morphlines-core-6.5.0.pom.sha1 Tue Mar 21 21:42:53 2017
@@ -0,0 +1 @@
+8fe34bc6a4baa54a512803d1a8c522bcf27c4664
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.5.0-RC1-rev4b16c9a10c3c00cafaf1fc92ec3276a7bc7b8c95/solr/maven/org/apache/solr/solr-morphlines-core/maven-metadata.xml
==============================================================================
--- dev/lucene/lucene-solr-6.5.0-RC1-rev4b16c9a10c3c00cafaf1fc92ec3276a7bc7b8c95/solr/maven/org/apache/solr/solr-morphlines-core/maven-metadata.xml (added)
+++ dev/lucene/lucene-solr-6.5.0-RC1-rev4b16c9a10c3c00cafaf1fc92ec3276a7bc7b8c95/solr/maven/org/apache/solr/solr-morphlines-core/maven-metadata.xml Tue Mar 21 21:42:53 2017
@@ -0,0 +1,12 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<metadata>
+  <groupId>org.apache.solr</groupId>
+  <artifactId>solr-morphlines-core</artifactId>
+  <version>6.5.0</version>
+  <versioning>
+    <versions>
+      <version>6.5.0</version>
+    </versions>
+    <lastUpdated>20170321195022</lastUpdated>
+  </versioning>
+</metadata>

Added: dev/lucene/lucene-solr-6.5.0-RC1-rev4b16c9a10c3c00cafaf1fc92ec3276a7bc7b8c95/solr/maven/org/apache/solr/solr-morphlines-core/maven-metadata.xml.md5
==============================================================================
--- dev/lucene/lucene-solr-6.5.0-RC1-rev4b16c9a10c3c00cafaf1fc92ec3276a7bc7b8c95/solr/maven/org/apache/solr/solr-morphlines-core/maven-metadata.xml.md5 (added)
+++ dev/lucene/lucene-solr-6.5.0-RC1-rev4b16c9a10c3c00cafaf1fc92ec3276a7bc7b8c95/solr/maven/org/apache/solr/solr-morphlines-core/maven-metadata.xml.md5 Tue Mar 21 21:42:53 2017
@@ -0,0 +1 @@
+23a97aa19914ae282e443a04363f93e0
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.5.0-RC1-rev4b16c9a10c3c00cafaf1fc92ec3276a7bc7b8c95/solr/maven/org/apache/solr/solr-morphlines-core/maven-metadata.xml.sha1
==============================================================================
--- dev/lucene/lucene-solr-6.5.0-RC1-rev4b16c9a10c3c00cafaf1fc92ec3276a7bc7b8c95/solr/maven/org/apache/solr/solr-morphlines-core/maven-metadata.xml.sha1 (added)
+++ dev/lucene/lucene-solr-6.5.0-RC1-rev4b16c9a10c3c00cafaf1fc92ec3276a7bc7b8c95/solr/maven/org/apache/solr/solr-morphlines-core/maven-metadata.xml.sha1 Tue Mar 21 21:42:53 2017
@@ -0,0 +1 @@
+a638366676ccc9f26240244230f6f27d4b148e60
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.5.0-RC1-rev4b16c9a10c3c00cafaf1fc92ec3276a7bc7b8c95/solr/maven/org/apache/solr/solr-parent/6.5.0/solr-parent-6.5.0.pom
==============================================================================
--- dev/lucene/lucene-solr-6.5.0-RC1-rev4b16c9a10c3c00cafaf1fc92ec3276a7bc7b8c95/solr/maven/org/apache/solr/solr-parent/6.5.0/solr-parent-6.5.0.pom (added)
+++ dev/lucene/lucene-solr-6.5.0-RC1-rev4b16c9a10c3c00cafaf1fc92ec3276a7bc7b8c95/solr/maven/org/apache/solr/solr-parent/6.5.0/solr-parent-6.5.0.pom Tue Mar 21 21:42:53 2017
@@ -0,0 +1,186 @@
+<!--
+  Licensed to the Apache Software Foundation (ASF) under one
+  or more contributor license agreements.  See the NOTICE file
+  distributed with this work for additional information
+  regarding copyright ownership.  The ASF licenses this file
+  to you under the Apache License, Version 2.0 (the
+  "License"); you may not use this file except in compliance
+  with the License.  You may obtain a copy of the License at
+  
+  http://www.apache.org/licenses/LICENSE-2.0
+  
+  Unless required by applicable law or agreed to in writing,
+  software distributed under the License is distributed on an
+  "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+  KIND, either express or implied.  See the License for the
+  specific language governing permissions and limitations
+  under the License.
+-->
+<project xmlns="http://maven.apache.org/POM/4.0.0"
+         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+  <modelVersion>4.0.0</modelVersion>
+  <parent>
+    <groupId>org.apache.lucene</groupId>
+    <artifactId>lucene-solr-grandparent</artifactId>
+    <version>6.5.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:git:${vc-anonymous-base-url}</connection>
+    <developerConnection>scm:git:${vc-dev-base-url}</developerConnection>
+    <url>${vc-browse-base-url};f=${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.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>
+              <!-- for simplicty with servlet-api and commons-io checks, disable this: -->
+              <failOnUnresolvableSignatures>false</failOnUnresolvableSignatures>
+              <bundledSignatures>
+                <bundledSignature>jdk-unsafe</bundledSignature>
+                <bundledSignature>jdk-deprecated</bundledSignature>
+                <bundledSignature>jdk-non-portable</bundledSignature>
+                <bundledSignature>jdk-reflection</bundledSignature>
+                <bundledSignature>commons-io-unsafe-2.5</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/solr.txt</signaturesFile>
+              </signaturesFiles>
+            </configuration>
+            <goals>
+              <goal>check</goal>
+            </goals>
+          </execution>
+          <execution>
+            <id>solr-shared-test-check-forbidden-apis</id>
+            <configuration>
+              <!-- for simplicty with servlet-api and commons-io checks, disable this: -->
+              <failOnUnresolvableSignatures>false</failOnUnresolvableSignatures>
+              <bundledSignatures>
+                <bundledSignature>jdk-unsafe</bundledSignature>
+                <bundledSignature>jdk-deprecated</bundledSignature>
+                <bundledSignature>jdk-non-portable</bundledSignature>
+                <bundledSignature>jdk-reflection</bundledSignature>
+                <bundledSignature>commons-io-unsafe-2.5</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/solr.txt</signaturesFile>
+                <signaturesFile>${top-level}/lucene/tools/forbiddenApis/tests.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>

Added: dev/lucene/lucene-solr-6.5.0-RC1-rev4b16c9a10c3c00cafaf1fc92ec3276a7bc7b8c95/solr/maven/org/apache/solr/solr-parent/6.5.0/solr-parent-6.5.0.pom.asc
==============================================================================
--- dev/lucene/lucene-solr-6.5.0-RC1-rev4b16c9a10c3c00cafaf1fc92ec3276a7bc7b8c95/solr/maven/org/apache/solr/solr-parent/6.5.0/solr-parent-6.5.0.pom.asc (added)
+++ dev/lucene/lucene-solr-6.5.0-RC1-rev4b16c9a10c3c00cafaf1fc92ec3276a7bc7b8c95/solr/maven/org/apache/solr/solr-parent/6.5.0/solr-parent-6.5.0.pom.asc Tue Mar 21 21:42:53 2017
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v2
+
+iQIcBAABCAAGBQJY0YQfAAoJEPmME8+loTXYuYcP/3YKoGvqKTfEHeNHLUJ1y8MC
+T7wZqeY9kXdYzRFk9qs1ypEuv3o153zO6FN1IsW/mTyP7zDoUOvqMf53KsEMgYeM
++gXUtIX4MoX/1KGyEWmsMYkn6TNW5sotigkYLa+wDo1kzUJJRFtXPbO/lnZUpTnh
+4UpvXsJyFa7Iks1YF58LtOYYmpAGwDDrB5U7tsvahnr7Rj3j9QJYW4FTuOcz9M8n
+mtsb1erV/U97q0eCjHJjxx4uFZQEYnylXyANjnP3Oo51pq/Qm4hKXhOIfLLpA6+6
+ZFiiWzlRczbc/DgVFOeGUsudkhu/6Fka8PaUxhBgdICc5R2Sv4AKo2RKta48oWUm
+e0dHBOiZPzCupgbNxW9i/LT9JhVsSBF7Dgq+Kas0/tJspe/nhWgyB5fcDTA/LOAI
+cQAPKq2n90OTQGX1IVzpIgrnzZKg8BRpieH1JjMxiLnbxtxbMgkmNTyJbrX/jkg6
+i5zSfUexIIm2vxO191Xr+kBCbozE6e3dKtz4CsJGPL/R15IiBIWauCNaAuXZySB+
+tKMpwKfuLPOT1BjgQOAefAgY9K5w+UMUFkHgYZXUHtKXwEzAk28bQP18m3bxAAiV
+Fug7Ldq4TAYGdR3x6TVw0G7rz/8uRUZD2fixgN7PlcqfkwBZvZqoJhfRT6P2ZqaK
+TuGG769kv8kQAKke7rqU
+=D+YV
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-6.5.0-RC1-rev4b16c9a10c3c00cafaf1fc92ec3276a7bc7b8c95/solr/maven/org/apache/solr/solr-parent/6.5.0/solr-parent-6.5.0.pom.md5
==============================================================================
--- dev/lucene/lucene-solr-6.5.0-RC1-rev4b16c9a10c3c00cafaf1fc92ec3276a7bc7b8c95/solr/maven/org/apache/solr/solr-parent/6.5.0/solr-parent-6.5.0.pom.md5 (added)
+++ dev/lucene/lucene-solr-6.5.0-RC1-rev4b16c9a10c3c00cafaf1fc92ec3276a7bc7b8c95/solr/maven/org/apache/solr/solr-parent/6.5.0/solr-parent-6.5.0.pom.md5 Tue Mar 21 21:42:53 2017
@@ -0,0 +1 @@
+e6b20900c4c0c6a181962290ffaac477
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.5.0-RC1-rev4b16c9a10c3c00cafaf1fc92ec3276a7bc7b8c95/solr/maven/org/apache/solr/solr-parent/6.5.0/solr-parent-6.5.0.pom.sha1
==============================================================================
--- dev/lucene/lucene-solr-6.5.0-RC1-rev4b16c9a10c3c00cafaf1fc92ec3276a7bc7b8c95/solr/maven/org/apache/solr/solr-parent/6.5.0/solr-parent-6.5.0.pom.sha1 (added)
+++ dev/lucene/lucene-solr-6.5.0-RC1-rev4b16c9a10c3c00cafaf1fc92ec3276a7bc7b8c95/solr/maven/org/apache/solr/solr-parent/6.5.0/solr-parent-6.5.0.pom.sha1 Tue Mar 21 21:42:53 2017
@@ -0,0 +1 @@
+ba8a8f1610c7c4ca35a7fa9a635f3c5fc2d7748c
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.5.0-RC1-rev4b16c9a10c3c00cafaf1fc92ec3276a7bc7b8c95/solr/maven/org/apache/solr/solr-parent/maven-metadata.xml
==============================================================================
--- dev/lucene/lucene-solr-6.5.0-RC1-rev4b16c9a10c3c00cafaf1fc92ec3276a7bc7b8c95/solr/maven/org/apache/solr/solr-parent/maven-metadata.xml (added)
+++ dev/lucene/lucene-solr-6.5.0-RC1-rev4b16c9a10c3c00cafaf1fc92ec3276a7bc7b8c95/solr/maven/org/apache/solr/solr-parent/maven-metadata.xml Tue Mar 21 21:42:53 2017
@@ -0,0 +1,12 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<metadata>
+  <groupId>org.apache.solr</groupId>
+  <artifactId>solr-parent</artifactId>
+  <version>6.5.0</version>
+  <versioning>
+    <versions>
+      <version>6.5.0</version>
+    </versions>
+    <lastUpdated>20170321194934</lastUpdated>
+  </versioning>
+</metadata>

Added: dev/lucene/lucene-solr-6.5.0-RC1-rev4b16c9a10c3c00cafaf1fc92ec3276a7bc7b8c95/solr/maven/org/apache/solr/solr-parent/maven-metadata.xml.md5
==============================================================================
--- dev/lucene/lucene-solr-6.5.0-RC1-rev4b16c9a10c3c00cafaf1fc92ec3276a7bc7b8c95/solr/maven/org/apache/solr/solr-parent/maven-metadata.xml.md5 (added)
+++ dev/lucene/lucene-solr-6.5.0-RC1-rev4b16c9a10c3c00cafaf1fc92ec3276a7bc7b8c95/solr/maven/org/apache/solr/solr-parent/maven-metadata.xml.md5 Tue Mar 21 21:42:53 2017
@@ -0,0 +1 @@
+d0bd1d7ca0dd31c43d2ff33d1edca886
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.5.0-RC1-rev4b16c9a10c3c00cafaf1fc92ec3276a7bc7b8c95/solr/maven/org/apache/solr/solr-parent/maven-metadata.xml.sha1
==============================================================================
--- dev/lucene/lucene-solr-6.5.0-RC1-rev4b16c9a10c3c00cafaf1fc92ec3276a7bc7b8c95/solr/maven/org/apache/solr/solr-parent/maven-metadata.xml.sha1 (added)
+++ dev/lucene/lucene-solr-6.5.0-RC1-rev4b16c9a10c3c00cafaf1fc92ec3276a7bc7b8c95/solr/maven/org/apache/solr/solr-parent/maven-metadata.xml.sha1 Tue Mar 21 21:42:53 2017
@@ -0,0 +1 @@
+15617057266c13d556562587db89a01fb3b81a84
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.5.0-RC1-rev4b16c9a10c3c00cafaf1fc92ec3276a7bc7b8c95/solr/maven/org/apache/solr/solr-solrj/6.5.0/solr-solrj-6.5.0-javadoc.jar
==============================================================================
Binary file - no diff available.

Propchange: dev/lucene/lucene-solr-6.5.0-RC1-rev4b16c9a10c3c00cafaf1fc92ec3276a7bc7b8c95/solr/maven/org/apache/solr/solr-solrj/6.5.0/solr-solrj-6.5.0-javadoc.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: dev/lucene/lucene-solr-6.5.0-RC1-rev4b16c9a10c3c00cafaf1fc92ec3276a7bc7b8c95/solr/maven/org/apache/solr/solr-solrj/6.5.0/solr-solrj-6.5.0-javadoc.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-6.5.0-RC1-rev4b16c9a10c3c00cafaf1fc92ec3276a7bc7b8c95/solr/maven/org/apache/solr/solr-solrj/6.5.0/solr-solrj-6.5.0-javadoc.jar.asc (added)
+++ dev/lucene/lucene-solr-6.5.0-RC1-rev4b16c9a10c3c00cafaf1fc92ec3276a7bc7b8c95/solr/maven/org/apache/solr/solr-solrj/6.5.0/solr-solrj-6.5.0-javadoc.jar.asc Tue Mar 21 21:42:53 2017
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v2
+
+iQIcBAABCAAGBQJY0YQgAAoJEPmME8+loTXYpfwP/2SHXW1QYQCRC3rw5Fdp4b5R
+nANXZpZ68Zt5z+7CnvNYelvnmWav28jarnsNN7N/Uhut0kLRCK2umPIKPWCGQ/Q+
+GaCeVyMcZg5W7+f90RZNM2E5f5PdTdxYV5knOd4p/+FfceQRBn5/nXlFQIGUh869
+IPS+gr9kv2Beiar9B5O/JPvuS9cA4nTsyJaBtN0KI8Db3wAGnalis1QEdKMAOBo8
+qbqVHAwFzskl4XKYfSCImIvawvrMBAm5izXLNFYMdJtxdGYMu/zCOAS3II4ZgUdo
+o9dga+JPO1cFWh0DbS8mn7F5Ei6Mo+0+pXSD/9COYWTNAydxMmzA2jzE3ipcENhi
+57jgMkXtEB/E0q61qFbb5+8Lvl+LLxPmG11eBscDeity1rRaJkDG9TT1VmOFna1a
+4/xBQxGgWlCZJo51iVxY6/aNnLKlTTGlfsLeYZZdU7e+KD74eb7wkZV8sISPkZwN
+0qG7IHKsk9vvRdWOs1mnAncRTPBPxL02cVNwavDPfKQkg6Nsi22Ks1R8L/oAM3DV
+esbBExP1ySkiDpzX5EPdPkLMckRcuYCr4TftYlICErPX+nETK4MHsIfXz8YX/vUx
+tGTeMtS6P02l6x/qjjLbuyLRGJFpT4380MsV4WDK9I9a9OEeocSj0HHlv2LP0s6V
+Cbzqzngc/V1dKyRQQye9
+=qswP
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-6.5.0-RC1-rev4b16c9a10c3c00cafaf1fc92ec3276a7bc7b8c95/solr/maven/org/apache/solr/solr-solrj/6.5.0/solr-solrj-6.5.0-javadoc.jar.md5
==============================================================================
--- dev/lucene/lucene-solr-6.5.0-RC1-rev4b16c9a10c3c00cafaf1fc92ec3276a7bc7b8c95/solr/maven/org/apache/solr/solr-solrj/6.5.0/solr-solrj-6.5.0-javadoc.jar.md5 (added)
+++ dev/lucene/lucene-solr-6.5.0-RC1-rev4b16c9a10c3c00cafaf1fc92ec3276a7bc7b8c95/solr/maven/org/apache/solr/solr-solrj/6.5.0/solr-solrj-6.5.0-javadoc.jar.md5 Tue Mar 21 21:42:53 2017
@@ -0,0 +1 @@
+77122adc8a6f3d8b5852f5336113290b
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.5.0-RC1-rev4b16c9a10c3c00cafaf1fc92ec3276a7bc7b8c95/solr/maven/org/apache/solr/solr-solrj/6.5.0/solr-solrj-6.5.0-javadoc.jar.sha1
==============================================================================
--- dev/lucene/lucene-solr-6.5.0-RC1-rev4b16c9a10c3c00cafaf1fc92ec3276a7bc7b8c95/solr/maven/org/apache/solr/solr-solrj/6.5.0/solr-solrj-6.5.0-javadoc.jar.sha1 (added)
+++ dev/lucene/lucene-solr-6.5.0-RC1-rev4b16c9a10c3c00cafaf1fc92ec3276a7bc7b8c95/solr/maven/org/apache/solr/solr-solrj/6.5.0/solr-solrj-6.5.0-javadoc.jar.sha1 Tue Mar 21 21:42:53 2017
@@ -0,0 +1 @@
+9e76fdfaf8b98d1f465a099f25efe28cac2eef04
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.5.0-RC1-rev4b16c9a10c3c00cafaf1fc92ec3276a7bc7b8c95/solr/maven/org/apache/solr/solr-solrj/6.5.0/solr-solrj-6.5.0-sources.jar
==============================================================================
Binary file - no diff available.

Propchange: dev/lucene/lucene-solr-6.5.0-RC1-rev4b16c9a10c3c00cafaf1fc92ec3276a7bc7b8c95/solr/maven/org/apache/solr/solr-solrj/6.5.0/solr-solrj-6.5.0-sources.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: dev/lucene/lucene-solr-6.5.0-RC1-rev4b16c9a10c3c00cafaf1fc92ec3276a7bc7b8c95/solr/maven/org/apache/solr/solr-solrj/6.5.0/solr-solrj-6.5.0-sources.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-6.5.0-RC1-rev4b16c9a10c3c00cafaf1fc92ec3276a7bc7b8c95/solr/maven/org/apache/solr/solr-solrj/6.5.0/solr-solrj-6.5.0-sources.jar.asc (added)
+++ dev/lucene/lucene-solr-6.5.0-RC1-rev4b16c9a10c3c00cafaf1fc92ec3276a7bc7b8c95/solr/maven/org/apache/solr/solr-solrj/6.5.0/solr-solrj-6.5.0-sources.jar.asc Tue Mar 21 21:42:53 2017
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v2
+
+iQIcBAABCAAGBQJY0YQgAAoJEPmME8+loTXY0SQP/i40OoRS1UrzdEzQ5dEw/hPD
+9Fxs3SJWPCU60kv9tsi3copSgVZdewJVNHfa6/hfH8SS/wxYw7itkTtEwaJzOh4R
+vl40NTbsYGSjspkWdjnZIVE3omE6D7VP49r/PH2ChVnEYrdJ73ghtDx2dRMp9oOY
+U9AudVTxGnrI9wlh7TAA4zrarUAPTwoqM3erlO5DSArUKjOzD+OtdHiaO90tGWmc
+6P/spc0NqTY5MphrKDpqe1Y0z5pzrSoMU5FeJV3Txox1tMhlSrQFd4AB3CCt4oRq
+QQEoZX7jKiqkbF32QNknz0yjztH1oja4R+3kJvd/ZuvETugRpMCXaU/wdYKO8ZJL
+asRV8aD0hQqKzgHd/YRI83Lmg1YOpmSZnThKEJTQwleJLGLJ1aoqXAAzvwmZ29Hx
+KRMKnFLpQ21e4hGjTv6VBxAYldGvr4tXACLJXUSq8thNvgqOhlXVvtokxzORYbL9
+3OcavlNjcvCHG1vPeBW6YCRCKp7QeKHyKJC3uHn643+NQBDgNkuHM497wUwaAUBS
+XKiC5YCsXuhgVt0LJ4J1eB9JSl2Rrcy8UvYgcpbgzThSFnAMmwqcerWF3tMn+tMh
+YcaCDPZLZxwLetjsZ8m/kNcazrRanDOHr2l/KZNs0kvzoYztkra1LB6QNnvr1Efm
+ZWkhWVJFIyY/E/ZSzqkG
+=AKHh
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-6.5.0-RC1-rev4b16c9a10c3c00cafaf1fc92ec3276a7bc7b8c95/solr/maven/org/apache/solr/solr-solrj/6.5.0/solr-solrj-6.5.0-sources.jar.md5
==============================================================================
--- dev/lucene/lucene-solr-6.5.0-RC1-rev4b16c9a10c3c00cafaf1fc92ec3276a7bc7b8c95/solr/maven/org/apache/solr/solr-solrj/6.5.0/solr-solrj-6.5.0-sources.jar.md5 (added)
+++ dev/lucene/lucene-solr-6.5.0-RC1-rev4b16c9a10c3c00cafaf1fc92ec3276a7bc7b8c95/solr/maven/org/apache/solr/solr-solrj/6.5.0/solr-solrj-6.5.0-sources.jar.md5 Tue Mar 21 21:42:53 2017
@@ -0,0 +1 @@
+a0dc5e0115b02dc8e6222009cf3f5aa5
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.5.0-RC1-rev4b16c9a10c3c00cafaf1fc92ec3276a7bc7b8c95/solr/maven/org/apache/solr/solr-solrj/6.5.0/solr-solrj-6.5.0-sources.jar.sha1
==============================================================================
--- dev/lucene/lucene-solr-6.5.0-RC1-rev4b16c9a10c3c00cafaf1fc92ec3276a7bc7b8c95/solr/maven/org/apache/solr/solr-solrj/6.5.0/solr-solrj-6.5.0-sources.jar.sha1 (added)
+++ dev/lucene/lucene-solr-6.5.0-RC1-rev4b16c9a10c3c00cafaf1fc92ec3276a7bc7b8c95/solr/maven/org/apache/solr/solr-solrj/6.5.0/solr-solrj-6.5.0-sources.jar.sha1 Tue Mar 21 21:42:53 2017
@@ -0,0 +1 @@
+e1fab9e8f37a4fe7cb48a9a4ad2a8ab80b50293f
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.5.0-RC1-rev4b16c9a10c3c00cafaf1fc92ec3276a7bc7b8c95/solr/maven/org/apache/solr/solr-solrj/6.5.0/solr-solrj-6.5.0.jar
==============================================================================
Binary file - no diff available.

Propchange: dev/lucene/lucene-solr-6.5.0-RC1-rev4b16c9a10c3c00cafaf1fc92ec3276a7bc7b8c95/solr/maven/org/apache/solr/solr-solrj/6.5.0/solr-solrj-6.5.0.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: dev/lucene/lucene-solr-6.5.0-RC1-rev4b16c9a10c3c00cafaf1fc92ec3276a7bc7b8c95/solr/maven/org/apache/solr/solr-solrj/6.5.0/solr-solrj-6.5.0.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-6.5.0-RC1-rev4b16c9a10c3c00cafaf1fc92ec3276a7bc7b8c95/solr/maven/org/apache/solr/solr-solrj/6.5.0/solr-solrj-6.5.0.jar.asc (added)
+++ dev/lucene/lucene-solr-6.5.0-RC1-rev4b16c9a10c3c00cafaf1fc92ec3276a7bc7b8c95/solr/maven/org/apache/solr/solr-solrj/6.5.0/solr-solrj-6.5.0.jar.asc Tue Mar 21 21:42:53 2017
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v2
+
+iQIcBAABCAAGBQJY0YQhAAoJEPmME8+loTXYANEQAJRpL0Mf/RTqGoEoaFUm2pcL
+6FuOjc7kEDJaW6r6LDZofYK2OlJlV2APtVosTjCAfMOdxQ3NLS3Qlnh+aVFW2c/t
+GKBFvupNFuAmUw3H1c8XvtRJFjhHFyz9WzjUVIN/3tBPPHJ5Mpr7Qi1kdP2+dtX8
+k4nzzNbz5pqU1hL2k38rUtKVdIywXk2+MSPnK90Zd3WCjkspMgpXlM/G+rY3J7a5
+aptmHDg/AEM3AmjnnnpV8ZBjv9zOvKhnwJlaa9Db21yop6OZtoKmERvBbELMU9gA
+RfRcCUAjY3OXIqkuoF4BSPY2CBnUxxM9GZCkyd4kzvr0zCV+Hlj8GKAp1UhRKYds
+iFES42L0bvgIGRlTIOYAkF/2eiMO+kkj4U5XdqoHAtKAfWr1snew7ZVw9GpjLOEK
+m57GnJZulo9lb0j9zdkzR11qKgyXf3Ln3+mSQjSo7grh/ffLtoE7A+7uJFgndGsu
+tmDJmw6Vbb3oXtC+3dsSz1JS7EfuCxB7bGdRsQ9bdXKjLkGX8YRVQyefc31VkVAF
+UGElJT95CMCjWVUmJ2cgMlsxAAMOyUx98Pl6s6OJAAJMrY0k03IGkHGwkUEzHs2J
+n3V8zT83qcdCQe9grbvVwrEXdfsXHIwEFaEXKDMW4q02fDLrajwdnxdSscvFfiVy
+aigo0Earu3I55dP4htws
+=ROL4
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-6.5.0-RC1-rev4b16c9a10c3c00cafaf1fc92ec3276a7bc7b8c95/solr/maven/org/apache/solr/solr-solrj/6.5.0/solr-solrj-6.5.0.jar.md5
==============================================================================
--- dev/lucene/lucene-solr-6.5.0-RC1-rev4b16c9a10c3c00cafaf1fc92ec3276a7bc7b8c95/solr/maven/org/apache/solr/solr-solrj/6.5.0/solr-solrj-6.5.0.jar.md5 (added)
+++ dev/lucene/lucene-solr-6.5.0-RC1-rev4b16c9a10c3c00cafaf1fc92ec3276a7bc7b8c95/solr/maven/org/apache/solr/solr-solrj/6.5.0/solr-solrj-6.5.0.jar.md5 Tue Mar 21 21:42:53 2017
@@ -0,0 +1 @@
+67bc075d490e5e2aa543c7603dfc7ab9
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.5.0-RC1-rev4b16c9a10c3c00cafaf1fc92ec3276a7bc7b8c95/solr/maven/org/apache/solr/solr-solrj/6.5.0/solr-solrj-6.5.0.jar.sha1
==============================================================================
--- dev/lucene/lucene-solr-6.5.0-RC1-rev4b16c9a10c3c00cafaf1fc92ec3276a7bc7b8c95/solr/maven/org/apache/solr/solr-solrj/6.5.0/solr-solrj-6.5.0.jar.sha1 (added)
+++ dev/lucene/lucene-solr-6.5.0-RC1-rev4b16c9a10c3c00cafaf1fc92ec3276a7bc7b8c95/solr/maven/org/apache/solr/solr-solrj/6.5.0/solr-solrj-6.5.0.jar.sha1 Tue Mar 21 21:42:53 2017
@@ -0,0 +1 @@
+ed4ca06c007898374506cf3b0a493ffd738336ae
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.5.0-RC1-rev4b16c9a10c3c00cafaf1fc92ec3276a7bc7b8c95/solr/maven/org/apache/solr/solr-solrj/6.5.0/solr-solrj-6.5.0.pom
==============================================================================
--- dev/lucene/lucene-solr-6.5.0-RC1-rev4b16c9a10c3c00cafaf1fc92ec3276a7bc7b8c95/solr/maven/org/apache/solr/solr-solrj/6.5.0/solr-solrj-6.5.0.pom (added)
+++ dev/lucene/lucene-solr-6.5.0-RC1-rev4b16c9a10c3c00cafaf1fc92ec3276a7bc7b8c95/solr/maven/org/apache/solr/solr-solrj/6.5.0/solr-solrj-6.5.0.pom Tue Mar 21 21:42:53 2017
@@ -0,0 +1,117 @@
+<!--
+  Licensed to the Apache Software Foundation (ASF) under one
+  or more contributor license agreements.  See the NOTICE file
+  distributed with this work for additional information
+  regarding copyright ownership.  The ASF licenses this file
+  to you under the Apache License, Version 2.0 (the
+  "License"); you may not use this file except in compliance
+  with the License.  You may obtain a copy of the License at
+  
+  http://www.apache.org/licenses/LICENSE-2.0
+  
+  Unless required by applicable law or agreed to in writing,
+  software distributed under the License is distributed on an
+  "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+  KIND, either express or implied.  See the License for the
+  specific language governing permissions and limitations
+  under the License.
+-->
+<project xmlns="http://maven.apache.org/POM/4.0.0"
+         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+  <modelVersion>4.0.0</modelVersion>
+  <parent>
+    <groupId>org.apache.solr</groupId>
+    <artifactId>solr-parent</artifactId>
+    <version>6.5.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:git:${vc-anonymous-base-url}</connection>
+    <developerConnection>scm:git:${vc-dev-base-url}</developerConnection>
+    <url>${vc-browse-base-url};f=${module-directory}</url>
+  </scm>
+  <dependencies>
+
+    <dependency>
+      <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>jcl-over-slf4j</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-test-check-forbidden-apis</id>
+            <phase>none</phase> <!-- Block inherited execution -->
+          </execution>
+        </executions>
+      </plugin>
+    </plugins>
+  </build>
+</project>

Added: dev/lucene/lucene-solr-6.5.0-RC1-rev4b16c9a10c3c00cafaf1fc92ec3276a7bc7b8c95/solr/maven/org/apache/solr/solr-solrj/6.5.0/solr-solrj-6.5.0.pom.asc
==============================================================================
--- dev/lucene/lucene-solr-6.5.0-RC1-rev4b16c9a10c3c00cafaf1fc92ec3276a7bc7b8c95/solr/maven/org/apache/solr/solr-solrj/6.5.0/solr-solrj-6.5.0.pom.asc (added)
+++ dev/lucene/lucene-solr-6.5.0-RC1-rev4b16c9a10c3c00cafaf1fc92ec3276a7bc7b8c95/solr/maven/org/apache/solr/solr-solrj/6.5.0/solr-solrj-6.5.0.pom.asc Tue Mar 21 21:42:53 2017
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v2
+
+iQIcBAABCAAGBQJY0YQhAAoJEPmME8+loTXYIK0P/A17t8Fn0FijRaE09nxEw9/M
+NXxJ8bwGNptyadcHna1UV9JNsBGgYEO2t5ItVPmFDxdF70xKw53aFlyky3j36IFO
+LkrY93jI6fwqfKlYgS70pMJVb3kI6uc1Jxgz6XtcVNy03M+MpRNZNkPPRpDnZNCt
+u+nPPw+7nBDeLxqdD1/CKmSWDTEdyYU/VAOWYh5em1nrsXZIFxuCoOqGEH10NLJR
+kLYiT+YalBfnckohL1PqGwQXNml4dAOn+gMknQHXuL+HxAXoc/NuVcT+2T80FGGB
+gnD0DGyR94P5gBFj3C3wpsug8i8rlbg40XCeWS523yVYVpEer0zHgVSYMPvf73v5
+wGqxiqJciqexIPJWJuNRGU3jsAPjiNkhGvmfWDV9H451XGoYsHuz4aXUbHQVGfL9
+tiClhpt+WT9UFpCGUX4SxyoPNOHTqKTkgvT86md4CKYELbZhwU0JJkQdF9aWC8R5
+yST8v7j2V2oZbAMlHJWZsQpeqVZix7ccQ5EgeyCZb6rPz0C+k7eqwPY5W43DxP/q
+VtEP+skiJmX+8YuqMRpnBCmLahVu0NRKw4BNKK84P8/vsWZ0MBkoJvIrhfMD3WQR
+mHHbLg6Gz8sVK28a5r+kdpYMzmqkTcANvPHoSoXA53viz175HprhfORk6QwS5UWV
+c4V4vCzMjzifnDMM24DI
+=+9jO
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-6.5.0-RC1-rev4b16c9a10c3c00cafaf1fc92ec3276a7bc7b8c95/solr/maven/org/apache/solr/solr-solrj/6.5.0/solr-solrj-6.5.0.pom.md5
==============================================================================
--- dev/lucene/lucene-solr-6.5.0-RC1-rev4b16c9a10c3c00cafaf1fc92ec3276a7bc7b8c95/solr/maven/org/apache/solr/solr-solrj/6.5.0/solr-solrj-6.5.0.pom.md5 (added)
+++ dev/lucene/lucene-solr-6.5.0-RC1-rev4b16c9a10c3c00cafaf1fc92ec3276a7bc7b8c95/solr/maven/org/apache/solr/solr-solrj/6.5.0/solr-solrj-6.5.0.pom.md5 Tue Mar 21 21:42:53 2017
@@ -0,0 +1 @@
+05795f94ab9b734919214347ae7e1ce7
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.5.0-RC1-rev4b16c9a10c3c00cafaf1fc92ec3276a7bc7b8c95/solr/maven/org/apache/solr/solr-solrj/6.5.0/solr-solrj-6.5.0.pom.sha1
==============================================================================
--- dev/lucene/lucene-solr-6.5.0-RC1-rev4b16c9a10c3c00cafaf1fc92ec3276a7bc7b8c95/solr/maven/org/apache/solr/solr-solrj/6.5.0/solr-solrj-6.5.0.pom.sha1 (added)
+++ dev/lucene/lucene-solr-6.5.0-RC1-rev4b16c9a10c3c00cafaf1fc92ec3276a7bc7b8c95/solr/maven/org/apache/solr/solr-solrj/6.5.0/solr-solrj-6.5.0.pom.sha1 Tue Mar 21 21:42:53 2017
@@ -0,0 +1 @@
+ce0d7cc9013d680e1c9c231a99202669b13a6ad8
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.5.0-RC1-rev4b16c9a10c3c00cafaf1fc92ec3276a7bc7b8c95/solr/maven/org/apache/solr/solr-solrj/maven-metadata.xml
==============================================================================
--- dev/lucene/lucene-solr-6.5.0-RC1-rev4b16c9a10c3c00cafaf1fc92ec3276a7bc7b8c95/solr/maven/org/apache/solr/solr-solrj/maven-metadata.xml (added)
+++ dev/lucene/lucene-solr-6.5.0-RC1-rev4b16c9a10c3c00cafaf1fc92ec3276a7bc7b8c95/solr/maven/org/apache/solr/solr-solrj/maven-metadata.xml Tue Mar 21 21:42:53 2017
@@ -0,0 +1,12 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<metadata>
+  <groupId>org.apache.solr</groupId>
+  <artifactId>solr-solrj</artifactId>
+  <version>6.5.0</version>
+  <versioning>
+    <versions>
+      <version>6.5.0</version>
+    </versions>
+    <lastUpdated>20170321194938</lastUpdated>
+  </versioning>
+</metadata>

Added: dev/lucene/lucene-solr-6.5.0-RC1-rev4b16c9a10c3c00cafaf1fc92ec3276a7bc7b8c95/solr/maven/org/apache/solr/solr-solrj/maven-metadata.xml.md5
==============================================================================
--- dev/lucene/lucene-solr-6.5.0-RC1-rev4b16c9a10c3c00cafaf1fc92ec3276a7bc7b8c95/solr/maven/org/apache/solr/solr-solrj/maven-metadata.xml.md5 (added)
+++ dev/lucene/lucene-solr-6.5.0-RC1-rev4b16c9a10c3c00cafaf1fc92ec3276a7bc7b8c95/solr/maven/org/apache/solr/solr-solrj/maven-metadata.xml.md5 Tue Mar 21 21:42:53 2017
@@ -0,0 +1 @@
+5b704690356d8e9afee29101813ec321
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.5.0-RC1-rev4b16c9a10c3c00cafaf1fc92ec3276a7bc7b8c95/solr/maven/org/apache/solr/solr-solrj/maven-metadata.xml.sha1
==============================================================================
--- dev/lucene/lucene-solr-6.5.0-RC1-rev4b16c9a10c3c00cafaf1fc92ec3276a7bc7b8c95/solr/maven/org/apache/solr/solr-solrj/maven-metadata.xml.sha1 (added)
+++ dev/lucene/lucene-solr-6.5.0-RC1-rev4b16c9a10c3c00cafaf1fc92ec3276a7bc7b8c95/solr/maven/org/apache/solr/solr-solrj/maven-metadata.xml.sha1 Tue Mar 21 21:42:53 2017
@@ -0,0 +1 @@
+42e5c86513e9b5ee38576f043398cc725c6d097e
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.5.0-RC1-rev4b16c9a10c3c00cafaf1fc92ec3276a7bc7b8c95/solr/maven/org/apache/solr/solr-test-framework/6.5.0/solr-test-framework-6.5.0-javadoc.jar
==============================================================================
Binary file - no diff available.

Propchange: dev/lucene/lucene-solr-6.5.0-RC1-rev4b16c9a10c3c00cafaf1fc92ec3276a7bc7b8c95/solr/maven/org/apache/solr/solr-test-framework/6.5.0/solr-test-framework-6.5.0-javadoc.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: dev/lucene/lucene-solr-6.5.0-RC1-rev4b16c9a10c3c00cafaf1fc92ec3276a7bc7b8c95/solr/maven/org/apache/solr/solr-test-framework/6.5.0/solr-test-framework-6.5.0-javadoc.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-6.5.0-RC1-rev4b16c9a10c3c00cafaf1fc92ec3276a7bc7b8c95/solr/maven/org/apache/solr/solr-test-framework/6.5.0/solr-test-framework-6.5.0-javadoc.jar.asc (added)
+++ dev/lucene/lucene-solr-6.5.0-RC1-rev4b16c9a10c3c00cafaf1fc92ec3276a7bc7b8c95/solr/maven/org/apache/solr/solr-test-framework/6.5.0/solr-test-framework-6.5.0-javadoc.jar.asc Tue Mar 21 21:42:53 2017
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v2
+
+iQIcBAABCAAGBQJY0YQiAAoJEPmME8+loTXYUHcP/jl/6nukwRNlrNKF6lZXz6iD
+5rziRHcr+N65g5lBllY2xDyFAQh0EeLqJaAr2F/07RPkG6FvqbluUb93Dgw8TyJv
+LrJ5A2tCnvXDUAVZKbXW+k68CJ8JixtZd2yHkiOLJtzGuSrI99/jfIc+yfrW8e8m
+rkA0zGpqM6PEynGOWUMKQ707LnroNOKayCmPiLuYKZ2y0HlPtrnVK6ETGnM56aya
+HK9RUyZfLxTIqCmyXXaTJKt2Zg1iQzvFjBW/bMrzaDvxQlyu6SSBIh5BaCB2u3ko
+f4BFet5lIMxXJcDy+woAwxZLvGL0QtbfTzfc1rsKbcNVr0dHsI25N+D/EtJ2B2VL
+Ijl4FIA7vy4zwXRuGCXVPFC4KLVqNZkXh9SFaaHL7F2oyuhRQfYHqXYAbHNdR0ra
+gXpL/jvzA2BXzOVuGwpCGcu6RvBxjNChAIs5VBi3TLecTV4LmQj8UVU3QGmG7ZIh
+7hHX0urilCcQxaY42sMZ+nn/k8NHNYsJUEl1eP4qYrYI+bJUjla6UbY/50SAD/oN
+B3mjUk0MmdSdZTzRBwkgfRexwiN+8vaj2jAMh6+y44bJBpk4s6U1pDGgwafFp/AX
+Onv+/yJcUuXEzVfc+ORCnqUAsFzqgnXTqi58Xwq/GEKTAgoBokB/AkilxgeYx6/i
++mikVmll9uXZWN5XmlZJ
+=0vDh
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-6.5.0-RC1-rev4b16c9a10c3c00cafaf1fc92ec3276a7bc7b8c95/solr/maven/org/apache/solr/solr-test-framework/6.5.0/solr-test-framework-6.5.0-javadoc.jar.md5
==============================================================================
--- dev/lucene/lucene-solr-6.5.0-RC1-rev4b16c9a10c3c00cafaf1fc92ec3276a7bc7b8c95/solr/maven/org/apache/solr/solr-test-framework/6.5.0/solr-test-framework-6.5.0-javadoc.jar.md5 (added)
+++ dev/lucene/lucene-solr-6.5.0-RC1-rev4b16c9a10c3c00cafaf1fc92ec3276a7bc7b8c95/solr/maven/org/apache/solr/solr-test-framework/6.5.0/solr-test-framework-6.5.0-javadoc.jar.md5 Tue Mar 21 21:42:53 2017
@@ -0,0 +1 @@
+3bcb7aff6e031f273307153e4b37c10d
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.5.0-RC1-rev4b16c9a10c3c00cafaf1fc92ec3276a7bc7b8c95/solr/maven/org/apache/solr/solr-test-framework/6.5.0/solr-test-framework-6.5.0-javadoc.jar.sha1
==============================================================================
--- dev/lucene/lucene-solr-6.5.0-RC1-rev4b16c9a10c3c00cafaf1fc92ec3276a7bc7b8c95/solr/maven/org/apache/solr/solr-test-framework/6.5.0/solr-test-framework-6.5.0-javadoc.jar.sha1 (added)
+++ dev/lucene/lucene-solr-6.5.0-RC1-rev4b16c9a10c3c00cafaf1fc92ec3276a7bc7b8c95/solr/maven/org/apache/solr/solr-test-framework/6.5.0/solr-test-framework-6.5.0-javadoc.jar.sha1 Tue Mar 21 21:42:53 2017
@@ -0,0 +1 @@
+8816a3f013eddbbd83bf4711c1976842ef06130f
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.5.0-RC1-rev4b16c9a10c3c00cafaf1fc92ec3276a7bc7b8c95/solr/maven/org/apache/solr/solr-test-framework/6.5.0/solr-test-framework-6.5.0-sources.jar
==============================================================================
Binary file - no diff available.

Propchange: dev/lucene/lucene-solr-6.5.0-RC1-rev4b16c9a10c3c00cafaf1fc92ec3276a7bc7b8c95/solr/maven/org/apache/solr/solr-test-framework/6.5.0/solr-test-framework-6.5.0-sources.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: dev/lucene/lucene-solr-6.5.0-RC1-rev4b16c9a10c3c00cafaf1fc92ec3276a7bc7b8c95/solr/maven/org/apache/solr/solr-test-framework/6.5.0/solr-test-framework-6.5.0-sources.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-6.5.0-RC1-rev4b16c9a10c3c00cafaf1fc92ec3276a7bc7b8c95/solr/maven/org/apache/solr/solr-test-framework/6.5.0/solr-test-framework-6.5.0-sources.jar.asc (added)
+++ dev/lucene/lucene-solr-6.5.0-RC1-rev4b16c9a10c3c00cafaf1fc92ec3276a7bc7b8c95/solr/maven/org/apache/solr/solr-test-framework/6.5.0/solr-test-framework-6.5.0-sources.jar.asc Tue Mar 21 21:42:53 2017
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v2
+
+iQIcBAABCAAGBQJY0YQiAAoJEPmME8+loTXY0AoQAJLXUZcKgZBmgo067QQguyFd
+qm5NcCqWWAEFjV2KiRbd8tmmyGwFDpJQHqVASJJwxKxSpLE99L31IanbYqybvquT
+dPUVGORfAeswdf0R2VfaGKGT0PQQTkKlz/pm0Yf2uFuSpARXoGRICVzWPV5o/zAW
+O48qlFXbqTEVEeUOSg/b4ZkXwJc1TbVvE8SHatBd2MjCEos6vSDbqDnOrG6Uek89
+r3+v1aXoPGYNTelffqgdyaFwWW1GPIu7LFj/HwD89uionwFoiGzaEp0xWbLWYj1E
+/SlVFH7NltcM8a12RnJ5cH+ZX4zMIZOt/B+DXGZkAzWqf8Nv8zIDAUYVdjpqS5BI
+gFw1ud2yIiKncLHkEOOA/9waI2tk3ESPgTKSqX56ewTeX6ZDvn0g9ZszLRu/NpDE
+ZO/vmkO9PlqiKY6C4xDqWJaLzLUOIm6+vk5GG5SbDEqi58cS2+SoXnVlks+zoQOz
+cGky3STWJsyx+pxGfmJMvotFq7goZmbkzZQqa9qCw8owvuJkdEzci/xd1/EgVshL
+lwqiUq0CJmbL3qLbb2j/aZl0rxPKLR3+Aps73NrsRP/SWQw8yAYgoj2380ybpAtN
+mGZt4JP5qovzsTZ/Ry90Dy4ttO0aKZsDSNxlZSoAwngvk6WTb80r4OXW4mHKC0Ty
+WZrWD4KdwpjYeEQpNjwz
+=5lQM
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-6.5.0-RC1-rev4b16c9a10c3c00cafaf1fc92ec3276a7bc7b8c95/solr/maven/org/apache/solr/solr-test-framework/6.5.0/solr-test-framework-6.5.0-sources.jar.md5
==============================================================================
--- dev/lucene/lucene-solr-6.5.0-RC1-rev4b16c9a10c3c00cafaf1fc92ec3276a7bc7b8c95/solr/maven/org/apache/solr/solr-test-framework/6.5.0/solr-test-framework-6.5.0-sources.jar.md5 (added)
+++ dev/lucene/lucene-solr-6.5.0-RC1-rev4b16c9a10c3c00cafaf1fc92ec3276a7bc7b8c95/solr/maven/org/apache/solr/solr-test-framework/6.5.0/solr-test-framework-6.5.0-sources.jar.md5 Tue Mar 21 21:42:53 2017
@@ -0,0 +1 @@
+9940cf7725abbe8d13a98876f410f876
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.5.0-RC1-rev4b16c9a10c3c00cafaf1fc92ec3276a7bc7b8c95/solr/maven/org/apache/solr/solr-test-framework/6.5.0/solr-test-framework-6.5.0-sources.jar.sha1
==============================================================================
--- dev/lucene/lucene-solr-6.5.0-RC1-rev4b16c9a10c3c00cafaf1fc92ec3276a7bc7b8c95/solr/maven/org/apache/solr/solr-test-framework/6.5.0/solr-test-framework-6.5.0-sources.jar.sha1 (added)
+++ dev/lucene/lucene-solr-6.5.0-RC1-rev4b16c9a10c3c00cafaf1fc92ec3276a7bc7b8c95/solr/maven/org/apache/solr/solr-test-framework/6.5.0/solr-test-framework-6.5.0-sources.jar.sha1 Tue Mar 21 21:42:53 2017
@@ -0,0 +1 @@
+2f79bc96a127e66dc63728524bc9ccf71f0c97fc
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.5.0-RC1-rev4b16c9a10c3c00cafaf1fc92ec3276a7bc7b8c95/solr/maven/org/apache/solr/solr-test-framework/6.5.0/solr-test-framework-6.5.0.jar
==============================================================================
Binary file - no diff available.

Propchange: dev/lucene/lucene-solr-6.5.0-RC1-rev4b16c9a10c3c00cafaf1fc92ec3276a7bc7b8c95/solr/maven/org/apache/solr/solr-test-framework/6.5.0/solr-test-framework-6.5.0.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: dev/lucene/lucene-solr-6.5.0-RC1-rev4b16c9a10c3c00cafaf1fc92ec3276a7bc7b8c95/solr/maven/org/apache/solr/solr-test-framework/6.5.0/solr-test-framework-6.5.0.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-6.5.0-RC1-rev4b16c9a10c3c00cafaf1fc92ec3276a7bc7b8c95/solr/maven/org/apache/solr/solr-test-framework/6.5.0/solr-test-framework-6.5.0.jar.asc (added)
+++ dev/lucene/lucene-solr-6.5.0-RC1-rev4b16c9a10c3c00cafaf1fc92ec3276a7bc7b8c95/solr/maven/org/apache/solr/solr-test-framework/6.5.0/solr-test-framework-6.5.0.jar.asc Tue Mar 21 21:42:53 2017
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v2
+
+iQIcBAABCAAGBQJY0YQjAAoJEPmME8+loTXYU54QAKpcxWbGcFmIdfCmjtao1mp6
+2dxSXxupqRf3YeWTIHq/nz1XtEKTttz5EHCAC+qr868u0fGj2Dpjv6y1QYGQxU0s
+iMafBdE2jaTy34OiemWH+k91hF/rpAsG6yGkGXjlslEW0ygizf74zseekd29TGqi
+ZSjLMF2VO6dtkKB756Jpyir59cJUz0ZDWRZXy0fLTD9gCdVdTFRI3Yo1YTo+yjbi
+yZtSeoCf8yT2xz+xwW9orUHPzK+URr9T5g7TGCvCQY//e0cwom828DhOHgR8eixn
+t34PypOfkYAOqz6DexMzviemNGYk70pF2W9/8bwB21o6LuBLg/KDlqTs3jQJXMNK
+rEzsWS4r/WLDDylG2OJGo151/URvEhvYciAgZ0w/1jR/fLQyvn4jYaDmFexg7pXt
+Ode254NKQGn1+Ewo2Vc8z5H2uC2Tn/yOm+mcGHmmr4ZSTbiFQ6DQ+fc9/ti6uK3d
+AwXYv46Z9jeA/Gbiuaz1755uijkaBXUF99kVpBSMUpHbpqwxL7/fnR8AJSze9sFg
+uI6wuvMTdeO6ZK6QfIbF8x8He3iv4+VrQLFpMjqf178duv5QFouCQDIFLFAvrBpu
+MFI2mG/+oaSWuiuQRwP6bDcpbKWxdzMwVOcnfDCCD01d67UhJCayrMXLlZqY2HO2
+j2P6o3Xukb7SR6lEJOiK
+=UVUo
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-6.5.0-RC1-rev4b16c9a10c3c00cafaf1fc92ec3276a7bc7b8c95/solr/maven/org/apache/solr/solr-test-framework/6.5.0/solr-test-framework-6.5.0.jar.md5
==============================================================================
--- dev/lucene/lucene-solr-6.5.0-RC1-rev4b16c9a10c3c00cafaf1fc92ec3276a7bc7b8c95/solr/maven/org/apache/solr/solr-test-framework/6.5.0/solr-test-framework-6.5.0.jar.md5 (added)
+++ dev/lucene/lucene-solr-6.5.0-RC1-rev4b16c9a10c3c00cafaf1fc92ec3276a7bc7b8c95/solr/maven/org/apache/solr/solr-test-framework/6.5.0/solr-test-framework-6.5.0.jar.md5 Tue Mar 21 21:42:53 2017
@@ -0,0 +1 @@
+44f45f87748c96ca4a786ccc6a095ff2
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.5.0-RC1-rev4b16c9a10c3c00cafaf1fc92ec3276a7bc7b8c95/solr/maven/org/apache/solr/solr-test-framework/6.5.0/solr-test-framework-6.5.0.jar.sha1
==============================================================================
--- dev/lucene/lucene-solr-6.5.0-RC1-rev4b16c9a10c3c00cafaf1fc92ec3276a7bc7b8c95/solr/maven/org/apache/solr/solr-test-framework/6.5.0/solr-test-framework-6.5.0.jar.sha1 (added)
+++ dev/lucene/lucene-solr-6.5.0-RC1-rev4b16c9a10c3c00cafaf1fc92ec3276a7bc7b8c95/solr/maven/org/apache/solr/solr-test-framework/6.5.0/solr-test-framework-6.5.0.jar.sha1 Tue Mar 21 21:42:53 2017
@@ -0,0 +1 @@
+a98f23e565957165351fa6c5976be0114a686058
\ No newline at end of file