You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by jb...@apache.org on 2017/04/10 02:55:15 UTC

svn commit: r19093 [24/25] - in /dev/lucene/lucene-solr-6.5.1-RC1-revf88f850034eee845b8021af47ecffc9c42aa8539: ./ 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-RC1-revf88f850034eee845b8021af47ecffc9c42aa8539/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-RC1-revf88f850034eee845b8021af47ecffc9c42aa8539/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-RC1-revf88f850034eee845b8021af47ecffc9c42aa8539/solr/maven/org/apache/solr/solr-test-framework/6.5.1/solr-test-framework-6.5.1.pom Mon Apr 10 02:55:08 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>

Propchange: dev/lucene/lucene-solr-6.5.1-RC1-revf88f850034eee845b8021af47ecffc9c42aa8539/solr/maven/org/apache/solr/solr-test-framework/6.5.1/solr-test-framework-6.5.1.pom
------------------------------------------------------------------------------
    svn:eol-style = native

Added: dev/lucene/lucene-solr-6.5.1-RC1-revf88f850034eee845b8021af47ecffc9c42aa8539/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-RC1-revf88f850034eee845b8021af47ecffc9c42aa8539/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-RC1-revf88f850034eee845b8021af47ecffc9c42aa8539/solr/maven/org/apache/solr/solr-test-framework/6.5.1/solr-test-framework-6.5.1.pom.asc Mon Apr 10 02:55:08 2017
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Comment: GPGTools - https://gpgtools.org
+
+iQIcBAABCgAGBQJY6tD5AAoJEKM20MDuZMse8V8QALTgjzI3PKjYVC6mQW8N7eae
+jOvnmzG7WSrISptpUZsolknjHIRCysyKAcAFSbC1evqdHgzbE8JaYovtxJz0h7zP
+9hv1cHIpdx2eI7h536DiB7h+oXRnT1nXgDFmKgD8gDif8vKwLNk5bhEPRbwSF6U3
+NNFqN47hg7IRY1m21Xagqw7hNBVEOPrYSy8ojdHN5FMEJWPF8o6xu538OvaccYmF
+9meO4595id3U+3osf+VOspIjk/9cyetlcFnhZZywwqpGNRYbdwdVcWU9FeMTNHTC
+xnrHWyOkVifV3FTj8yY4rj1PQ8xAu9atFhP3QQE6OVYeNSdY8ZiQthtKS87An1ZJ
+fbnIJ/E5+2cCnLzIgvH1u7bjiBclbEiG+J5EEmLnJWCl9/8hOqYXBIR9St7aMO1+
+7sTY/x7Tu0W2wfsp9CguJRmts0fAtCCFrPbL3b5eAFV1JGPH+Z92DhJY7/WpTW80
+fAZ/juGHdVzq7JaDo6fd141NPzpoKLh7/R5QkgtxRHu9ItZpqfLooxgzKFdFGW8k
+4+NDvPsR2tF0dcvLVEIx4kCnadHvlM0Kkt36bR/pPiGrScM/a1XxgiXzRcJeNRxq
+ygQEcE8QIr+lDRzd0HzEmJhEbEhj7UUYldHLmAoCQa2Gr+8ALIzJsco6zZIiFOxu
+A84Z7/Yx4R1Nr0i4XBEl
+=4DF5
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-6.5.1-RC1-revf88f850034eee845b8021af47ecffc9c42aa8539/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-RC1-revf88f850034eee845b8021af47ecffc9c42aa8539/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-RC1-revf88f850034eee845b8021af47ecffc9c42aa8539/solr/maven/org/apache/solr/solr-test-framework/6.5.1/solr-test-framework-6.5.1.pom.md5 Mon Apr 10 02:55:08 2017
@@ -0,0 +1 @@
+c4a9051dd55d3e78399ba087276b0bac
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.5.1-RC1-revf88f850034eee845b8021af47ecffc9c42aa8539/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-RC1-revf88f850034eee845b8021af47ecffc9c42aa8539/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-RC1-revf88f850034eee845b8021af47ecffc9c42aa8539/solr/maven/org/apache/solr/solr-test-framework/6.5.1/solr-test-framework-6.5.1.pom.sha1 Mon Apr 10 02:55:08 2017
@@ -0,0 +1 @@
+b5bd2013660781072685418d08db13b103667215
\ No newline at end of file

Propchange: dev/lucene/lucene-solr-6.5.1-RC1-revf88f850034eee845b8021af47ecffc9c42aa8539/solr/maven/org/apache/solr/solr-test-framework/6.5.1/solr-test-framework-6.5.1.pom.sha1
------------------------------------------------------------------------------
    svn:eol-style = native

Added: dev/lucene/lucene-solr-6.5.1-RC1-revf88f850034eee845b8021af47ecffc9c42aa8539/solr/maven/org/apache/solr/solr-test-framework/maven-metadata.xml
==============================================================================
--- dev/lucene/lucene-solr-6.5.1-RC1-revf88f850034eee845b8021af47ecffc9c42aa8539/solr/maven/org/apache/solr/solr-test-framework/maven-metadata.xml (added)
+++ dev/lucene/lucene-solr-6.5.1-RC1-revf88f850034eee845b8021af47ecffc9c42aa8539/solr/maven/org/apache/solr/solr-test-framework/maven-metadata.xml Mon Apr 10 02:55:08 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>20170410002449</lastUpdated>
+  </versioning>
+</metadata>

