You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by jp...@apache.org on 2017/02/01 16:59:36 UTC

svn commit: r18068 [23/24] - in /dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e: ./ 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.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-test-framework/6.4.1/solr-test-framework-6.4.1.pom
==============================================================================
--- dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-test-framework/6.4.1/solr-test-framework-6.4.1.pom (added)
+++ dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-test-framework/6.4.1/solr-test-framework-6.4.1.pom Wed Feb  1 16:59:34 2017
@@ -0,0 +1,463 @@
+<!--
+  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.4.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.facebook.presto</groupId>
+      <artifactId>presto-parser</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.fasterxml.jackson.core</groupId>
+      <artifactId>jackson-core</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.airlift</groupId>
+      <artifactId>slice</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>org.antlr</groupId>
+      <artifactId>antlr4-runtime</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.ant</groupId>
+      <artifactId>ant</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.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.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-test-framework/6.4.1/solr-test-framework-6.4.1.pom
------------------------------------------------------------------------------
    svn:eol-style = native

Added: dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-test-framework/6.4.1/solr-test-framework-6.4.1.pom.asc
==============================================================================
--- dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-test-framework/6.4.1/solr-test-framework-6.4.1.pom.asc (added)
+++ dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-test-framework/6.4.1/solr-test-framework-6.4.1.pom.asc Wed Feb  1 16:59:34 2017
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v1
+
+iQIcBAABAgAGBQJYkegoAAoJEAUaD692vGUHidQQAIvJcbje8sN2CQxX2atF770l
+JyAzmbApik+ptchBOHFKLAaxdgrTNK0i+oYhQNWaV9mfztHjtM1vGpPXFkWdopcU
+Gahc/HE5pXmLsNPofQX2DpqmrbmVRWz0KK/MudifqKpJ9SvaH5M4z5mK7g2v2Pfw
+0i+nTmx63dbheLRACtgwAYO1yx1jWH2lvtYCd2WknGgOPZggDE4Xj3amUMO6/QKN
+hxj5nuU6L9azOAhoCRzaPzFGZJSFuNdGgB36YGWz6TJ0FUhaHS0ETSs7FCO91ZyP
+jkOBYeoGjVeQvTs9FR4JAXjd/beOgtgH/rwei9CIvb8nEZPo5GgytKjDm21cvWw3
+Cr44jsReBFgNhv3jJGwae3ymSX+WJ4axk252HwzseEsIoH3BMVqjLntpxb7VsWkq
+Fhlbb73nNiEw+rbtG+Fk4b49RcJJ0c+zk+dEImSK40s7oON8IdE62tM0uG8lxyMs
+R0p3pacz0uBuJ0vVYeQTl58pn17ptaVoxS4sStK6zB6OyQwvJvjArT9OAhAzj8kX
+hqVPo4x9NadXP1pcI8gi+9rnBrEP5bajhr9oyGa/PntmGlcibk8p18y2oXO2OhQF
+czRaII3lwOefAOJmVUue6kQ6I6WI/PdGM0nnJMCqLu0lSsrSFGQt2qtP/Oed0j3i
+UUjtfL6PKMj2YXrCR7u5
+=Et/b
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-test-framework/6.4.1/solr-test-framework-6.4.1.pom.md5
==============================================================================
--- dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-test-framework/6.4.1/solr-test-framework-6.4.1.pom.md5 (added)
+++ dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-test-framework/6.4.1/solr-test-framework-6.4.1.pom.md5 Wed Feb  1 16:59:34 2017
@@ -0,0 +1 @@
+0be9ebe9ce2fa41c735095fba55addc9
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-test-framework/6.4.1/solr-test-framework-6.4.1.pom.sha1
==============================================================================
--- dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-test-framework/6.4.1/solr-test-framework-6.4.1.pom.sha1 (added)
+++ dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-test-framework/6.4.1/solr-test-framework-6.4.1.pom.sha1 Wed Feb  1 16:59:34 2017
@@ -0,0 +1 @@
+4330ebc2af5d56c956d6ca3f7b42323c81d8a867
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-test-framework/maven-metadata.xml
==============================================================================
--- dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-test-framework/maven-metadata.xml (added)
+++ dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-test-framework/maven-metadata.xml Wed Feb  1 16:59:34 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.4.1</version>
+  <versioning>
+    <versions>
+      <version>6.4.1</version>
+    </versions>
+    <lastUpdated>20170201135110</lastUpdated>
+  </versioning>
+</metadata>

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

Added: dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-test-framework/maven-metadata.xml.md5
==============================================================================
--- dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-test-framework/maven-metadata.xml.md5 (added)
+++ dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-test-framework/maven-metadata.xml.md5 Wed Feb  1 16:59:34 2017
@@ -0,0 +1 @@
+5e19e942f590e613f23a6e433a3e9148
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-test-framework/maven-metadata.xml.sha1
==============================================================================
--- dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-test-framework/maven-metadata.xml.sha1 (added)
+++ dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-test-framework/maven-metadata.xml.sha1 Wed Feb  1 16:59:34 2017
@@ -0,0 +1 @@
+65e4d9071712f61d96186f33f6f1cddb266447d3
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-uima/6.4.1/solr-uima-6.4.1-javadoc.jar
==============================================================================
Binary file - no diff available.

