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/04/21 11:50:12 UTC

svn commit: r19232 [21/22] - in /dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75: ./ 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.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-test-framework/6.5.1/solr-test-framework-6.5.1.pom
==============================================================================
--- dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-test-framework/6.5.1/solr-test-framework-6.5.1.pom (added)
+++ dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-test-framework/6.5.1/solr-test-framework-6.5.1.pom Fri Apr 21 11:50:09 2017
@@ -0,0 +1,487 @@
+<!--
+  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.1</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: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>
+    <!-- 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-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.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.fasterxml.jackson.core</groupId>
+      <artifactId>jackson-annotations</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.fasterxml.jackson.core</groupId>
+      <artifactId>jackson-core</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.fasterxml.jackson.core</groupId>
+      <artifactId>jackson-databind</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.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>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-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>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>net.hydromatic</groupId>
+      <artifactId>eigenbase-properties</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.antlr</groupId>
+      <artifactId>antlr4-runtime</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.ant</groupId>
+      <artifactId>ant</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-exec</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.curator</groupId>
+      <artifactId>curator-client</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.curator</groupId>
+      <artifactId>curator-framework</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-common</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.hadoop</groupId>
+      <artifactId>hadoop-hdfs</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.htrace</groupId>
+      <artifactId>htrace-core</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.httpcomponents</groupId>
+      <artifactId>httpclient</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.httpcomponents</groupId>
+      <artifactId>httpcore</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.httpcomponents</groupId>
+      <artifactId>httpmime</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.zookeeper</groupId>
+      <artifactId>zookeeper</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.codehaus.jackson</groupId>
+      <artifactId>jackson-core-asl</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.codehaus.jackson</groupId>
+      <artifactId>jackson-mapper-asl</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.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>
+
+
+  </dependencies>
+  <build>
+    <sourceDirectory>${module-path}/src/java</sourceDirectory>
+    <testSourceDirectory>${module-path}/src/test</testSourceDirectory>
+    <resources>
+      <resource>
+        <directory>${module-path}/src/resources</directory>
+      </resource>
+    </resources>
+    <testResources>
+      <testResource>
+        <directory>${module-path}/src/test-files</directory>
+      </testResource>
+    </testResources>
+    <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>
+            <goals>
+              <goal>check</goal> <!-- NOT testCheck -->
+            </goals>
+          </execution>
+        </executions>
+      </plugin>
+    </plugins>
+  </build>
+</project>

Added: dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-test-framework/6.5.1/solr-test-framework-6.5.1.pom.asc
==============================================================================
--- dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-test-framework/6.5.1/solr-test-framework-6.5.1.pom.asc (added)
+++ dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-test-framework/6.5.1/solr-test-framework-6.5.1.pom.asc Fri Apr 21 11:50:09 2017
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v2
+
+iQIcBAABCAAGBQJY+d6FAAoJEPmME8+loTXY9ZkP/jKjCeHJbdAEn5mESwJt4HQw
+AZj2ibsMGHyrB9Z/MDaT52JinOxop2kRHeotj8iIc2tOBRdW3yIvuqr4RlhKUrV2
+2v2ZSM+bpQgTR6Va+fx72MMHE/rXaOaOBVmDa1Aw7LOzNJ64bI6TdDZlN4Cs1iLa
+TgsH4f2NBsru06pc+uFTeTEmss5u9LB4/q5gGwQagbAnfTVQJZmWWfIEYGyuIH36
+oECCTe2axJj+HzoRaUmMsirtZY/vUe7UZxf6MemJmK0IXYwy4eoLg8IAkTFmIi22
+LqMxqujgHxML3tpzbGfN9HrQc2FT9x31qcZCEZIC3+HZXe5aEBEaR2sErNdhjdRK
+W79LDWfgMCzGjqE8ZLUHcwWSiOqZVQEhqGC3EuNv1ovd9gQwyVeMx+H6oc5+NSEk
+EGY8c+Kl6x0GMj4c5rXf5097TWipGmatFru+ni43txrZqY0U5lGZurRl7JlUYOQP
+TWeelerzjlrZv5dDK+bbQOMyLo016gjddIq4I9MaFfW03dv1EzjIyY+Lo8mjdWXZ
+k3SMt5Gkp1fx+r5IfCjTCzmHiBbVXALRdMlfR69BBu6GscrKL5nCfnQZnP7WAe3E
+hjs7NON74xjZ7cA8XQ+8MBTpIIsklpAQmMXyNPL7wnFo2CTPFx88BWZK+cIvHze1
+xsWlV86sdJkHSuIoafi3
+=CNt2
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-test-framework/6.5.1/solr-test-framework-6.5.1.pom.md5
==============================================================================
--- dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-test-framework/6.5.1/solr-test-framework-6.5.1.pom.md5 (added)
+++ dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-test-framework/6.5.1/solr-test-framework-6.5.1.pom.md5 Fri Apr 21 11:50:09 2017
@@ -0,0 +1 @@
+c4a9051dd55d3e78399ba087276b0bac
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-test-framework/6.5.1/solr-test-framework-6.5.1.pom.sha1
==============================================================================
--- dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-test-framework/6.5.1/solr-test-framework-6.5.1.pom.sha1 (added)
+++ dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-test-framework/6.5.1/solr-test-framework-6.5.1.pom.sha1 Fri Apr 21 11:50:09 2017
@@ -0,0 +1 @@
+b5bd2013660781072685418d08db13b103667215
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-test-framework/maven-metadata.xml
==============================================================================
--- dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-test-framework/maven-metadata.xml (added)
+++ dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-test-framework/maven-metadata.xml Fri Apr 21 11:50:09 2017
@@ -0,0 +1,12 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<metadata>
+  <groupId>org.apache.solr</groupId>
+  <artifactId>solr-test-framework</artifactId>
+  <version>6.5.1</version>
+  <versioning>
+    <versions>
+      <version>6.5.1</version>
+    </versions>
+    <lastUpdated>20170421102601</lastUpdated>
+  </versioning>
+</metadata>