Propchange: dev/lucene/lucene-solr-6.5.1-RC1-revf88f850034eee845b8021af47ecffc9c42aa8539/solr/maven/org/apache/solr/solr-test-framework/maven-metadata.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Added: dev/lucene/lucene-solr-6.5.1-RC1-revf88f850034eee845b8021af47ecffc9c42aa8539/solr/maven/org/apache/solr/solr-test-framework/maven-metadata.xml.md5
==============================================================================
--- dev/lucene/lucene-solr-6.5.1-RC1-revf88f850034eee845b8021af47ecffc9c42aa8539/solr/maven/org/apache/solr/solr-test-framework/maven-metadata.xml.md5 (added)
+++ dev/lucene/lucene-solr-6.5.1-RC1-revf88f850034eee845b8021af47ecffc9c42aa8539/solr/maven/org/apache/solr/solr-test-framework/maven-metadata.xml.md5 Mon Apr 10 02:55:08 2017
@@ -0,0 +1 @@
+fb7e16368290b41f53913c7ed38c758e
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.5.1-RC1-revf88f850034eee845b8021af47ecffc9c42aa8539/solr/maven/org/apache/solr/solr-test-framework/maven-metadata.xml.sha1
==============================================================================
--- dev/lucene/lucene-solr-6.5.1-RC1-revf88f850034eee845b8021af47ecffc9c42aa8539/solr/maven/org/apache/solr/solr-test-framework/maven-metadata.xml.sha1 (added)
+++ dev/lucene/lucene-solr-6.5.1-RC1-revf88f850034eee845b8021af47ecffc9c42aa8539/solr/maven/org/apache/solr/solr-test-framework/maven-metadata.xml.sha1 Mon Apr 10 02:55:08 2017
@@ -0,0 +1 @@
+82fa5f0aa5cfaca170b31c058122af9d6d78817d
\ No newline at end of file

Propchange: dev/lucene/lucene-solr-6.5.1-RC1-revf88f850034eee845b8021af47ecffc9c42aa8539/solr/maven/org/apache/solr/solr-test-framework/maven-metadata.xml.sha1
------------------------------------------------------------------------------
    svn:eol-style = native

Added: dev/lucene/lucene-solr-6.5.1-RC1-revf88f850034eee845b8021af47ecffc9c42aa8539/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-RC1-revf88f850034eee845b8021af47ecffc9c42aa8539/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-RC1-revf88f850034eee845b8021af47ecffc9c42aa8539/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-RC1-revf88f850034eee845b8021af47ecffc9c42aa8539/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-RC1-revf88f850034eee845b8021af47ecffc9c42aa8539/solr/maven/org/apache/solr/solr-uima/6.5.1/solr-uima-6.5.1-javadoc.jar.asc Mon Apr 10 02:55:08 2017
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Comment: GPGTools - https://gpgtools.org
+
+iQIcBAABCgAGBQJY6tD5AAoJEKM20MDuZMseTVIP/R+T/1g6h4j5aJsCHOUzkdke
+ZLUzZYivwBj56pCyqbATTuT5AfA1cYzL+a2YpEC/3dO7np2dBeqL+Rr8o+0u/gjP
+x4kKVbZFfaRTS5FlRkmWsdmQUGKAwydaFSnMQQtghj4zc/PIa0yfmcB8VVzQces3
+oFLGkqE0y2E3Nj0KXCmxeoOgRbe1SIwauyuomg9IFRFClTLMS2XfAj7ufWXm1VNp
+c4Nz9cPFig/3ZAwWhzN9CrlrNOcMr/WG2RqkLNAsLkWnpmAfPDOs2QdQNDZEU5Ln
+zPN7zUOVUbL03a7Sl5zzGZ+dNgU6i0Z6E8EHCnVZv4zXG2jWw3YRn+L1Fw0Y7y14
+qNCjZ/7O215JMK7WaxZm1nH9G88czrxWZwTBmLqfFLM7mIe9oFcstBoAYOx41MEJ
+e6ZWvff+YiZoyhao2nhVV7aikQtZk4a5xQbwnBBFNUJGDOCq9nxT53TtPfISc/vl
+HYVXINQXD0jGwEvJf93KqwGxnvYJUPL2QgLl2j5cAMDik3op8xf2sKVoHdIqeyL5
+M7P5o3ypDfNlYXVaFVzCJoSsNOQNL/MZYZW8k5a1gALzK/iG9kxlrSIHL/ox+XgJ
+0gmFhudhS2QaV59Eqm6JsaeGJ9eE1HGYzFKXqyXsoXiRutkkXqhgm+KhZmcTcPjL
+Mgn8J/VYXuAUoeZNNhcT
+=GXtf
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-6.5.1-RC1-revf88f850034eee845b8021af47ecffc9c42aa8539/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-RC1-revf88f850034eee845b8021af47ecffc9c42aa8539/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-RC1-revf88f850034eee845b8021af47ecffc9c42aa8539/solr/maven/org/apache/solr/solr-uima/6.5.1/solr-uima-6.5.1-javadoc.jar.md5 Mon Apr 10 02:55:08 2017
@@ -0,0 +1 @@
+9e526e2c66c48a825cdb5c6a693865b3
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.5.1-RC1-revf88f850034eee845b8021af47ecffc9c42aa8539/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-RC1-revf88f850034eee845b8021af47ecffc9c42aa8539/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-RC1-revf88f850034eee845b8021af47ecffc9c42aa8539/solr/maven/org/apache/solr/solr-uima/6.5.1/solr-uima-6.5.1-javadoc.jar.sha1 Mon Apr 10 02:55:08 2017
@@ -0,0 +1 @@
+c75f59c02e677a7a4ccb04821db26fb17a32d7d2
\ No newline at end of file

Propchange: dev/lucene/lucene-solr-6.5.1-RC1-revf88f850034eee845b8021af47ecffc9c42aa8539/solr/maven/org/apache/solr/solr-uima/6.5.1/solr-uima-6.5.1-javadoc.jar.sha1
------------------------------------------------------------------------------
    svn:eol-style = native