Propchange: dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-uima/6.4.1/solr-uima-6.4.1-javadoc.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-uima/6.4.1/solr-uima-6.4.1-javadoc.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-uima/6.4.1/solr-uima-6.4.1-javadoc.jar.asc (added)
+++ dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-uima/6.4.1/solr-uima-6.4.1-javadoc.jar.asc Wed Feb  1 16:59:34 2017
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v1
+
+iQIcBAABAgAGBQJYkegoAAoJEAUaD692vGUH+XAQAIfCMD+JFGPOsau7DftlFmQC
+yN39T7wUTCDmD5CU/Kl8uUkhlFZqd2ZGWxSyV2O/yzYdidnqCp1TOmqXandXwrz2
+TGpzWMMQLGwFdQHVxoxYhBcnbnlEgzTs1CHue1QkSH4fJytNvJPXs8gmLUCKL2ug
+bloxkKk5oQeVlzq3YnUOZ2Ygmgu5aviufBKDfdp/ESaQVJWBZchRYWPR/4CzbLUo
+zwQG5JwE6ZSxdlB712vU5mdFfuAocVGsI8xpbMgALyTWN7uM0j0iTKqYJb6alaT+
+NisXsSTw5AXDXH9V3fmUDBeI4crXT3hZ6ytwDgVta9W6eGUNtzxIT1KEVJCNlRTm
+3TEvMTSNilNhF9DQsKEcdLM4ce1SAbSfcoYDWCjGjbvB1rvo3Ds4KgDJNKHm2qbP
+7pE0P2iTSHHWQz4pDUzuRgXau9vo1U+qKkB+SvkzZu5pHJtUYmT99KHV9iIE8/cd
+sRHOKB8IZi0ym/v2R/m7og91z6NzfLAJ8j5zAa3PhB497jzftMz8alsJNDYgiu2V
+885BkCfUOAjYQF1fkFMEeHI+E4cV5KltcrHmFKiMfdECvs2awvGlrTinu2G+U3I5
+zBVaUkFrbmrg09l2Ve6eO3cWI/kECRQrSOTMsp6QR89sD0fI/zy75GRity8OCfBa
+9y6yWjacphHE3JyIIDEQ
+=PTwH
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-uima/6.4.1/solr-uima-6.4.1-javadoc.jar.md5
==============================================================================
--- dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-uima/6.4.1/solr-uima-6.4.1-javadoc.jar.md5 (added)
+++ dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-uima/6.4.1/solr-uima-6.4.1-javadoc.jar.md5 Wed Feb  1 16:59:34 2017
@@ -0,0 +1 @@
+b2654dfe985da21377f5645e77cc86dd
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-uima/6.4.1/solr-uima-6.4.1-javadoc.jar.sha1
==============================================================================
--- dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-uima/6.4.1/solr-uima-6.4.1-javadoc.jar.sha1 (added)
+++ dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-uima/6.4.1/solr-uima-6.4.1-javadoc.jar.sha1 Wed Feb  1 16:59:34 2017
@@ -0,0 +1 @@
+da8f669cfbfbd4c15c54d5d2ce44ade111fd21cc
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-uima/6.4.1/solr-uima-6.4.1-sources.jar
==============================================================================
Binary file - no diff available.

Propchange: dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-uima/6.4.1/solr-uima-6.4.1-sources.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-uima/6.4.1/solr-uima-6.4.1-sources.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-uima/6.4.1/solr-uima-6.4.1-sources.jar.asc (added)
+++ dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-uima/6.4.1/solr-uima-6.4.1-sources.jar.asc Wed Feb  1 16:59:34 2017
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v1
+
+iQIcBAABAgAGBQJYkegoAAoJEAUaD692vGUHziwQANPk5oKxPbLuldjPwgMxCuPZ
+r6DkKV9i2vAqZ0vmKyw8+TirBmKCpNUFLHEsVpiJVVEuEc3Euje8zsMzz33x61VT
+IDa3JrmLH8JVmJWB5KmVtup8XC8FpK9ig3mnbnjZuB+rilrskAVEvD/FlzpE4+V4
+oUjsAPayKMqOJZfeti81cYv3tmnkEutR1+k5xI579y/xEMtKTATiiSWmTXiVJLhu
+4qJsIBamvCi0BzQzxFYUWZ5LLIA23eA5y3nn7GTzAwqw0KBSzChv49VycR9TcMWR
+c4e6q7Dq69FHNyYSuI6aIRiU82BQyX2Zdy5lFoROcg7CfsgjUZrQMgkIAvvIya/r
+H6S7rnnTFrtZVC9+AlRXXOxfnuN32UzKURpSIujatz4PV23ayADwyskBfjDgT7Cc
+YNWcBH+/lByXL6S8WoY8GYY/BEBg2dpHCZC05V4OggB7On+CZ57qncJUAbtFYmDJ
+/7xozJiyF0aeUgfWFU0JceMJIvE+AU4ghhkxusshNumvllfHoZQEporIrQTeJbIm
+YcBw0ASeh8XVJrVOTzCiDxMXFhIrkVRO6H96Sz36qKRQDlSWIH0Lull5uvLOGczx
+x17IxDhlXGThZ8b044uUTHGk37ITdfjO6UCQRDF0NVcNrSpPmoV0bDLevofRYOsW
+QXI152qNIXH/nlfSped/
+=POHp
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-uima/6.4.1/solr-uima-6.4.1-sources.jar.md5
==============================================================================
--- dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-uima/6.4.1/solr-uima-6.4.1-sources.jar.md5 (added)
+++ dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-uima/6.4.1/solr-uima-6.4.1-sources.jar.md5 Wed Feb  1 16:59:34 2017
@@ -0,0 +1 @@
+c303c6500cb7b072e4c9822b82b8697c
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-uima/6.4.1/solr-uima-6.4.1-sources.jar.sha1
==============================================================================
--- dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-uima/6.4.1/solr-uima-6.4.1-sources.jar.sha1 (added)
+++ dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-uima/6.4.1/solr-uima-6.4.1-sources.jar.sha1 Wed Feb  1 16:59:34 2017
@@ -0,0 +1 @@
+a44c4c75102cbe65e8917c5dcdc469f9f0a78718
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-uima/6.4.1/solr-uima-6.4.1.jar
==============================================================================
Binary file - no diff available.