Added: dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-test-framework/maven-metadata.xml.md5
==============================================================================
--- dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-test-framework/maven-metadata.xml.md5 (added)
+++ dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-test-framework/maven-metadata.xml.md5 Fri Apr 21 11:50:09 2017
@@ -0,0 +1 @@
+469b5d3114d5e633b5b5cb1b49b9a114
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-test-framework/maven-metadata.xml.sha1
==============================================================================
--- dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-test-framework/maven-metadata.xml.sha1 (added)
+++ dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-test-framework/maven-metadata.xml.sha1 Fri Apr 21 11:50:09 2017
@@ -0,0 +1 @@
+947b9af0ff31ef212f489f862b703e2069d53bbb
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-uima/6.5.1/solr-uima-6.5.1-javadoc.jar
==============================================================================
Binary file - no diff available.

Propchange: dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-uima/6.5.1/solr-uima-6.5.1-javadoc.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-uima/6.5.1/solr-uima-6.5.1-javadoc.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-uima/6.5.1/solr-uima-6.5.1-javadoc.jar.asc (added)
+++ dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-uima/6.5.1/solr-uima-6.5.1-javadoc.jar.asc Fri Apr 21 11:50:09 2017
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v2
+
+iQIcBAABCAAGBQJY+d6FAAoJEPmME8+loTXY9p8P+wfjvblzAAJjNy2AA4e7fW8j
+dzXg+yF4B5QAfeUStuL3dd8lntevudBWo0dVyObQs/Ha4xQW27kwiyhlcUHYcuee
+jqMyr/7e/cSy9uoxRtWJu9/ZvBK9m1yWRnDBv5PfbwpuWdo0QrrYHve9bCrvdbHI
+9oVz+miCpKfaOrVY25B3mpJBm8xScmOzdGGnTjGSaqII+9FNxvtmTObSxT+Qm0oU
+0H4xhhvME7rzPbWPWa5I7Lp6l9GDsgDCxHlMV8YhcvntuXukpzP7fulvaPiveT5L
+/lXcf4kov7DmMlImmyNOIEU3PDTrxynlxXILOgApFY55XkWZOZnIkVBFH1D+p74v
+JlmmtD4NP/NgKunfkrr5cjByzWuK48mi3mZdhac8wgAd4XaYTWG2BYUahZd8PNMo
+TdBPNkuwjVN9Jho8iiM3BKsYFPQhfpZGi1wbrEN8kp0Iz++U0jQL9QUf9ZP0GgMc
+KHatQay6+HgEtGdif0j7s9ttxFFk5KLqQZoGfxENiA6sE/wRGwAgGAAmkOrO0AIJ
+UvwGzZ5ntURZwTmkH+z9ouS/PPYvpxU8aHk2Mpu+7dXwoLLblqIQED45akdIwkY7
+q1GTsTYtOjCPID6ATSTL3jUQxZExxKmh5/m2L9bZZCS1GELdVjF8Jc8hflC3DIEc
+PjtwrV9CAAuRfh0L0ZOk
+=b89d
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-uima/6.5.1/solr-uima-6.5.1-javadoc.jar.md5
==============================================================================
--- dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-uima/6.5.1/solr-uima-6.5.1-javadoc.jar.md5 (added)
+++ dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-uima/6.5.1/solr-uima-6.5.1-javadoc.jar.md5 Fri Apr 21 11:50:09 2017
@@ -0,0 +1 @@
+bfb9dc96725b1455c4f1265fb1d62c42
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-uima/6.5.1/solr-uima-6.5.1-javadoc.jar.sha1
==============================================================================
--- dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-uima/6.5.1/solr-uima-6.5.1-javadoc.jar.sha1 (added)
+++ dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-uima/6.5.1/solr-uima-6.5.1-javadoc.jar.sha1 Fri Apr 21 11:50:09 2017
@@ -0,0 +1 @@
+db7806e68e75348a6d52d92134f14ecc10e59518
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-uima/6.5.1/solr-uima-6.5.1-sources.jar
==============================================================================
Binary file - no diff available.