Added: dev/lucene/lucene-solr-6.5.1-RC1-revf88f850034eee845b8021af47ecffc9c42aa8539/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-RC1-revf88f850034eee845b8021af47ecffc9c42aa8539/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-RC1-revf88f850034eee845b8021af47ecffc9c42aa8539/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-RC1-revf88f850034eee845b8021af47ecffc9c42aa8539/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-RC1-revf88f850034eee845b8021af47ecffc9c42aa8539/solr/maven/org/apache/solr/solr-uima/6.5.1/solr-uima-6.5.1-sources.jar.asc Mon Apr 10 02:55:08 2017
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Comment: GPGTools - https://gpgtools.org
+
+iQIcBAABCgAGBQJY6tD5AAoJEKM20MDuZMses2kP/jar2ZT8KDH+USWmVa4iIxgi
+XC4WQZt3R5yJBCrcEz6pHSb/ln1W3M/2rbyhx/WgDMQuSJS3A8iEojwal9pFIUQn
+dIvKcGyLyw7FBhmzZSa5L2GakMWby6Ruhri1AXkDM8FlVLXZpEiJOr2WGPapBlUh
+e965wRqGfXA5YwQpjljDmJzacwozMDgYwTaKjffLbNf1GBEwHV1/PnTRR5irYURT
+c2oFEKPF3amAKRScOVr0gRgpyzLPUskiWiQtl5gpRuLCxGFgH5Drpld3hdBE61dF
+GmXw+mIoALCZoA1V4l41U10K6huugeEBrPOEUxVM3Bvc8IdlsWNrJIrQnxrQuTAC
+pREnMDBA/DsW22nX/yrCM/aDgg+j5GPbmWn0T+XAkk/OGn/k8t6xnBzVYdC94lv7
+c7IRyCLU+AP4RAaxnucsqndQm+b/vQVhuXXy1XE1QOm6sV6Ra36ECay1+XXWYLxH
+a31c6DJLOl+aCU+JWDu9nQEwHwq3GpcUDXWirYNe28o0xL/niR90a9DQHbNQXqI5
+bIbxpqLX32v8/XDy52O6ge+aGvlH5APNK8p5XGyUmG+UKShPaLtKHrnm4m/KaKzN
+neKOwDGUROuXw0wFxDsvvUIz3pjt9ffbhBX/mSNz32zjlAvUFvCeJ/5+VhUBcMSq
+pp0UVLcFa/r2S47+FRNe
+=2N+w
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-6.5.1-RC1-revf88f850034eee845b8021af47ecffc9c42aa8539/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-RC1-revf88f850034eee845b8021af47ecffc9c42aa8539/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-RC1-revf88f850034eee845b8021af47ecffc9c42aa8539/solr/maven/org/apache/solr/solr-uima/6.5.1/solr-uima-6.5.1-sources.jar.md5 Mon Apr 10 02:55:08 2017
@@ -0,0 +1 @@
+c2629b3555f087b2717cbcc8ffbe8625
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.5.1-RC1-revf88f850034eee845b8021af47ecffc9c42aa8539/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-RC1-revf88f850034eee845b8021af47ecffc9c42aa8539/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-RC1-revf88f850034eee845b8021af47ecffc9c42aa8539/solr/maven/org/apache/solr/solr-uima/6.5.1/solr-uima-6.5.1-sources.jar.sha1 Mon Apr 10 02:55:08 2017
@@ -0,0 +1 @@
+84bcb44ce919cbe8bbebc4ea8d9a1c51594fb071
\ No newline at end of file

Propchange: dev/lucene/lucene-solr-6.5.1-RC1-revf88f850034eee845b8021af47ecffc9c42aa8539/solr/maven/org/apache/solr/solr-uima/6.5.1/solr-uima-6.5.1-sources.jar.sha1
------------------------------------------------------------------------------
    svn:eol-style = native

Added: dev/lucene/lucene-solr-6.5.1-RC1-revf88f850034eee845b8021af47ecffc9c42aa8539/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-RC1-revf88f850034eee845b8021af47ecffc9c42aa8539/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-RC1-revf88f850034eee845b8021af47ecffc9c42aa8539/solr/maven/org/apache/solr/solr-uima/6.5.1/solr-uima-6.5.1.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-6.5.1-RC1-revf88f850034eee845b8021af47ecffc9c42aa8539/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-RC1-revf88f850034eee845b8021af47ecffc9c42aa8539/solr/maven/org/apache/solr/solr-uima/6.5.1/solr-uima-6.5.1.jar.asc Mon Apr 10 02:55:08 2017
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Comment: GPGTools - https://gpgtools.org
+
+iQIcBAABCgAGBQJY6tD5AAoJEKM20MDuZMseV5EQAIDM+mr+nRjmb6V7vWDF2+E/
+I1VYTlwU8ta7XMlWopyXl0bXPBh9C/PSI6D7Odcmf3wABhdmKPx6my+0h/N6wgi7
+pYX2AXg0RYH1zS9PppMlCI2hmDlDowwFptx7JwbUVRRE+5QD3qRsPDjxZKf7y+5U
+2c3TtAaC1l2nZxan5TtgtE6UVbHth1Rr0YuUaihFLHUexbMmIguPjxV2lTrx2dG/
+PHdTnFNLXYUbP2i05Y7u0C8WRlI4ZKOtOJZexOdXYNzb5i/7vo9Z0qhGwmCy6aY2
+Qfj2rvnuDaBjZ7SYIpj0DuqPLtfCk8qpifWOQCmJOJUnEw1HPhBCEb5UNqutVmwe
+C9RAhoTZqhDrwAntsv7rnKw8A3ZfhK8jTwgqMPvbbTZAbN4ffNnPB65Vm3YUai2K
+6J3vQ3lBEvgGO0QBHZR1oZUUWfXRmOeaJf8TwR3Gxr2ckeUG24sV6pPpjbD4ttlb
+3r+UP0YB3tRdyBzAwsdrBmhpzt0XlDkaw3llroU9L1P1Z7lO5Ih9vSXPio/xtfyV
+vUdPTx/ZwAFRbrbcl2n+iy70Oo0RmviqERwfzLlcDAy8Dpve7s7FPSXiTclmRMxz
+Dv3qAXZBnNlaR1ZORK9wBbGnSK710OSz+e3HiYmHkUWpgROVd8ZVvT0mWbQslyVh
+B8CRto0NuccX7RlltKQZ
+=yoF7
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-6.5.1-RC1-revf88f850034eee845b8021af47ecffc9c42aa8539/solr/maven/org/apache/solr/solr-uima/6.5.1/solr-uima-6.5.1.jar.md5
==============================================================================
--- dev/lucene/lucene-solr-6.5.1-RC1-revf88f850034eee845b8021af47ecffc9c42aa8539/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-RC1-revf88f850034eee845b8021af47ecffc9c42aa8539/solr/maven/org/apache/solr/solr-uima/6.5.1/solr-uima-6.5.1.jar.md5 Mon Apr 10 02:55:08 2017
@@ -0,0 +1 @@
+59b619d95c74c026a84fd6ce9977a0b7
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.5.1-RC1-revf88f850034eee845b8021af47ecffc9c42aa8539/solr/maven/org/apache/solr/solr-uima/6.5.1/solr-uima-6.5.1.jar.sha1
==============================================================================
--- dev/lucene/lucene-solr-6.5.1-RC1-revf88f850034eee845b8021af47ecffc9c42aa8539/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-RC1-revf88f850034eee845b8021af47ecffc9c42aa8539/solr/maven/org/apache/solr/solr-uima/6.5.1/solr-uima-6.5.1.jar.sha1 Mon Apr 10 02:55:08 2017
@@ -0,0 +1 @@
+234ec0f44436ef38a628631ba82759732b66dd24
\ No newline at end of file