Propchange: dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-uima/6.4.1/solr-uima-6.4.1.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-uima/6.4.1/solr-uima-6.4.1.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-uima/6.4.1/solr-uima-6.4.1.jar.asc (added)
+++ dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-uima/6.4.1/solr-uima-6.4.1.jar.asc Wed Feb  1 16:59:34 2017
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v1
+
+iQIcBAABAgAGBQJYkegpAAoJEAUaD692vGUHNu8QAMVofHTE4S/04eeFZRTcgFts
+B0MjrRzDSOpaAJLL8/HJ3PqhNrtcesvYh4gYot9QS0e8DMTqsTVqMatxGQ2ZYgWD
+GAmwGijxJWFsW05MWf6C7KdAfdAp2ICxpI70xXUA+DuH15VHCOoImh/VGSUI6N9E
+cI0tU1HZ6fzuJ2SObS5qLUYoqWVooc/M8dmES70yMRsCX60c5Ias8sjbLad6r6eA
+GIqRSwNZsuqcNUUptG+8+6lGp5hEd7XIvECzGYocaSnBjRxUfPUyhgjvKZpIuF4/
+uZPRntVW8i8lQv1WyPIkgQzFQ3JQ8vZTx2qbqFehVlV2NYvKvTt5DMPSX3JsLDuC
+lI57kwGB94be2sM4ibRRErAViIMXDmvvyTGMYpF2B2/r+1d9ql40k4RbgUJBSr79
+ZSE85o9sxssv8dTT3RTFaIv+WoLex1izuyEagzttxOQ2Rz8KvoVgXJKJd/gXWyn9
+0MwTl0ZiuzIVh5fZFuI2WIfHmyVgUlsEMsVH3e0qnkTZa0UT3+ImBQ95z5XW9IQU
+MHrl2WAJYP3CUV5UVY05Rwdgfc8RuUkt+K6rDs2kETwkjvPdP1qr1QGqFnz1uX4r
+Y/X19RLSeoQtd/xSKsNI4EdnA6jRLdASWZZq9BNYvj2OEwzJRWZr2HVMwfwxgYyu
+d7c4VaJAvmcQrEgvsOp6
+=rpC/
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-uima/6.4.1/solr-uima-6.4.1.jar.md5
==============================================================================
--- dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-uima/6.4.1/solr-uima-6.4.1.jar.md5 (added)
+++ dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-uima/6.4.1/solr-uima-6.4.1.jar.md5 Wed Feb  1 16:59:34 2017
@@ -0,0 +1 @@
+b0af2a68fa32f1b37942ce307d7cd27a
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-uima/6.4.1/solr-uima-6.4.1.jar.sha1
==============================================================================
--- dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-uima/6.4.1/solr-uima-6.4.1.jar.sha1 (added)
+++ dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-uima/6.4.1/solr-uima-6.4.1.jar.sha1 Wed Feb  1 16:59:34 2017
@@ -0,0 +1 @@
+7aaffad595b7d75de780f9cc1a2563375641e785
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-uima/6.4.1/solr-uima-6.4.1.pom
==============================================================================
--- dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-uima/6.4.1/solr-uima-6.4.1.pom (added)
+++ dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-uima/6.4.1/solr-uima-6.4.1.pom Wed Feb  1 16:59:34 2017
@@ -0,0 +1,459 @@
+<!--
+  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.4.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.facebook.presto</groupId>
+      <artifactId>presto-parser</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.fasterxml.jackson.core</groupId>
+      <artifactId>jackson-core</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.airlift</groupId>
+      <artifactId>slice</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>org.antlr</groupId>
+      <artifactId>antlr4-runtime</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.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.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-uima/6.4.1/solr-uima-6.4.1.pom
------------------------------------------------------------------------------
    svn:eol-style = native