Propchange: dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-uima/6.5.1/solr-uima-6.5.1-sources.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-uima/6.5.1/solr-uima-6.5.1-sources.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-uima/6.5.1/solr-uima-6.5.1-sources.jar.asc (added)
+++ dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-uima/6.5.1/solr-uima-6.5.1-sources.jar.asc Fri Apr 21 11:50:09 2017
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v2
+
+iQIcBAABCAAGBQJY+d6GAAoJEPmME8+loTXYq0AQANUyD8aN5aBRNbkJjZwR/tDW
+0tyjv6YT5S/VYxdiEHMCxkf1MTVBVldPCtbDHxauqmGSmvj/wmd4A+gJ1YdZAU0F
+xnQRbkmfFkZnCoTSoW+0DSolMJYerFms+TgVaNO2PV3K1mCyNYISUFTIDZkSUTR/
+LQWgIZHnosUX9kjmFeslCssbO5INZWnF90JrzE3GcoYnx1dBpPv6BQ/8X2eaz9uh
+z6W8WnoCDKgqE9xm7RX2h6WIc9Ss6wIOLp+44b9Vw2z34TIniH1ol0nvhCStFbXi
+zthCBcKB3ovNKa066OCBdLWzmrvv6k+BCnsDF/LrNXTHZEGJrfCoF1Es03mwI3Is
+++Dd+Yl+CIXVwENZGr+kdur/wECOVWry5psCzTgl0pwfSDgwjwSwOzJyKvj3dKoR
+gdXnoTGO6+hP2uD9x2omrhtFp2lCokBuJHizm6fLD+AT+YeMCTDBQcgvBcI+ksLI
+h/vBKV4p+5rrU/k4CKDvU4/pYvTW8kgajhRPFmNcF8/hv+t/DM1H94Z3KcK7mrHm
+0kCI+G0C5+V+5hoibxjaOEW+1OCrLiZXZlnq2ipXgKKqCM+DaKlSTCibW9gFmvPc
+j719MQcJAZg/naZAj/GzweFsybvz4R+lQ6nBxolk28thiUTtXFi5/tW2HwFhtBzn
+4G4VJVLAXUa12UUD5jJx
+=QYPN
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-uima/6.5.1/solr-uima-6.5.1-sources.jar.md5
==============================================================================
--- dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-uima/6.5.1/solr-uima-6.5.1-sources.jar.md5 (added)
+++ dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-uima/6.5.1/solr-uima-6.5.1-sources.jar.md5 Fri Apr 21 11:50:09 2017
@@ -0,0 +1 @@
+b7eecad513bbbc51734fca84e8239ebc
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-uima/6.5.1/solr-uima-6.5.1-sources.jar.sha1
==============================================================================
--- dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-uima/6.5.1/solr-uima-6.5.1-sources.jar.sha1 (added)
+++ dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-uima/6.5.1/solr-uima-6.5.1-sources.jar.sha1 Fri Apr 21 11:50:09 2017
@@ -0,0 +1 @@
+1424947f000935d3c7c54fccbcb5d8ff21920311
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-uima/6.5.1/solr-uima-6.5.1.jar
==============================================================================
Binary file - no diff available.

Propchange: dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-uima/6.5.1/solr-uima-6.5.1.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-uima/6.5.1/solr-uima-6.5.1.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-uima/6.5.1/solr-uima-6.5.1.jar.asc (added)
+++ dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-uima/6.5.1/solr-uima-6.5.1.jar.asc Fri Apr 21 11:50:09 2017
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v2
+
+iQIcBAABCAAGBQJY+d6GAAoJEPmME8+loTXYnCIP/isAHJ4kHkEupAuw/I5uePEG
+1eay2fOfVGB949lZzzo01tLK7PEQb/cyC99RgNLkckEc0KQNhk2x/uwowwjd8XU0
+UCPooaMHZI9tnYKf1i+YiyG0byvXtojMxexsAS8NrQmCQRbWi3DVR7q+NmNCVXSV
+87dFQJAsL9/GLvaC2lglPsPWjB7JkoFCJOiFm199HIGZhuwpb41ybJYXeQm8c8sp
+QUnLmN67c+ch8I2QdDEA32mjVfiT9Dquy9QzDvTbvTsIL+ky5wxu76YjP3n8sct9
+y+kAJu2HrgjiBbH0bdnXekQ62dogqDdMMnTD3Sdfhmmu1g7Y8xrlvttGyGJJ4bMo
+8RMj6TOGA5ocEgUzA91O+2xaA+HZR0Q3+nTwtj/06TWZ9FVFrHFF4rIfon1p9As5
+TsBBeepoYPS/8cXEIokHTiBKbv7H55GE7wfqCyMjSi7l7+4HXlVyqsxXYUx6esUT
+wggr+HJKnQfuq4g8uHjJBZqZaz3+a4Qp6ehzP8F3DEgao+It/07PK1Wfzgoyf33I
+M1+FAIE+3sSZ1FV2dIWzNnG8HyKgNtyeVNFbuipJ3e/ZV+hFrouvGhSwfJCTCYCm
+rRnGVMF8S9m2hHjFrmw/Y6444q+OUWzFCaCLptf/So88f7KNaDtTwKhcBEf6Q9jW
+orcnUjQE1CAOzqkQkGMM
+=Wih/
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-uima/6.5.1/solr-uima-6.5.1.jar.md5
==============================================================================
--- dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-uima/6.5.1/solr-uima-6.5.1.jar.md5 (added)
+++ dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-uima/6.5.1/solr-uima-6.5.1.jar.md5 Fri Apr 21 11:50:09 2017
@@ -0,0 +1 @@
+c0b6a40d09c98b8b186a34b1ff1103a6
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-uima/6.5.1/solr-uima-6.5.1.jar.sha1
==============================================================================
--- dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-uima/6.5.1/solr-uima-6.5.1.jar.sha1 (added)
+++ dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-uima/6.5.1/solr-uima-6.5.1.jar.sha1 Fri Apr 21 11:50:09 2017
@@ -0,0 +1 @@
+8c0f1aa4ec2aa69fd2ac63c8229b6c807d8e3361
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-uima/6.5.1/solr-uima-6.5.1.pom
==============================================================================
--- dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-uima/6.5.1/solr-uima-6.5.1.pom (added)
+++ dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-uima/6.5.1/solr-uima-6.5.1.pom Fri Apr 21 11:50:09 2017
@@ -0,0 +1,483 @@
+<!--
+  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.1</version>
+    <relativePath>../../pom.xml</relativePath>
+  </parent>
+  <groupId>org.apache.solr</groupId>
+  <artifactId>solr-uima</artifactId>
+  <packaging>jar</packaging>
+  <name>Apache Solr UIMA integration</name>
+  <description>Apache Solr - UIMA integration</description>
+  <properties>
+    <module-directory>solr/contrib/uima</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-analyzers-uima</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-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.fasterxml.jackson.core</groupId>
+      <artifactId>jackson-annotations</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.fasterxml.jackson.core</groupId>
+      <artifactId>jackson-core</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.fasterxml.jackson.core</groupId>
+      <artifactId>jackson-databind</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.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-digester</groupId>
+      <artifactId>commons-digester</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>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-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>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>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-exec</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.curator</groupId>
+      <artifactId>curator-client</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.curator</groupId>
+      <artifactId>curator-framework</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-common</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.hadoop</groupId>
+      <artifactId>hadoop-hdfs</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.htrace</groupId>
+      <artifactId>htrace-core</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.httpcomponents</groupId>
+      <artifactId>httpclient</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.httpcomponents</groupId>
+      <artifactId>httpcore</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.httpcomponents</groupId>
+      <artifactId>httpmime</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.uima</groupId>
+      <artifactId>AlchemyAPIAnnotator</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.uima</groupId>
+      <artifactId>OpenCalaisAnnotator</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.uima</groupId>
+      <artifactId>Tagger</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.uima</groupId>
+      <artifactId>WhitespaceTokenizer</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.uima</groupId>
+      <artifactId>uimaj-core</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.zookeeper</groupId>
+      <artifactId>zookeeper</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.codehaus.jackson</groupId>
+      <artifactId>jackson-core-asl</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.codehaus.jackson</groupId>
+      <artifactId>jackson-mapper-asl</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.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>
+
+
+  </dependencies>
+  <build>
+    <sourceDirectory>${module-path}/src/java</sourceDirectory>
+    <testSourceDirectory>${module-path}/src/test</testSourceDirectory>
+    <resources>
+      <resource>
+        <directory>${module-path}/src/resources</directory>
+      </resource>
+    </resources>
+    <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>
+  </build>
+</project>