Propchange: dev/lucene/lucene-solr-6.5.1-RC1-revf88f850034eee845b8021af47ecffc9c42aa8539/solr/maven/org/apache/solr/solr-uima/6.5.1/solr-uima-6.5.1.jar.sha1
------------------------------------------------------------------------------
    svn:eol-style = native

Added: dev/lucene/lucene-solr-6.5.1-RC1-revf88f850034eee845b8021af47ecffc9c42aa8539/solr/maven/org/apache/solr/solr-uima/6.5.1/solr-uima-6.5.1.pom
==============================================================================
--- dev/lucene/lucene-solr-6.5.1-RC1-revf88f850034eee845b8021af47ecffc9c42aa8539/solr/maven/org/apache/solr/solr-uima/6.5.1/solr-uima-6.5.1.pom (added)
+++ dev/lucene/lucene-solr-6.5.1-RC1-revf88f850034eee845b8021af47ecffc9c42aa8539/solr/maven/org/apache/solr/solr-uima/6.5.1/solr-uima-6.5.1.pom Mon Apr 10 02:55:08 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>

Propchange: dev/lucene/lucene-solr-6.5.1-RC1-revf88f850034eee845b8021af47ecffc9c42aa8539/solr/maven/org/apache/solr/solr-uima/6.5.1/solr-uima-6.5.1.pom
------------------------------------------------------------------------------
    svn:eol-style = native

Added: dev/lucene/lucene-solr-6.5.1-RC1-revf88f850034eee845b8021af47ecffc9c42aa8539/solr/maven/org/apache/solr/solr-uima/6.5.1/solr-uima-6.5.1.pom.asc
==============================================================================
--- dev/lucene/lucene-solr-6.5.1-RC1-revf88f850034eee845b8021af47ecffc9c42aa8539/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-RC1-revf88f850034eee845b8021af47ecffc9c42aa8539/solr/maven/org/apache/solr/solr-uima/6.5.1/solr-uima-6.5.1.pom.asc Mon Apr 10 02:55:08 2017
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Comment: GPGTools - https://gpgtools.org
+
+iQIcBAABCgAGBQJY6tD5AAoJEKM20MDuZMseBMoQANCwarTMCJaL7FRJFQpNIz/e
+O4uZVhBTS38ZZwsr3e29A3fdGQGTMVtvV4bE99w5NZsG1s39twh7qkfoP4rloePA
+aBXDt1Bemt0hh+eXspgfWnBaPg4MdKuyYf/E2wOSiGRNGFDhoao0LxFBjPj9hCMo
+jmOy1O1Ez5v5EtEDZFUVuZJqIgIAwebRwdG7fLWIfgCaF7P873nDdvpi1U9vesFe
+tSEY5n4KtY7vcbyAFeh8t8Sp9qQM03th1ut7FQPvU99phBYJys+qhoq4QTxIBnAT
+BTynqMBF21YQues0ry3UQlgxxE7QGCARXR8CdgBNHpKNcS0/VJa8ZDtVUFldeb5S
+KBwifnZNKFFknJBVmLR8mD1I1S0KQBPOLoN4v7GJvQ/TQoBNG6fSEPceeB0djXwf
+r8k66aMJSTq4YY8Ju9A6BCLom1UYCzWJwPn1M4KsPym/ZuWKgdpvoxYXfCJLZyuJ
+7IElOg4nTwvn709azvhDNTJfma+grwJmQVry/suuCxfRzEJWQt+d/AAPnd7DYiLL
+U6Ht1nBqdjd4wKu213LsISSADS7YSzyr3bs9o1kB4Nros0Q1oVIR3yHgyBzuYOrx
+vUBXZyrvhgTRVjlgNfdhNBIQ3y8uvf4MALsJcCF9jUl4D7ULH5SGiUzycx/7ow1Y
+EfaYR6rhEMHPi5PdQlgi
+=lEWB
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-6.5.1-RC1-revf88f850034eee845b8021af47ecffc9c42aa8539/solr/maven/org/apache/solr/solr-uima/6.5.1/solr-uima-6.5.1.pom.md5
==============================================================================
--- dev/lucene/lucene-solr-6.5.1-RC1-revf88f850034eee845b8021af47ecffc9c42aa8539/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-RC1-revf88f850034eee845b8021af47ecffc9c42aa8539/solr/maven/org/apache/solr/solr-uima/6.5.1/solr-uima-6.5.1.pom.md5 Mon Apr 10 02:55:08 2017
@@ -0,0 +1 @@
+977d61321d0bef6dcb2f3c3245a3c032
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.5.1-RC1-revf88f850034eee845b8021af47ecffc9c42aa8539/solr/maven/org/apache/solr/solr-uima/6.5.1/solr-uima-6.5.1.pom.sha1
==============================================================================
--- dev/lucene/lucene-solr-6.5.1-RC1-revf88f850034eee845b8021af47ecffc9c42aa8539/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-RC1-revf88f850034eee845b8021af47ecffc9c42aa8539/solr/maven/org/apache/solr/solr-uima/6.5.1/solr-uima-6.5.1.pom.sha1 Mon Apr 10 02:55:08 2017
@@ -0,0 +1 @@
+5b5def128063f6969d05903af7edd3fc0497a7af
\ No newline at end of file