Added: dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-uima/6.4.1/solr-uima-6.4.1.pom.asc
==============================================================================
--- dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-uima/6.4.1/solr-uima-6.4.1.pom.asc (added)
+++ dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-uima/6.4.1/solr-uima-6.4.1.pom.asc Wed Feb  1 16:59:34 2017
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v1
+
+iQIcBAABAgAGBQJYkegpAAoJEAUaD692vGUHnEoP/ivhV73gYnlWGwdx0rcxQlpg
+99yi0mjH8rZiXR4Mctv8UgjhWfGd8Cj3d+N415Mu3iEKpPl+qRSUHyVaNUkRNlco
+33PSCVGLp2KNNQ35uEy2dnASCHKDFgYqo7cusaR7WBymFcNmugUe7zE1wqVLgXac
+PAE1xXiXVLtlhTyUthJTZo/vHJAO9gmFHLw+ZfxwpTKU6KqZcF+ngeWCloBP8le7
+QK+BoFsk86EDjrdXZUlFkAbGRxr/Mu0MOpug7PBOyuVGKRUWtxz9C9aOde22MW/I
+1LH/lj1tR2xWQRn2oSdDtydDJLkpT7y8xPfZTy9nLD1ic2jLhY/eW08ksopbZ8wI
+Wy/qbFyGs0iY1/BD+LLZU8gBn4hivTbC1NSyRW44416HpBVqCGpMF/tb7YQUT2Yk
+IV0703CIrC+25woiFMrccIDzKlv53xNu3DbFsluNBoBIrY2rLLZObpw9NUyHLpiA
+FQWlrh6WaiBgelew4N3ZVRiFAfdjcfUHO7IIvGpfK/xfgm2+IiQVWrBamrQtDiNJ
+s7FYDCNplk7CE9xvJ21IxkTCTIx1IC8fmMVLAgK7PkazkqpfI8umR94N0nY8DwR6
+1JhAoxam4SrozbpGdjPPNUo3rBdRhJzcBNnTM+/S0Xe2E73ekaPVPmjFKIWFsIxe
+FbZwkiQiXw4zCVW2F4L+
+=ntsv
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-uima/6.4.1/solr-uima-6.4.1.pom.md5
==============================================================================
--- dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-uima/6.4.1/solr-uima-6.4.1.pom.md5 (added)
+++ dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-uima/6.4.1/solr-uima-6.4.1.pom.md5 Wed Feb  1 16:59:34 2017
@@ -0,0 +1 @@
+cbdf6dafd0bfefee5aea55eee60b82a6
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-uima/6.4.1/solr-uima-6.4.1.pom.sha1
==============================================================================
--- dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-uima/6.4.1/solr-uima-6.4.1.pom.sha1 (added)
+++ dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-uima/6.4.1/solr-uima-6.4.1.pom.sha1 Wed Feb  1 16:59:34 2017
@@ -0,0 +1 @@
+9a0f0860d8a7ff98b13d87b52d0e611fa2bef48f
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-uima/maven-metadata.xml
==============================================================================
--- dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-uima/maven-metadata.xml (added)
+++ dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-uima/maven-metadata.xml Wed Feb  1 16:59:34 2017
@@ -0,0 +1,12 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<metadata>
+  <groupId>org.apache.solr</groupId>
+  <artifactId>solr-uima</artifactId>
+  <version>6.4.1</version>
+  <versioning>
+    <versions>
+      <version>6.4.1</version>
+    </versions>
+    <lastUpdated>20170201135206</lastUpdated>
+  </versioning>
+</metadata>

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

Added: dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-uima/maven-metadata.xml.md5
==============================================================================
--- dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-uima/maven-metadata.xml.md5 (added)
+++ dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-uima/maven-metadata.xml.md5 Wed Feb  1 16:59:34 2017
@@ -0,0 +1 @@
+7bcb27dcb0335448900ae177a615a4ea
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-uima/maven-metadata.xml.sha1
==============================================================================
--- dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-uima/maven-metadata.xml.sha1 (added)
+++ dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-uima/maven-metadata.xml.sha1 Wed Feb  1 16:59:34 2017
@@ -0,0 +1 @@
+937fb2207e02c38faa5859fa00745ae8e8c68760
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-velocity/6.4.1/solr-velocity-6.4.1-javadoc.jar
==============================================================================
Binary file - no diff available.