Added: dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-uima/6.5.1/solr-uima-6.5.1.pom.asc
==============================================================================
--- dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-uima/6.5.1/solr-uima-6.5.1.pom.asc (added)
+++ dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-uima/6.5.1/solr-uima-6.5.1.pom.asc Fri Apr 21 11:50:09 2017
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v2
+
+iQIcBAABCAAGBQJY+d6HAAoJEPmME8+loTXYnFwP/RKBQHOUJYt0eClNf4BH5GLL
+dgwbw7Sfq0/I/F37SU0WapjOQK9bSAOy0j8OAxVTKGagidBVf8r9fqcIqZgYEioC
+XNGbiBjQj0mPDiU82JzIjCMgm1qocAnsQOA0jZcDF8a90LHUwJ5cmuiyb4u3FpWO
+N244Jh/ti2j+eSgnUNbkHZybHFGSUrnXYqK3xpR+osfWQAAhvtbMDx8aRZrMiYtv
+jxJO2osMeMRk5yyIf9VrH75dYfH9TWLeVFLxpklH6jurlP0t+XE1b2Fl2Jv/pEvd
+LqwQbzOqFtvcgCGw3yCm5zbGyQ8Rnz8hD6qxbmfJT33p7guyx20gD8NlgHO7ivHB
+lWG80Je0hcOaK2c6Q+2ZCwfd8x1ZZMjYmKLgfz4hZ1DSro8h7ulcKm6W24wCpHr2
+qxRwGVQAb1PaVmKPMbJj9EC0yTjovyEX4kMKJTPv6eYB1lpLMNTnUSozW9XRHRXl
+e+wfsPBBeJcC/r9+mHV3lGCP4zANCn8kyu+uxrZaK8/iG+pg4kg5cylf5tMm353b
+VUQDzzkaUYOMQgbMAIJlKiThUw6uT9OnjuDP4rqMEoielNxHrScX6bKGt/l+Dv94
+vXbgVfUbK4UOcBSqDWqLDNZHJO5wol/N78iu072RVsCZY4UjwRv8H/5Hne6Rl46R
+/xJMj30MmASzb+p3kd/H
+=ptHf
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-uima/6.5.1/solr-uima-6.5.1.pom.md5
==============================================================================
--- dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-uima/6.5.1/solr-uima-6.5.1.pom.md5 (added)
+++ dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-uima/6.5.1/solr-uima-6.5.1.pom.md5 Fri Apr 21 11:50:09 2017
@@ -0,0 +1 @@
+977d61321d0bef6dcb2f3c3245a3c032
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-uima/6.5.1/solr-uima-6.5.1.pom.sha1
==============================================================================
--- dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-uima/6.5.1/solr-uima-6.5.1.pom.sha1 (added)
+++ dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-uima/6.5.1/solr-uima-6.5.1.pom.sha1 Fri Apr 21 11:50:09 2017
@@ -0,0 +1 @@
+5b5def128063f6969d05903af7edd3fc0497a7af
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-uima/maven-metadata.xml
==============================================================================
--- dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-uima/maven-metadata.xml (added)
+++ dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-uima/maven-metadata.xml Fri Apr 21 11:50:09 2017
@@ -0,0 +1,12 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<metadata>
+  <groupId>org.apache.solr</groupId>
+  <artifactId>solr-uima</artifactId>
+  <version>6.5.1</version>
+  <versioning>
+    <versions>
+      <version>6.5.1</version>
+    </versions>
+    <lastUpdated>20170421102643</lastUpdated>
+  </versioning>
+</metadata>

Added: dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-uima/maven-metadata.xml.md5
==============================================================================
--- dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-uima/maven-metadata.xml.md5 (added)
+++ dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-uima/maven-metadata.xml.md5 Fri Apr 21 11:50:09 2017
@@ -0,0 +1 @@
+644a89fcc58799ea78f3a5109a1ab3bb
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-uima/maven-metadata.xml.sha1
==============================================================================
--- dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-uima/maven-metadata.xml.sha1 (added)
+++ dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-uima/maven-metadata.xml.sha1 Fri Apr 21 11:50:09 2017
@@ -0,0 +1 @@
+3426a932a9c174a60a274ef372eaf19c28308468
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-velocity/6.5.1/solr-velocity-6.5.1-javadoc.jar
==============================================================================
Binary file - no diff available.