Propchange: dev/lucene/lucene-solr-6.5.1-RC1-revf88f850034eee845b8021af47ecffc9c42aa8539/solr/maven/org/apache/solr/solr-uima/6.5.1/solr-uima-6.5.1.pom.sha1
------------------------------------------------------------------------------
    svn:eol-style = native

Added: dev/lucene/lucene-solr-6.5.1-RC1-revf88f850034eee845b8021af47ecffc9c42aa8539/solr/maven/org/apache/solr/solr-uima/maven-metadata.xml
==============================================================================
--- dev/lucene/lucene-solr-6.5.1-RC1-revf88f850034eee845b8021af47ecffc9c42aa8539/solr/maven/org/apache/solr/solr-uima/maven-metadata.xml (added)
+++ dev/lucene/lucene-solr-6.5.1-RC1-revf88f850034eee845b8021af47ecffc9c42aa8539/solr/maven/org/apache/solr/solr-uima/maven-metadata.xml Mon Apr 10 02:55:08 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>20170410002518</lastUpdated>
+  </versioning>
+</metadata>

Propchange: dev/lucene/lucene-solr-6.5.1-RC1-revf88f850034eee845b8021af47ecffc9c42aa8539/solr/maven/org/apache/solr/solr-uima/maven-metadata.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Added: dev/lucene/lucene-solr-6.5.1-RC1-revf88f850034eee845b8021af47ecffc9c42aa8539/solr/maven/org/apache/solr/solr-uima/maven-metadata.xml.md5
==============================================================================
--- dev/lucene/lucene-solr-6.5.1-RC1-revf88f850034eee845b8021af47ecffc9c42aa8539/solr/maven/org/apache/solr/solr-uima/maven-metadata.xml.md5 (added)
+++ dev/lucene/lucene-solr-6.5.1-RC1-revf88f850034eee845b8021af47ecffc9c42aa8539/solr/maven/org/apache/solr/solr-uima/maven-metadata.xml.md5 Mon Apr 10 02:55:08 2017
@@ -0,0 +1 @@
+7003bf81d228c79263f719e111c15a82
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.5.1-RC1-revf88f850034eee845b8021af47ecffc9c42aa8539/solr/maven/org/apache/solr/solr-uima/maven-metadata.xml.sha1
==============================================================================
--- dev/lucene/lucene-solr-6.5.1-RC1-revf88f850034eee845b8021af47ecffc9c42aa8539/solr/maven/org/apache/solr/solr-uima/maven-metadata.xml.sha1 (added)
+++ dev/lucene/lucene-solr-6.5.1-RC1-revf88f850034eee845b8021af47ecffc9c42aa8539/solr/maven/org/apache/solr/solr-uima/maven-metadata.xml.sha1 Mon Apr 10 02:55:08 2017
@@ -0,0 +1 @@
+d559c547e11a2dd7e8c6580e66f112a16c013173
\ No newline at end of file

Propchange: dev/lucene/lucene-solr-6.5.1-RC1-revf88f850034eee845b8021af47ecffc9c42aa8539/solr/maven/org/apache/solr/solr-uima/maven-metadata.xml.sha1
------------------------------------------------------------------------------
    svn:eol-style = native

Added: dev/lucene/lucene-solr-6.5.1-RC1-revf88f850034eee845b8021af47ecffc9c42aa8539/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-RC1-revf88f850034eee845b8021af47ecffc9c42aa8539/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-RC1-revf88f850034eee845b8021af47ecffc9c42aa8539/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-RC1-revf88f850034eee845b8021af47ecffc9c42aa8539/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-RC1-revf88f850034eee845b8021af47ecffc9c42aa8539/solr/maven/org/apache/solr/solr-velocity/6.5.1/solr-velocity-6.5.1-javadoc.jar.asc Mon Apr 10 02:55:08 2017
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Comment: GPGTools - https://gpgtools.org
+
+iQIcBAABCgAGBQJY6tD6AAoJEKM20MDuZMsenpIP/3xIQKysq+VQ3zXhJSL4ASm0
+h/rKzIndiUBK0L97lJbsvQ/qUphU0BByYy+iLuxeTVEJMBWggQh1PywCqg67yTMC
+4I+2lHhLrnVaykYaHFU7MA9Fht4RH/3Sm0m9wG80QNz2gqgxyLMnJr0sGe8fis4z
+8BqOAgDh0SkLQekezn/RJ04bTCAGOSl+DcREfCqLlOOEk58SyLhel6N6WohqK44I
+SInVErRHWyO0U/PT1dWQzijRZSPTfOHXw7wko3FAI/yxfoxUK2RQ5zOEv3KUs5pA
+0JQqSMQdjPZV2vZnx0maXu59ZvItdbLXOzm0HiPFRIzohPdyaQZZwTqWzf0tJzBR
+OHU3I+2X8EtOlcJ86wrOQbOKizAGVm7M3s6L1lKz+ZPHrhDX/1/XeaHqINnAAXTi
+KOqY7YMPxwBjwVoXdzhol1OZ0V2zhJH53DtnBec8SLsODNSEN3eu3lcCDpAuVRsm
+jTeaoCQHyrQJ6UcLBAcm0DkMVd/85sFlpNEoVqPe+LB6PGvOb8ql2gAWbCavjmTM
+Gd7amlkPr30yNczdyWLsnJA1BZKEHT250tW0bOQjFWz7/I+j+79Ltx05xIrkjXWl
+nBWqSgmLMHk7uqTrsHjfMMZUUDSItHIZBcwXJrwBQUI2EgluYCGDC2dRuxkvChtB
+cAjwvi79W/4YeDvn2mpz
+=uqJb
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-6.5.1-RC1-revf88f850034eee845b8021af47ecffc9c42aa8539/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-RC1-revf88f850034eee845b8021af47ecffc9c42aa8539/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-RC1-revf88f850034eee845b8021af47ecffc9c42aa8539/solr/maven/org/apache/solr/solr-velocity/6.5.1/solr-velocity-6.5.1-javadoc.jar.md5 Mon Apr 10 02:55:08 2017
@@ -0,0 +1 @@
+8c7d74e7746fa039d79ddc3058be793c
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.5.1-RC1-revf88f850034eee845b8021af47ecffc9c42aa8539/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-RC1-revf88f850034eee845b8021af47ecffc9c42aa8539/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-RC1-revf88f850034eee845b8021af47ecffc9c42aa8539/solr/maven/org/apache/solr/solr-velocity/6.5.1/solr-velocity-6.5.1-javadoc.jar.sha1 Mon Apr 10 02:55:08 2017
@@ -0,0 +1 @@
+3d6aca8016a858f1c0c7ae3f5642e6b9a38972c2
\ No newline at end of file