Propchange: dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-velocity/6.4.1/solr-velocity-6.4.1-javadoc.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-velocity/6.4.1/solr-velocity-6.4.1-javadoc.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-velocity/6.4.1/solr-velocity-6.4.1-javadoc.jar.asc (added)
+++ dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-velocity/6.4.1/solr-velocity-6.4.1-javadoc.jar.asc Wed Feb  1 16:59:34 2017
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v1
+
+iQIcBAABAgAGBQJYkegqAAoJEAUaD692vGUHQzgP/3tsb3myvwEZZjDXGWoIMWcX
+QEaUXEsgXYT99nhcGs4BXcxRtHJyapvigrgTLwqTGsF5ZwvEuxsRnlp3VhZh6ltC
+4IwR/l/lXTOsU7y7E9mdRnCS3nJKX7CecUsUw5HcJana+v0/oH2F7IchE5tKXNNX
+SMUQdpn2g6Yw7vT/Y32l/j1sXoN4y6neWZ8k3/I/2pKzXtSfm5HyyxW9K/BfQ7yN
+IjrIOApgCbh5DfAHsRNyAvviPSjAx0XaFWnKyXC9Nq1+/7N+EJxWiH5VtnOH1zN3
+IwJi425H/8ILQn8nmyPL7ImTZ92P04Zf0mnrAnQtW1OQBW60qui5SGL+NDT/WMfe
+DzSDPTwsgCjFscIuA0Cv+CaWcg79ndO8R/VQUQYGSIMne2FqkaSO+JlfE8Bp/52g
+L4CgAqpGK8kAu31KnYyL9npj9BQUnaTLT2P48Sv7TyiKdOlnAhW1UsTqnJyZ7DU2
+Sq7dw/IXdb8ZMEoycUunsZXH7n0fGiFJrOPRb2DRo9XFlwDx6eYJKulZBoB46bvC
+cyWaXzHW3zw0aXUqhnLp8/D0wQvLd3Ev61mg1/2NvwDxm/deSgC3mv/mL1j9oJgr
+aCentAd4cXPzSXRCgGZ4M2HrBV4xHC72ip6wR1r0akAZ7zbG55mn4PN7pJjUvhE9
+66zxQt0NyCSTGS5FV4tF
+=CjnY
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-velocity/6.4.1/solr-velocity-6.4.1-javadoc.jar.md5
==============================================================================
--- dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-velocity/6.4.1/solr-velocity-6.4.1-javadoc.jar.md5 (added)
+++ dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-velocity/6.4.1/solr-velocity-6.4.1-javadoc.jar.md5 Wed Feb  1 16:59:34 2017
@@ -0,0 +1 @@
+5998c6993df542e6db237f480f8d90c8
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-velocity/6.4.1/solr-velocity-6.4.1-javadoc.jar.sha1
==============================================================================
--- dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-velocity/6.4.1/solr-velocity-6.4.1-javadoc.jar.sha1 (added)
+++ dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-velocity/6.4.1/solr-velocity-6.4.1-javadoc.jar.sha1 Wed Feb  1 16:59:34 2017
@@ -0,0 +1 @@
+b37e4bd26df4f24269714ae2f1a82ee7e2152c07
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-velocity/6.4.1/solr-velocity-6.4.1-sources.jar
==============================================================================
Binary file - no diff available.

Propchange: dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-velocity/6.4.1/solr-velocity-6.4.1-sources.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-velocity/6.4.1/solr-velocity-6.4.1-sources.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-velocity/6.4.1/solr-velocity-6.4.1-sources.jar.asc (added)
+++ dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-velocity/6.4.1/solr-velocity-6.4.1-sources.jar.asc Wed Feb  1 16:59:34 2017
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v1
+
+iQIcBAABAgAGBQJYkegqAAoJEAUaD692vGUHICgQAOQjgM8eWWYXQAzRSGtbLpCi
+LZJXUsaCkEHxvVI8KvPXm7I4VD5N9rtP37ofMWgffh/jJYCDaHwUKWR4MF0CTsHI
+jsvFv3hoCrlXL78aPhOy3DFf7m9azwe7vdVhjYh9hE+UuzInwwbKdt5/CMqVZL54
+m2ALb7jXA7cB/92hLGMX5RY/5GOqMcEP51+M8dVMe+x1bvsKeUgRZqdvcBH6aXmL
+IgFcg8Bfo38wjw4UnVSkwURAVZzneZFrlBuELgU5jwYYECEKCFqFuRaTfPM0x7Xz
+zs+z5Qgru6LW73t4n0c0pvNXM50Ufhp08mqiavd6QQavBCxV5f2ACSzx27ZkUBve
+mACJ5zuq+ZwgZsattqL0st88FR7izK4P7LplYXgt61Y1OJE5q7QBzm8sp4ZvbGs0
+MYzFh7ugHdAZWS5UpS3FhdwdbzGiZKqHt7EQIzSdwFIO4xb2ffK57EBCfvZNxjNR
+1u32VR3VExqFVzlyEo1YaLbFlldf3fwAibqIYaNMvp1HX3W4Ym6nmEs4tNGvv68s
+CiVl2EO7FGL6hzj6n8csj+IaIzEoMTWlJ3X1L6klSz5tg14jy2QhwRBSHeEXS6Jg
+B8LoeIiyX/s1SUGO3UvimE8pyxS5DcFXwR2xiHJXg9LL1PTSUjyDdJ1KQnuywT3b
+2kVHmOfHf6jxnmLnKdSg
+=aK4t
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-velocity/6.4.1/solr-velocity-6.4.1-sources.jar.md5
==============================================================================
--- dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-velocity/6.4.1/solr-velocity-6.4.1-sources.jar.md5 (added)
+++ dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-velocity/6.4.1/solr-velocity-6.4.1-sources.jar.md5 Wed Feb  1 16:59:34 2017
@@ -0,0 +1 @@
+dbb690350c28802c62e3d707730ec2fb
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-velocity/6.4.1/solr-velocity-6.4.1-sources.jar.sha1
==============================================================================
--- dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-velocity/6.4.1/solr-velocity-6.4.1-sources.jar.sha1 (added)
+++ dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-velocity/6.4.1/solr-velocity-6.4.1-sources.jar.sha1 Wed Feb  1 16:59:34 2017
@@ -0,0 +1 @@
+1b689eb8b48bafc96ef3de61074a3066d679b5df
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-velocity/6.4.1/solr-velocity-6.4.1.jar
==============================================================================
Binary file - no diff available.