Propchange: dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-velocity/6.5.1/solr-velocity-6.5.1-javadoc.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-velocity/6.5.1/solr-velocity-6.5.1-javadoc.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-velocity/6.5.1/solr-velocity-6.5.1-javadoc.jar.asc (added)
+++ dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-velocity/6.5.1/solr-velocity-6.5.1-javadoc.jar.asc Fri Apr 21 11:50:09 2017
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v2
+
+iQIcBAABCAAGBQJY+d6HAAoJEPmME8+loTXYaXcP/0TRnuBxMzczSi9r29jqtb6M
+hxSDGtnqbNwckJ55iFNLoPUvRPUVH3yPT2+8Qc2xRRlaCwAs/qfiylPMvfpM4fAD
+wuihis7Tz6BE6ekwg0haeLpBnOv1dpmiYXPjmmasiwYLV0RXla0q8j/TM1z5/7ql
+7/ML3WABiCOAfRf3mNHeJLIunYwFimgN0TuA7rhGSyUq4tTKgSdhYot9aZdsrUIH
+78cnHJ0mvIrmfUn7w+zhtO0V1h5BKcvbjdcTvOhPrEHvziLjdowmP9TvIqhoQ/lE
+ocJ7kzspUs/ov5xN5Oj4qYqRFOF/MHxBFHoMd0xnhvH7tKaUgRP6kkLve5YAfZPD
+MADxAguUCclfAyL1ByRupQQqKsrTEBSXAF/Bw9MaAm9F9o2ln6hQPpOjYhOS4Gu0
+ZB8Mobn1IfblLwyLl1r2webf1nrFKjHMopjW1+qD9lTz/m/ZGWFN2omPKjxmLA1X
+V0DuMTKhRcwNZsh0Xg+dvjT0xMEFUjXoRThOxMFRaveqka9PU3xavGVOMtNVSq+Z
+p5jO7wJUD0uMd5rRtniZhCODTIgiR3UGPybOjxWsd9jetGNlVAZ8uVVJhZrJA3nG
+7a7QQjYjrZssIneMuWem0vQ4ctLaG/Z7CvppNltdBBqyRb/e5IEV7p+8Nyv2yUp9
+ckE1BT8Dll1/4SY9PkIf
+=h5De
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-velocity/6.5.1/solr-velocity-6.5.1-javadoc.jar.md5
==============================================================================
--- dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-velocity/6.5.1/solr-velocity-6.5.1-javadoc.jar.md5 (added)
+++ dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-velocity/6.5.1/solr-velocity-6.5.1-javadoc.jar.md5 Fri Apr 21 11:50:09 2017
@@ -0,0 +1 @@
+e39f72794cb9b1e2ff048a7b8e8f1e51
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-velocity/6.5.1/solr-velocity-6.5.1-javadoc.jar.sha1
==============================================================================
--- dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-velocity/6.5.1/solr-velocity-6.5.1-javadoc.jar.sha1 (added)
+++ dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-velocity/6.5.1/solr-velocity-6.5.1-javadoc.jar.sha1 Fri Apr 21 11:50:09 2017
@@ -0,0 +1 @@
+cddef74201e194c020c0d97544648a7b45b7484e
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-velocity/6.5.1/solr-velocity-6.5.1-sources.jar
==============================================================================
Binary file - no diff available.

Propchange: dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-velocity/6.5.1/solr-velocity-6.5.1-sources.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-velocity/6.5.1/solr-velocity-6.5.1-sources.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-velocity/6.5.1/solr-velocity-6.5.1-sources.jar.asc (added)
+++ dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-velocity/6.5.1/solr-velocity-6.5.1-sources.jar.asc Fri Apr 21 11:50:09 2017
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v2
+
+iQIcBAABCAAGBQJY+d6IAAoJEPmME8+loTXYNfsP/RBHryd0qxhevU1Bbsvsl0eH
+rEiFi4p82q6NtDtHEXuTxixvQk6/U2mbAdrMs8XR5Fwy9fq4B4fIxXXzkrYy2lM2
+nW2oUZopG3AzHu82oMNCWgKG7Ul2C8MJXD99ZOh3BIxqIFdd2AvJMhX7RJuNzHYm
+KNmEUZOD7Ghsw8DLG8m/VmCXuXacWEzrpjOnrSaowQodSfFlU9cm/eKZ9Ml+LKgg
+eaVtP4evgCrkpJCpjX/mQKBUbbAPPMQs7usHNuRE+kizau3cCBZfrdQ7doZTr6lK
+g7QdLRIT7liy2nD7PU4gOz4NZKiS7SrNIaVcsXf5fIdxiLozm2Cf3/hxMpxYKn7O
+5sGH+H1GrP+iLYX+wnNfoEvbjPSU+b8S4dm6VgtiHVRcNPOkuTawlzpulfoVRSZL
+S9NfrCN5r8uitzBH2Eta1Kr23YjdvOweLhpiRgNJ7Zms4NmZzd2xnPBOf0RQ0s3m
+ezNJPoH8VWmZGpv1R1v15XRfbc/6aDXEHyTpgI+vY5qzc1HSxa6v0vmn8gSUccg7
+ySUdjUh8EtZjQHGMb8TeY9Sa5iqW2pHDJ1zOtO7zKjK4yzYEhaB5amceVZ611foY
+lMRyrWX0NiQjtHTS8c82txlnKocpZHGAKY8szEXWpnK5skM+2EN+ggX0h70tP+KL
+eNvq5dljhb35f2jsCyRb
+=gyjT
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-velocity/6.5.1/solr-velocity-6.5.1-sources.jar.md5
==============================================================================
--- dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-velocity/6.5.1/solr-velocity-6.5.1-sources.jar.md5 (added)
+++ dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-velocity/6.5.1/solr-velocity-6.5.1-sources.jar.md5 Fri Apr 21 11:50:09 2017
@@ -0,0 +1 @@
+b9f5c41846b578e1c758ff7ccab84dba
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-velocity/6.5.1/solr-velocity-6.5.1-sources.jar.sha1
==============================================================================
--- dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-velocity/6.5.1/solr-velocity-6.5.1-sources.jar.sha1 (added)
+++ dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-velocity/6.5.1/solr-velocity-6.5.1-sources.jar.sha1 Fri Apr 21 11:50:09 2017
@@ -0,0 +1 @@
+443cf5699486e919d8bfdf8472cdfd0a965b7ec6
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-velocity/6.5.1/solr-velocity-6.5.1.jar
==============================================================================
Binary file - no diff available.