Propchange: dev/lucene/lucene-solr-6.5.1-RC1-revf88f850034eee845b8021af47ecffc9c42aa8539/solr/maven/org/apache/solr/solr-velocity/6.5.1/solr-velocity-6.5.1-javadoc.jar.sha1
------------------------------------------------------------------------------
    svn:eol-style = native

Added: dev/lucene/lucene-solr-6.5.1-RC1-revf88f850034eee845b8021af47ecffc9c42aa8539/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-RC1-revf88f850034eee845b8021af47ecffc9c42aa8539/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-RC1-revf88f850034eee845b8021af47ecffc9c42aa8539/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-RC1-revf88f850034eee845b8021af47ecffc9c42aa8539/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-RC1-revf88f850034eee845b8021af47ecffc9c42aa8539/solr/maven/org/apache/solr/solr-velocity/6.5.1/solr-velocity-6.5.1-sources.jar.asc Mon Apr 10 02:55:08 2017
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Comment: GPGTools - https://gpgtools.org
+
+iQIcBAABCgAGBQJY6tD6AAoJEKM20MDuZMsexykP/25F6acJVOiaCpTDKUwNHszz
+G6TmZXAM1JO/WpUGCf54pCXQ5YCL4sG77WF8/7vmJJ44v73BrnO+0io4Ru/Tx6At
+GMYNUrYrOuTGE0/PbM+WnFQgwE++2oy25hMtfSv+Mmb+RBBH3tgWAClGv7Ifw47i
+5f5RySyZi6I20wsGi4m8VxSPtD3NxMgCskxFYZE7q5+JvOVD3HmHIDuNMbPAzK0Q
+EnD40RS+LMegZBHZmCNqwQTkA73BamuaeMdr7jWJI1lgNMc6jNx+k4K6z0Sb+Y7B
+Z2wyeRBbtuj8ijtVC7zCJmpJSqPACuLw/zNijtyImeuDK2UjDSu6bMmGt8yydM/Y
+7/N3dc/NLh6P5VehHZicDObMEuuU72D17QIVaSYrKDZK+LLiOddQXTRiMIKxKLbb
+tDzgrpbnVC8fZqIYNubpNVyczZqot15Qcc0NcK8BTXYt2zYDyi5kFvoL+nBxYU96
+QqTj8Xi4zq4k7+027XbyOrplMXidGKWhbKQ2QrHRIpYPaox6hMQw5nlWCWPUv9my
+5o/DSMqXMG5l0MEHCidpmA2LyIGDvye3jOwAZ/BU/Y8rHAA9GXINlanDzFPSbS6c
+nfIBzPVSWvcXdRcccOcsq9CfbeEtx6Mr08M/BgeKtfWZcMUlgNvwZaRLBtTnIPdo
+aQ8BH19TKdL8HDXUJx0T
+=lfYO
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-6.5.1-RC1-revf88f850034eee845b8021af47ecffc9c42aa8539/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-RC1-revf88f850034eee845b8021af47ecffc9c42aa8539/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-RC1-revf88f850034eee845b8021af47ecffc9c42aa8539/solr/maven/org/apache/solr/solr-velocity/6.5.1/solr-velocity-6.5.1-sources.jar.md5 Mon Apr 10 02:55:08 2017
@@ -0,0 +1 @@
+91d9e207c905c80c7dd3c6ade2fe5144
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.5.1-RC1-revf88f850034eee845b8021af47ecffc9c42aa8539/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-RC1-revf88f850034eee845b8021af47ecffc9c42aa8539/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-RC1-revf88f850034eee845b8021af47ecffc9c42aa8539/solr/maven/org/apache/solr/solr-velocity/6.5.1/solr-velocity-6.5.1-sources.jar.sha1 Mon Apr 10 02:55:08 2017
@@ -0,0 +1 @@
+aabbd3f868c3a0b4435478325f133a49451a068d
\ No newline at end of file

Propchange: dev/lucene/lucene-solr-6.5.1-RC1-revf88f850034eee845b8021af47ecffc9c42aa8539/solr/maven/org/apache/solr/solr-velocity/6.5.1/solr-velocity-6.5.1-sources.jar.sha1
------------------------------------------------------------------------------
    svn:eol-style = native