Propchange: dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-velocity/6.4.1/solr-velocity-6.4.1.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-velocity/6.4.1/solr-velocity-6.4.1.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-velocity/6.4.1/solr-velocity-6.4.1.jar.asc (added)
+++ dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-velocity/6.4.1/solr-velocity-6.4.1.jar.asc Wed Feb  1 16:59:34 2017
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v1
+
+iQIcBAABAgAGBQJYkegrAAoJEAUaD692vGUHtPQQAKzJ1htPLt3ZFTrhWq7k6r/g
+9NkHFcpGKtO4OIp9DJmFy18dOqpZAd58qU3/lwIj7DMqWxtH6pwQSRS5ntY/Nc9S
+mV+F4gi2/NpKs3qUqrqrs1QZ9kbPZ61iHnFNFX1hZ9l3DXrJVuKr82+KgaAEn2NW
+X3wRQl3v8444UETBsHZErbs3IkcG8hXHi8cxha0SbBlq3AfjJ5mq479ze0Vuw1s8
+ZVnHqf1NLx3aifgD+LmA43C3FjjfTcZUBs7agBg7Zsthu0BuNfqtZyR8UEUa/Y8/
+yIlZhmP0hS4mG++gjJA5dBuVbj/iHOV5+sxC3OVa5JhGP5r0CR0aIZqEVeqN8WAL
+YtVq5gxwHQsEe1XL4DWeU5+I0966rLvkOGcCNcqnEWOVbei4FW+obEVxOZr1KhKw
+y6reWfqfQci1f847HJKQZIzPVsSnqJX7IcwMIvN7jAdT0T5aw/1uJLAcX0F+8LdX
+uwjZxm+MqiVtOeGG6Yr9/5PIlXHy7nXjrQu8fwB8Xp1hYSujYePNkoT4vJPtP4xV
+Uoe3rux4qGUHIix1a8ed9pysISvqcIGj4Dl9W7JJoTW+gmpDsJHiaw5e5XlWhpLA
+M01L5/TlCndJY7tBO+cfcrgZu1LnQ7Jwbrm+BzZaupAUkNfO7xj52kghvPc087X+
+Okcb/+r3bJ30e7ESsLFS
+=9dhZ
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-velocity/6.4.1/solr-velocity-6.4.1.jar.md5
==============================================================================
--- dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-velocity/6.4.1/solr-velocity-6.4.1.jar.md5 (added)
+++ dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-velocity/6.4.1/solr-velocity-6.4.1.jar.md5 Wed Feb  1 16:59:34 2017
@@ -0,0 +1 @@
+ca174c6ad48f16ce7a5cf3016f230619
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-velocity/6.4.1/solr-velocity-6.4.1.jar.sha1
==============================================================================
--- dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-velocity/6.4.1/solr-velocity-6.4.1.jar.sha1 (added)
+++ dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-velocity/6.4.1/solr-velocity-6.4.1.jar.sha1 Wed Feb  1 16:59:34 2017
@@ -0,0 +1 @@
+296dfaa82a771a0ecddf3b5eb8200134f1d64e27
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-velocity/6.4.1/solr-velocity-6.4.1.pom
==============================================================================
--- dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-velocity/6.4.1/solr-velocity-6.4.1.pom (added)
+++ dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-velocity/6.4.1/solr-velocity-6.4.1.pom Wed Feb  1 16:59:34 2017
@@ -0,0 +1,449 @@
+<!--
+  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.4.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.facebook.presto</groupId>
+      <artifactId>presto-parser</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.fasterxml.jackson.core</groupId>
+      <artifactId>jackson-core</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.airlift</groupId>
+      <artifactId>slice</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>org.antlr</groupId>
+      <artifactId>antlr4-runtime</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.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.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-velocity/6.4.1/solr-velocity-6.4.1.pom
------------------------------------------------------------------------------
    svn:eol-style = native