Propchange: dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-velocity/6.5.1/solr-velocity-6.5.1.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-velocity/6.5.1/solr-velocity-6.5.1.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-velocity/6.5.1/solr-velocity-6.5.1.jar.asc (added)
+++ dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-velocity/6.5.1/solr-velocity-6.5.1.jar.asc Fri Apr 21 11:50:09 2017
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v2
+
+iQIcBAABCAAGBQJY+d6IAAoJEPmME8+loTXYX2QQALKE4zDiJpMqRkfYcLgYC4Ig
+2OyJ1q6cwQ9+2obEzomN7O52cUyzI5U1tJ57h/f1qy351VaeN9t6FdNdWF3lfSht
+CoFur/D5OQbSJZ6JVhTaG+oZML8VbItXUiZ8m9XVRNAziOHuD6Kc5LOAgLZ8MDWf
+XHniODDa2ao9qylHYODPDW75+QjE49m1uUAiNsKCASg8ux8CpaQz5L1Z4VO9OLBt
+++ALJh8aT1wyeftjigl86wzG1BOWnJyHipibxXMMiolekHMP/UHNknu8baFx/A4q
+GSeW6wiODnlp9UMaHwiLVOf4tc3h90LzonpurKaTBRhe59KUad8Ab3biTGvlMmom
+2xGyaqUO7+gqXWByrenRdL96w5jVY6kdRfqfoXFKQk7Zw9tO+2NODaAO7lFVEfBJ
+YlCXpvg5Yj1A8D+e+4W1IZw75PANuMGDBGEsxlc8PNRIjXHl9ZGxiYDSffHWwtqY
+jWbzSSXdXzklfj+6yoHK7kSKtlZag8GTUVVEddTaOIFOdtCgUTWnLylyrLEPGPmX
+FaKrF3I67BnHeG6lGa4GTElFljLPjE/hwEuP2GV3vc4a9e8tZiHeBYb6obuwt/99
+wCGCtCaDRDND/aj3Gb8rNS0QeVozELBQgcDCoSKoHX9aUP5fZVVntHB9FSFFh+iW
+KRKl/nt3fXp5arzTxMyF
+=uEsY
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-velocity/6.5.1/solr-velocity-6.5.1.jar.md5
==============================================================================
--- dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-velocity/6.5.1/solr-velocity-6.5.1.jar.md5 (added)
+++ dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-velocity/6.5.1/solr-velocity-6.5.1.jar.md5 Fri Apr 21 11:50:09 2017
@@ -0,0 +1 @@
+fa09262eb29d033e1405f3b46e45ac00
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-velocity/6.5.1/solr-velocity-6.5.1.jar.sha1
==============================================================================
--- dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-velocity/6.5.1/solr-velocity-6.5.1.jar.sha1 (added)
+++ dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-velocity/6.5.1/solr-velocity-6.5.1.jar.sha1 Fri Apr 21 11:50:09 2017
@@ -0,0 +1 @@
+4ea0beb1b5697c29bd7dcf781c491d85c6bbb173
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-velocity/6.5.1/solr-velocity-6.5.1.pom
==============================================================================
--- dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-velocity/6.5.1/solr-velocity-6.5.1.pom (added)
+++ dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-velocity/6.5.1/solr-velocity-6.5.1.pom Fri Apr 21 11:50:09 2017
@@ -0,0 +1,473 @@
+<!--
+  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.1</version>
+    <relativePath>../../pom.xml</relativePath>
+  </parent>
+  <groupId>org.apache.solr</groupId>
+  <artifactId>solr-velocity</artifactId>
+  <packaging>jar</packaging>
+  <name>Apache Solr Velocity</name>
+  <description>Apache Solr Velocity</description>
+  <properties>
+    <module-directory>solr/contrib/velocity</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-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.fasterxml.jackson.core</groupId>
+      <artifactId>jackson-annotations</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.fasterxml.jackson.core</groupId>
+      <artifactId>jackson-core</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.fasterxml.jackson.core</groupId>
+      <artifactId>jackson-databind</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.tdunning</groupId>
+      <artifactId>t-digest</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>commons-beanutils</groupId>
+      <artifactId>commons-beanutils</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>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-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>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>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-exec</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.curator</groupId>
+      <artifactId>curator-client</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.curator</groupId>
+      <artifactId>curator-framework</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-common</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.hadoop</groupId>
+      <artifactId>hadoop-hdfs</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.htrace</groupId>
+      <artifactId>htrace-core</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.httpcomponents</groupId>
+      <artifactId>httpclient</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.httpcomponents</groupId>
+      <artifactId>httpcore</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.httpcomponents</groupId>
+      <artifactId>httpmime</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.velocity</groupId>
+      <artifactId>velocity</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.velocity</groupId>
+      <artifactId>velocity-tools</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.zookeeper</groupId>
+      <artifactId>zookeeper</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.codehaus.jackson</groupId>
+      <artifactId>jackson-core-asl</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.codehaus.jackson</groupId>
+      <artifactId>jackson-mapper-asl</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.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>
+
+
+  </dependencies>
+  <build>
+    <sourceDirectory>${module-path}/src/java</sourceDirectory>
+    <resources>
+      <resource>
+        <directory>${module-path}/src/resources</directory>
+      </resource>
+    </resources>
+    <testSourceDirectory>${module-path}/src/test</testSourceDirectory>
+    <testResources>
+      <testResource>
+        <directory>${module-path}/src/test-files</directory>
+      </testResource>
+      <testResource>
+        <directory>${module-path}/src/test</directory>
+        <includes>
+          <include>velocity/*.properties</include>
+        </includes>
+      </testResource>
+      <testResource>
+        <directory>${top-level}/dev-tools/maven/solr</directory>
+        <includes>
+          <include>maven.testlogging.properties</include>
+        </includes>
+      </testResource>
+    </testResources>
+  </build>
+</project>

Added: dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-velocity/6.5.1/solr-velocity-6.5.1.pom.asc
==============================================================================
--- dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-velocity/6.5.1/solr-velocity-6.5.1.pom.asc (added)
+++ dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-velocity/6.5.1/solr-velocity-6.5.1.pom.asc Fri Apr 21 11:50:09 2017
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v2
+
+iQIcBAABCAAGBQJY+d6JAAoJEPmME8+loTXY2cQQAMqInX01cda6E3iUC+LuwPor
+G78Vkb38fq78NsynIuB0DXJ6VFbFuMZZoa1OL72z1nmGcZiv6SW8eS7WfDrBWSJ2
+XMdIL7NRcmYCrjHsbG3gDwWXGSswOm6PZSDmxiX7bgx4maSdWAAzAdjNLt2L7JAg
+WOUixK+VZt/c9hGhG/wYGGkpYasGETyhXLyPinh+JIHaic77qOYLUKBfQ16fQP3z
+a0O3swAdSmyuR8i4fNYnrgVXPEHyRsP+QEG9rJxVnlIVjNjfLr89UQJp68QIPBC5
+UHkzAU2djPtWkCbv9nEWDpMKMoQGLXMEvb8xkQk1BhSx1S+U2gYOxAi3y8XChAzP
+GTTON/guPCNobN4xPk3IQs4oPHUqfXZvgl4DVa4X8SKrlmjbvDYUsHmc6U2VSGt8
+N6nIz75wPO+bjjq1vls85MQD8GBv1q0cKTMRdusEv3q9QuBZF2GfdqzibcE+nvd+
+/rwgewbTKmo56uy48V50xkk9dg5sGuxinW3o6dbo14wilUbl0lMN6Dt2qrx5iG08
+BeGYQO+sHd+Ecg46TcWAdma8hBYA3+2QX8oFJRioCLbMSGdcDErbPirlDvxXZvCH
+iMCC865qj1mT99FasoFFaQ0sKe7UHf1SqgCS20W1jO5+vqcg/+T3keXrfS2/acz3
+lk/8ae5DSiMrb/ZOQZyg
+=bdzy
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-velocity/6.5.1/solr-velocity-6.5.1.pom.md5
==============================================================================
--- dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-velocity/6.5.1/solr-velocity-6.5.1.pom.md5 (added)
+++ dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-velocity/6.5.1/solr-velocity-6.5.1.pom.md5 Fri Apr 21 11:50:09 2017
@@ -0,0 +1 @@
+c39a5951414a5daf739cec43ea3316f2
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-velocity/6.5.1/solr-velocity-6.5.1.pom.sha1
==============================================================================
--- dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-velocity/6.5.1/solr-velocity-6.5.1.pom.sha1 (added)
+++ dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-velocity/6.5.1/solr-velocity-6.5.1.pom.sha1 Fri Apr 21 11:50:09 2017
@@ -0,0 +1 @@
+7763e71fe71929f63b777f9a4a4e06d0a2a8e9c7
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-velocity/maven-metadata.xml
==============================================================================
--- dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-velocity/maven-metadata.xml (added)
+++ dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-velocity/maven-metadata.xml Fri Apr 21 11:50:09 2017
@@ -0,0 +1,12 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<metadata>
+  <groupId>org.apache.solr</groupId>
+  <artifactId>solr-velocity</artifactId>
+  <version>6.5.1</version>
+  <versioning>
+    <versions>
+      <version>6.5.1</version>
+    </versions>
+    <lastUpdated>20170421102645</lastUpdated>
+  </versioning>
+</metadata>

Added: dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-velocity/maven-metadata.xml.md5
==============================================================================
--- dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-velocity/maven-metadata.xml.md5 (added)
+++ dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-velocity/maven-metadata.xml.md5 Fri Apr 21 11:50:09 2017
@@ -0,0 +1 @@
+76165e7671ba9af50b8ab7684336999c
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-velocity/maven-metadata.xml.sha1
==============================================================================
--- dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-velocity/maven-metadata.xml.sha1 (added)
+++ dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/maven/org/apache/solr/solr-velocity/maven-metadata.xml.sha1 Fri Apr 21 11:50:09 2017
@@ -0,0 +1 @@
+03986543602b3e98d1c0b48bf58ca5a0a0624b29
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/solr-6.5.1-src.tgz
==============================================================================
Binary file - no diff available.

Propchange: dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/solr-6.5.1-src.tgz
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/solr-6.5.1-src.tgz.asc
==============================================================================
--- dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/solr-6.5.1-src.tgz.asc (added)
+++ dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/solr-6.5.1-src.tgz.asc Fri Apr 21 11:50:09 2017
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v2
+
+iQIcBAABCAAGBQJY+d6KAAoJEPmME8+loTXYVxIP/347z2RnF+Ul9npY8YFi0Nyl
+ATQf6wzB6hbEoubcAD8bdTi8p4Wl8LjrhxtgqhstllJQyEagmm/1Ea7zkvTh4C3E
+kHxza0vnkJTwDM5sX/v0ZZL3X8tcGhKmiP5G7S1hAMhbmXlB1REQVJWRa9MlqDlW
+I2PZ0atsn4w2x1lvl93ULRv0F6FElsXjyyLOtMittQoAYnr3pzSP7U7tp7hoNPEa
+Z2spsrScaYPApfuhgIYUUJXZvk+ejhfgpGedmTj5MyXd4KTowt5vjp7tql+4sn/R
+ysFzKrwyZlkh8VPGKRgf2cvOPT2JPg5OEHroGsxKy8BcLSufvSVuzepu5TUwGNdr
+rqSjnd7n5D3CV3fyvUh/cXam35nEUk1/xpJSbxjESNx+7u8mLGzs65J78O6aIYTI
+ZpVimKtEbK0mttCfAJBYj9aeTSZz9F7fpAFO7SbgHtr5IVEgaGwr7ZwC0+qr4+eH
+bjdN82hmHeDgaBX7lqaEc4aNXR1Fxfj7G5OqEUhlixoIRIZDYvLQZZAIrh+jRWLj
+upfqV+11eTbkrk77v3z8Rc3vU1o5nUD/7nfWwyKKkH5gH4WF+3MF/h3Fj4D+K2Ei
+pGnmr59ok7cixrHDVyv6krBjY7M+LkL3802j00BAeXa2ZHu+MMqZbt7Pg8djojQp
+F1WDr4vbjHWTu2aNUcHO
+=Zvp+
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/solr-6.5.1-src.tgz.md5
==============================================================================
--- dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/solr-6.5.1-src.tgz.md5 (added)
+++ dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/solr-6.5.1-src.tgz.md5 Fri Apr 21 11:50:09 2017
@@ -0,0 +1 @@
+be51289b3ba2e95ca9316c03627baee2 *solr-6.5.1-src.tgz

Added: dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/solr-6.5.1-src.tgz.sha1
==============================================================================
--- dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/solr-6.5.1-src.tgz.sha1 (added)
+++ dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/solr-6.5.1-src.tgz.sha1 Fri Apr 21 11:50:09 2017
@@ -0,0 +1 @@
+83b0563b39f6c8323a6e7e2a5dea85c5d9a0ae24 *solr-6.5.1-src.tgz

Added: dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/solr-6.5.1.tgz
==============================================================================
Binary file - no diff available.

Propchange: dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/solr-6.5.1.tgz
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/solr-6.5.1.tgz.asc
==============================================================================
--- dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/solr-6.5.1.tgz.asc (added)
+++ dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/solr-6.5.1.tgz.asc Fri Apr 21 11:50:09 2017
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v2
+
+iQIcBAABCAAGBQJY+d6NAAoJEPmME8+loTXYSugP/321drv6X2J53bPcgKkXeqHu
+lUvwgMDsZZ76QjpqnoEfL9V7xLPv4ZiLtxIzBBOgOeT6qWIEj46+TBOEa/5Z2NcO
+h/sZ5I5ye+abwLdl08jovuZU3+ItnfOwbxL7vWMwU8y2QlyVDlFAUVOckz71hAju
+cKqh4fOb13HRh9KASXOpOMT8mQTCGqC5pt4YyWmgnlox478BpkYjUHKXZXjoQYjY
+p8ZrrB+1M2nbeChpts5XWEwzYXDbDsFe6uxcH6wr/Ygc1fLlLwaL45gdicqiqiBR
+MfTmUod24QnEVgBaUowEGsxonDwxdy8D2QjRNijBKz0QLmQyS4yKSeQcV98dlzNc
+z/pR+Yxy8wdPv0xSth/NF5VBMixXGSKFi3CCQMcTbbcz3ysHiMIQF78ZMaUbOcHS
+knTCvrYfIbmd1OKxTTU+8pQT/dVwNHr+QfIJ0Hfq0EuPDL7vS9lzL7RW+93DRBrz
+ZmuAuj6/VFoKf4frOF8OtmuBv3QgPQ0aBja/8Bvg0bpAEh5+yT8X1gclhprHhFcL
+4GICl+rLuY/hOJ8gXdqFX1mUFwC1eezaVXZeV1n18WWqhZS6iKtjyd060ePdd2ZL
+dNiypWQyVGxyiD5af9TK2wFsMzQg8TtWZ0Bo45wd8mK/oGSWM7s9AaQyOAMNDRML
+xrb7OM9CuMRvMoHEUwi0
+=nQ7y
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/solr-6.5.1.tgz.md5
==============================================================================
--- dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/solr-6.5.1.tgz.md5 (added)
+++ dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/solr-6.5.1.tgz.md5 Fri Apr 21 11:50:09 2017
@@ -0,0 +1 @@
+7f63cc3d8803ac3be40e354e6a21e395 *solr-6.5.1.tgz

Added: dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/solr-6.5.1.tgz.sha1
==============================================================================
--- dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/solr-6.5.1.tgz.sha1 (added)
+++ dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/solr-6.5.1.tgz.sha1 Fri Apr 21 11:50:09 2017
@@ -0,0 +1 @@
+2cc43b837743949a46bd7efbab14b43f6d92b4b8 *solr-6.5.1.tgz