Added: dev/lucene/lucene-solr-6.5.1-RC1-revf88f850034eee845b8021af47ecffc9c42aa8539/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-RC1-revf88f850034eee845b8021af47ecffc9c42aa8539/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-RC1-revf88f850034eee845b8021af47ecffc9c42aa8539/solr/maven/org/apache/solr/solr-velocity/6.5.1/solr-velocity-6.5.1.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-6.5.1-RC1-revf88f850034eee845b8021af47ecffc9c42aa8539/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-RC1-revf88f850034eee845b8021af47ecffc9c42aa8539/solr/maven/org/apache/solr/solr-velocity/6.5.1/solr-velocity-6.5.1.jar.asc Mon Apr 10 02:55:08 2017
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Comment: GPGTools - https://gpgtools.org
+
+iQIcBAABCgAGBQJY6tD6AAoJEKM20MDuZMseQ+IQAN/7Zt2tFQmNfz6GcmS2Wkuv
+pxEsz6PDRcBaoIRyxeI2uWCXj4AbWkCVQFyWjoHdaVY6KmeCj8EIZ1dB6qR/CzW0
+PhUgm7cwTAF8MpPRUZwCdn2x0uNZWyB8NmFrJ3gBbRb1/VHMKmnjiHdgwvJwqD/t
+dL5rSCgb5Rz7TiEDpql05vjsaGcSU3f5j8gsy0NhGxn4TM3rxAsd6+G8mIbeERy5
+iN15PDCE0gj9lM/51GdVYnJSlxutp4pQXUkB7mSfJqLvH47vljtdy5oShzCtPj+l
+hdMoxq64JPu5wrKv147heYu8R+GNmB4bOyhrt9YEtiN4c9kPGm/APj41fNLk0B/7
+FsEVCTYJO/FJQfbDHf3cH4RrgZQOEGUACxn9bfQhfd2NQ2iX5uBQi5E7ik8oaVdZ
+SA8CRioB4NGMDYrTGBmhC/yYObkbwT+ZElObNKy8yocfIv6Yfqa5BxjAuSYtq/RZ
+XaIcIbDLfL8NVb7haclQFmSMxqkPwkTp1bGuCtZ0oRUCgXjlQIYT31TRIvN9jqdc
+YDgxeQnFDmAaGXjviuPnpLyhkGnOgk1mODFU+bh6AEAD2oPLKrY0hYSRK/os6rFS
+ELGXzhEPz/csQYegoUSgSxKvHTuDWUXaelIcDq5TmcwplJrP5GHiwouEw67smw/y
+4F1YsYqYlTeLp8Zx9arl
+=QYcY
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-6.5.1-RC1-revf88f850034eee845b8021af47ecffc9c42aa8539/solr/maven/org/apache/solr/solr-velocity/6.5.1/solr-velocity-6.5.1.jar.md5
==============================================================================
--- dev/lucene/lucene-solr-6.5.1-RC1-revf88f850034eee845b8021af47ecffc9c42aa8539/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-RC1-revf88f850034eee845b8021af47ecffc9c42aa8539/solr/maven/org/apache/solr/solr-velocity/6.5.1/solr-velocity-6.5.1.jar.md5 Mon Apr 10 02:55:08 2017
@@ -0,0 +1 @@
+c1ecab8c936783301e123ee0cf1824dd
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.5.1-RC1-revf88f850034eee845b8021af47ecffc9c42aa8539/solr/maven/org/apache/solr/solr-velocity/6.5.1/solr-velocity-6.5.1.jar.sha1
==============================================================================
--- dev/lucene/lucene-solr-6.5.1-RC1-revf88f850034eee845b8021af47ecffc9c42aa8539/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-RC1-revf88f850034eee845b8021af47ecffc9c42aa8539/solr/maven/org/apache/solr/solr-velocity/6.5.1/solr-velocity-6.5.1.jar.sha1 Mon Apr 10 02:55:08 2017
@@ -0,0 +1 @@
+5060a4f64be156dc9635c333bd8d777b9260de57
\ No newline at end of file

Propchange: dev/lucene/lucene-solr-6.5.1-RC1-revf88f850034eee845b8021af47ecffc9c42aa8539/solr/maven/org/apache/solr/solr-velocity/6.5.1/solr-velocity-6.5.1.jar.sha1
------------------------------------------------------------------------------
    svn:eol-style = native

Added: dev/lucene/lucene-solr-6.5.1-RC1-revf88f850034eee845b8021af47ecffc9c42aa8539/solr/maven/org/apache/solr/solr-velocity/6.5.1/solr-velocity-6.5.1.pom
==============================================================================
--- dev/lucene/lucene-solr-6.5.1-RC1-revf88f850034eee845b8021af47ecffc9c42aa8539/solr/maven/org/apache/solr/solr-velocity/6.5.1/solr-velocity-6.5.1.pom (added)
+++ dev/lucene/lucene-solr-6.5.1-RC1-revf88f850034eee845b8021af47ecffc9c42aa8539/solr/maven/org/apache/solr/solr-velocity/6.5.1/solr-velocity-6.5.1.pom Mon Apr 10 02:55:08 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>

Propchange: dev/lucene/lucene-solr-6.5.1-RC1-revf88f850034eee845b8021af47ecffc9c42aa8539/solr/maven/org/apache/solr/solr-velocity/6.5.1/solr-velocity-6.5.1.pom
------------------------------------------------------------------------------
    svn:eol-style = native