Added: dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-velocity/6.4.1/solr-velocity-6.4.1.pom.asc
==============================================================================
--- dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-velocity/6.4.1/solr-velocity-6.4.1.pom.asc (added)
+++ dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-velocity/6.4.1/solr-velocity-6.4.1.pom.asc Wed Feb  1 16:59:34 2017
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v1
+
+iQIcBAABAgAGBQJYkegrAAoJEAUaD692vGUHM5oQAN/4NuBlBAiR2YgAjksp/Qyt
+i2znb6RoYzlYEjSUbH7BPmAERjRMqy/T6JbM2AU2b4N4Kx+C+E5iY3s17yW6gOqS
+DovDMZ/e013aIIOfq22aisiSI98RoXW5QdQaTtMxE7WXIrLQ0gqm3+saExw/g8QZ
+FS8MQvuATfGp1AEnMIPc4C6U0j+zfsGrMYbzL1zpmT0JEhebgT9eGNG6oqvRX7QY
+31G9Vr0Mb9FKYYDoi9mFrqFPh+bFkpYmMQ1mZK78hL8aWbOCU8tDnxnc/UJzBqry
+zCqrFioi209bpSoghis/dJIjMmOYzhEqnLaYHOkzQTZpR3bWS8FNrTk8E1rfStcA
+teGno+0kSq/i81gwnHTdOAOf7aXjU8xQVQChYtIK7bgbSctWUmw+9iumKz5MFUcH
+sxr13sWeZvR9m3Q24FVymGlQibSumR3htVFBB7ajqPFOulkQiZJyZap96MJEWwQM
+UY7mYthi0/9DgD2fs8s3Dj2X+vMLccMjF3Y9rizLbN5ll0zFOI9KI+FZidnLmWKl
+tTmDlHv7UwYzHZUuLS2XvpB2Ag57PD6zZISAMT1PKCNzpA6LwJbOm8SXQ4f+sF09
+Mrt3/pM6d/PWLdOi/HVV39/dvAJJOSF95zK842eUWLOYzd9uhHOkOaC2ABDkT40X
+cBjCV0BlKCtSjS3jotUy
+=UEo5
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-velocity/6.4.1/solr-velocity-6.4.1.pom.md5
==============================================================================
--- dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-velocity/6.4.1/solr-velocity-6.4.1.pom.md5 (added)
+++ dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-velocity/6.4.1/solr-velocity-6.4.1.pom.md5 Wed Feb  1 16:59:34 2017
@@ -0,0 +1 @@
+1a1e078756001c360faa25d68427f46a
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-velocity/6.4.1/solr-velocity-6.4.1.pom.sha1
==============================================================================
--- dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-velocity/6.4.1/solr-velocity-6.4.1.pom.sha1 (added)
+++ dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-velocity/6.4.1/solr-velocity-6.4.1.pom.sha1 Wed Feb  1 16:59:34 2017
@@ -0,0 +1 @@
+e166fdf306d5f00653ab3f2cb7e28a5bcfaca9ef
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-velocity/maven-metadata.xml
==============================================================================
--- dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-velocity/maven-metadata.xml (added)
+++ dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-velocity/maven-metadata.xml Wed Feb  1 16:59:34 2017
@@ -0,0 +1,12 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<metadata>
+  <groupId>org.apache.solr</groupId>
+  <artifactId>solr-velocity</artifactId>
+  <version>6.4.1</version>
+  <versioning>
+    <versions>
+      <version>6.4.1</version>
+    </versions>
+    <lastUpdated>20170201135212</lastUpdated>
+  </versioning>
+</metadata>

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

Added: dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-velocity/maven-metadata.xml.md5
==============================================================================
--- dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-velocity/maven-metadata.xml.md5 (added)
+++ dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-velocity/maven-metadata.xml.md5 Wed Feb  1 16:59:34 2017
@@ -0,0 +1 @@
+4bc201b15a43a8e494a994ce52a69bd6
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-velocity/maven-metadata.xml.sha1
==============================================================================
--- dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-velocity/maven-metadata.xml.sha1 (added)
+++ dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/maven/org/apache/solr/solr-velocity/maven-metadata.xml.sha1 Wed Feb  1 16:59:34 2017
@@ -0,0 +1 @@
+d1d7309a5cd859acf2579fc1bad6e96bc7c510b8
\ No newline at end of file

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

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