Added: dev/lucene/lucene-solr-6.5.1-RC1-revf88f850034eee845b8021af47ecffc9c42aa8539/solr/maven/org/apache/solr/solr-velocity/6.5.1/solr-velocity-6.5.1.pom.asc
==============================================================================
--- dev/lucene/lucene-solr-6.5.1-RC1-revf88f850034eee845b8021af47ecffc9c42aa8539/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-RC1-revf88f850034eee845b8021af47ecffc9c42aa8539/solr/maven/org/apache/solr/solr-velocity/6.5.1/solr-velocity-6.5.1.pom.asc Mon Apr 10 02:55:08 2017
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Comment: GPGTools - https://gpgtools.org
+
+iQIcBAABCgAGBQJY6tD6AAoJEKM20MDuZMsesbQQAOpV8FP1A/B3SL/451eYsrp2
+pboukitqfeHEjhqpAM3g4cEXSRt2/X4vSc5g7SYZquCBz+vnTrrPnvQdOu8nF1/F
+RQQ/PlhVAuPXgyCuhuvwzzyS4CEFRoZsACKceleEBpJa1Ut9TuhxryiQpdnDkbr5
+308cbnS1HPj9KqgIzj59PqeKvXXVtdWNqaVwRRBdtxR66hRRCZT46d2Rj7lBPMZT
+XULpwsYIWKPCA1UNQ+HqLcKmNQJaw/aS4UMGFd9kHr3Qcn4XGFAOm6TwcErS/qnp
+k7vWCMjSTq871zSR5s2u4LNUujyr9A9wNdw/nos9Gn5I+KZqO9p933Od2oozabZW
+j88RGHMGADtJavF37V7OdtOGpAomToaEcKJGGv+HRcKs5l1tZYhfx/WDbzLmZSOZ
+g6RDKKsAST8uPUKgg5HcNE63EXFIDvGkDniUViLatg5ySJ1dv7aNm36y9mnLZI7I
+LYuDsZ5rezR9ZI8U7JE7CMYpNCsaMWpIYD1fJz7rl/8ylLTmTEr5OvwuJbUTC1L4
+G7FHN2AXH2WiJpR7+qNdwIu961iaKfIU8OUKr27yXgAMnpPweyBPT9f6d6pyYpOV
+rh4bvHU0KMWGPZTk2pcNcR5TN/Fkf5XSEpmwSTtOJmKLWi3f1ObsNf5FB+f7WoB9
+xqNYkEiSHHqSnP3Ly8Af
+=nYUx
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-6.5.1-RC1-revf88f850034eee845b8021af47ecffc9c42aa8539/solr/maven/org/apache/solr/solr-velocity/6.5.1/solr-velocity-6.5.1.pom.md5
==============================================================================
--- dev/lucene/lucene-solr-6.5.1-RC1-revf88f850034eee845b8021af47ecffc9c42aa8539/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-RC1-revf88f850034eee845b8021af47ecffc9c42aa8539/solr/maven/org/apache/solr/solr-velocity/6.5.1/solr-velocity-6.5.1.pom.md5 Mon Apr 10 02:55:08 2017
@@ -0,0 +1 @@
+c39a5951414a5daf739cec43ea3316f2
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.5.1-RC1-revf88f850034eee845b8021af47ecffc9c42aa8539/solr/maven/org/apache/solr/solr-velocity/6.5.1/solr-velocity-6.5.1.pom.sha1
==============================================================================
--- dev/lucene/lucene-solr-6.5.1-RC1-revf88f850034eee845b8021af47ecffc9c42aa8539/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-RC1-revf88f850034eee845b8021af47ecffc9c42aa8539/solr/maven/org/apache/solr/solr-velocity/6.5.1/solr-velocity-6.5.1.pom.sha1 Mon Apr 10 02:55:08 2017
@@ -0,0 +1 @@
+7763e71fe71929f63b777f9a4a4e06d0a2a8e9c7
\ No newline at end of file

Propchange: dev/lucene/lucene-solr-6.5.1-RC1-revf88f850034eee845b8021af47ecffc9c42aa8539/solr/maven/org/apache/solr/solr-velocity/6.5.1/solr-velocity-6.5.1.pom.sha1
------------------------------------------------------------------------------
    svn:eol-style = native

Added: dev/lucene/lucene-solr-6.5.1-RC1-revf88f850034eee845b8021af47ecffc9c42aa8539/solr/maven/org/apache/solr/solr-velocity/maven-metadata.xml
==============================================================================
--- dev/lucene/lucene-solr-6.5.1-RC1-revf88f850034eee845b8021af47ecffc9c42aa8539/solr/maven/org/apache/solr/solr-velocity/maven-metadata.xml (added)
+++ dev/lucene/lucene-solr-6.5.1-RC1-revf88f850034eee845b8021af47ecffc9c42aa8539/solr/maven/org/apache/solr/solr-velocity/maven-metadata.xml Mon Apr 10 02:55:08 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>20170410002520</lastUpdated>
+  </versioning>
+</metadata>

Propchange: dev/lucene/lucene-solr-6.5.1-RC1-revf88f850034eee845b8021af47ecffc9c42aa8539/solr/maven/org/apache/solr/solr-velocity/maven-metadata.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Added: dev/lucene/lucene-solr-6.5.1-RC1-revf88f850034eee845b8021af47ecffc9c42aa8539/solr/maven/org/apache/solr/solr-velocity/maven-metadata.xml.md5
==============================================================================
--- dev/lucene/lucene-solr-6.5.1-RC1-revf88f850034eee845b8021af47ecffc9c42aa8539/solr/maven/org/apache/solr/solr-velocity/maven-metadata.xml.md5 (added)
+++ dev/lucene/lucene-solr-6.5.1-RC1-revf88f850034eee845b8021af47ecffc9c42aa8539/solr/maven/org/apache/solr/solr-velocity/maven-metadata.xml.md5 Mon Apr 10 02:55:08 2017
@@ -0,0 +1 @@
+329cc3674b0f00be18312666b30046d7
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.5.1-RC1-revf88f850034eee845b8021af47ecffc9c42aa8539/solr/maven/org/apache/solr/solr-velocity/maven-metadata.xml.sha1
==============================================================================
--- dev/lucene/lucene-solr-6.5.1-RC1-revf88f850034eee845b8021af47ecffc9c42aa8539/solr/maven/org/apache/solr/solr-velocity/maven-metadata.xml.sha1 (added)
+++ dev/lucene/lucene-solr-6.5.1-RC1-revf88f850034eee845b8021af47ecffc9c42aa8539/solr/maven/org/apache/solr/solr-velocity/maven-metadata.xml.sha1 Mon Apr 10 02:55:08 2017
@@ -0,0 +1 @@
+babda1267ef14b4bcf395eaa446a998e2a15386a
\ No newline at end of file

Propchange: dev/lucene/lucene-solr-6.5.1-RC1-revf88f850034eee845b8021af47ecffc9c42aa8539/solr/maven/org/apache/solr/solr-velocity/maven-metadata.xml.sha1
------------------------------------------------------------------------------
    svn:eol-style = native

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

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