Added: dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/solr-6.4.1-src.tgz.asc
==============================================================================
--- dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/solr-6.4.1-src.tgz.asc (added)
+++ dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/solr-6.4.1-src.tgz.asc Wed Feb  1 16:59:34 2017
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v1
+
+iQIcBAABAgAGBQJYkegsAAoJEAUaD692vGUHzWAQAMQ2AcBYmWg8mwPiIJ0SqsvR
+pryURv56nmPrJ1f48iIJyObSmWiePv0uvfqaDiqYS39HCw01cq4kLt1cBFgmMVVZ
+cPfh8MWheSnk61lWbB3/dV8fcLu5iThVqPU8oNV2BnJHa2zFT5ByV/oy7jnvH5cM
+3cULjXbJlpE5wHiXyLkkgQ4EE0X4xC0NGygbfc6Yxn8PdHfqfNRs6eODMzByQg/Y
+iDoyK8PyCewA3c1c8QJK/Af6FeIXK/tcM1ET+HnxOKPiQvxMlVnPJ9IQm8OkPUul
+0Hs67ZRY1rv106JUfWH2ye/bkKhVvAJaRzNGLw2ErZjCo0mmMctw+yaEvGoEAPjG
+86mA66MQvqI9oizKzLRMfR+4jznJ/mCmMeRLp+f+hDaOIGrLy5hRhPCGBxab/PHW
+4Zoj4SExNwMTtqf6OZv9+KLROjU7579DpPhm7llewNo9TTIurqPg+pGEN+/R5sgU
+oey+8JKJjFtLKE57bh1gBPV6VcmAfZnT9j0uPpVk9i6T9IgCfx+AFMpKH0bIdZdv
+tGQ+qbNHClLdde0dJub4SbSqgoMrDmwKRG3AHsAwSbJbuY8kf7qFzJk137Hho7k6
+Vm2CR+ZYlCnrivI/Jqtc8xApFyc8wM1SvLi7Hzp0wi1Qh5iZ7KtJh/FOOM+cphQp
+lTvL5RzcCg6a/1qgOBec
+=4azI
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/solr-6.4.1-src.tgz.md5
==============================================================================
--- dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/solr-6.4.1-src.tgz.md5 (added)
+++ dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/solr-6.4.1-src.tgz.md5 Wed Feb  1 16:59:34 2017
@@ -0,0 +1 @@
+2a885560161e45b427a2f4e3e877c809 *solr-6.4.1-src.tgz

Added: dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/solr-6.4.1-src.tgz.sha1
==============================================================================
--- dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/solr-6.4.1-src.tgz.sha1 (added)
+++ dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/solr-6.4.1-src.tgz.sha1 Wed Feb  1 16:59:34 2017
@@ -0,0 +1 @@
+d6458013acf8ea408a0a41f759e36807fa6b500b *solr-6.4.1-src.tgz

Added: dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/solr-6.4.1.tgz
==============================================================================
Binary file - no diff available.

Propchange: dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/solr-6.4.1.tgz
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/solr-6.4.1.tgz.asc
==============================================================================
--- dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/solr-6.4.1.tgz.asc (added)
+++ dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/solr-6.4.1.tgz.asc Wed Feb  1 16:59:34 2017
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v1
+
+iQIcBAABAgAGBQJYkegsAAoJEAUaD692vGUHV9sP/jTru65zeJC2hkc1Hx+fROWc
+OxswwSGChA9RI/ntz8goM3AXP8dFq3QDMVnNSprezIdp4nRCyPXWpS+NzI/w+PhO
+poCgOwmnqDCqit/N0vKtFwDEJuPwR1VwDteTS0PsMCglVLBIWpzFvRgj9s3S3WiX
+nYgwC5jkxKK3bHKSffq3pV/3jCtRT/9SvuaCDjqE4vQvkBLMv5s9czx1OYaa+Ez6
+U9PZBj9YRMhYc+aFQ4hAGJCONHPL8pWKWL9R7y3IrjlmjqyMqmPzBnfBguI/owOL
+Vb7FLbApuDIkJ59VrBUQndF84Q8IkjLUkUFalfTjqW6X7VbUxGiKIewZ2uSo1kPk
+EtNG+E8Hf3/nV3klopzpdpEsJQLKrxQSrKQirVE1o6tVOPn/hSRdhPw51Kpn2ZKF
+H5DHDORQIQ913KUKmFwjpbIO6DpuBcQ9u0GY/nU9HPn4hiA1mi7rJxPu76ciSUCm
+1D0rYM1mymLnqExuvM51tAx9TOTGs9vyxpdgQamCuiCutolvZ4TK8WgQpfA3eHmN
+H1WQNtLdTX44f+bzpeFnv+gL+zj6VWa8i7Y1JIN0yq/9cqiE+a6jjaHr9Hg7Wf0z
+WPJ91M8dEybHzSQrOSCJX5OQit3pg78Y61iLF2U7oS6J16Te85MSAD4g4vlDZ3Ib
+QUjYtzVIZiUwV/Pywbfh
+=SiZk
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/solr-6.4.1.tgz.md5
==============================================================================
--- dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/solr-6.4.1.tgz.md5 (added)
+++ dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/solr-6.4.1.tgz.md5 Wed Feb  1 16:59:34 2017
@@ -0,0 +1 @@
+24232975b342234f9a592962d45b091b *solr-6.4.1.tgz

Added: dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/solr-6.4.1.tgz.sha1
==============================================================================
--- dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/solr-6.4.1.tgz.sha1 (added)
+++ dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/solr-6.4.1.tgz.sha1 Wed Feb  1 16:59:34 2017
@@ -0,0 +1 @@
+9a7cae646cc837d9378a31bc8f2f52e7634a1c43 *solr-6.4.1.tgz

Added: dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/solr-6.4.1.zip
==============================================================================
Binary file - no diff available.

Propchange: dev/lucene/lucene-solr-6.4.1-RC1-rev72f75b2503fa0aa4f0aff76d439874feb923bb0e/solr/solr-6.4.1.zip
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream