You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by sh...@apache.org on 2016/10/31 13:31:37 UTC

svn commit: r16745 [22/22] - in /dev/lucene/lucene-solr-6.3.0-RC1-rev11e7e356e15ad5f9e3cfe26966c9dd5f666ece61: ./ 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.3.0-RC1-rev11e7e356e15ad5f9e3cfe26966c9dd5f666ece61/solr/maven/org/apache/solr/solr-test-framework/6.3.0/solr-test-framework-6.3.0.jar.sha1
==============================================================================
--- dev/lucene/lucene-solr-6.3.0-RC1-rev11e7e356e15ad5f9e3cfe26966c9dd5f666ece61/solr/maven/org/apache/solr/solr-test-framework/6.3.0/solr-test-framework-6.3.0.jar.sha1 (added)
+++ dev/lucene/lucene-solr-6.3.0-RC1-rev11e7e356e15ad5f9e3cfe26966c9dd5f666ece61/solr/maven/org/apache/solr/solr-test-framework/6.3.0/solr-test-framework-6.3.0.jar.sha1 Mon Oct 31 13:31:30 2016
@@ -0,0 +1 @@
+9d166d26f18ae77f4345b43eb987ef30fbef0c4b
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.3.0-RC1-rev11e7e356e15ad5f9e3cfe26966c9dd5f666ece61/solr/maven/org/apache/solr/solr-test-framework/6.3.0/solr-test-framework-6.3.0.pom
==============================================================================
--- dev/lucene/lucene-solr-6.3.0-RC1-rev11e7e356e15ad5f9e3cfe26966c9dd5f666ece61/solr/maven/org/apache/solr/solr-test-framework/6.3.0/solr-test-framework-6.3.0.pom (added)
+++ dev/lucene/lucene-solr-6.3.0-RC1-rev11e7e356e15ad5f9e3cfe26966c9dd5f666ece61/solr/maven/org/apache/solr/solr-test-framework/6.3.0/solr-test-framework-6.3.0.pom Mon Oct 31 13:31:30 2016
@@ -0,0 +1,439 @@
+<project xmlns="http://maven.apache.org/POM/4.0.0"
+         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+  <!--
+    Licensed to the Apache Software Foundation (ASF) under one
+    or more contributor license agreements.  See the NOTICE file
+    distributed with this work for additional information
+    regarding copyright ownership.  The ASF licenses this file
+    to you under the Apache License, Version 2.0 (the
+    "License"); you may not use this file except in compliance
+    with the License.  You may obtain a copy of the License at
+
+    http://www.apache.org/licenses/LICENSE-2.0
+
+    Unless required by applicable law or agreed to in writing,
+    software distributed under the License is distributed on an
+    "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+    KIND, either express or implied.  See the License for the
+    specific language governing permissions and limitations
+    under the License.
+  -->
+  <modelVersion>4.0.0</modelVersion>
+  <parent>
+    <groupId>org.apache.solr</groupId>
+    <artifactId>solr-parent</artifactId>
+    <version>6.3.0</version>
+    <relativePath>../pom.xml</relativePath>
+  </parent>
+  <groupId>org.apache.solr</groupId>
+  <artifactId>solr-test-framework</artifactId>
+  <packaging>jar</packaging>
+  <name>Apache Solr Test Framework</name>
+  <description>Apache Solr Test Framework</description>
+  <properties>
+    <module-directory>solr/test-framework</module-directory>
+    <relative-top-level>../../..</relative-top-level>
+    <module-path>${relative-top-level}/${module-directory}</module-path>
+  </properties>
+  <scm>
+    <connection>scm: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>io.airlift</groupId>
+      <artifactId>slice</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>

Added: dev/lucene/lucene-solr-6.3.0-RC1-rev11e7e356e15ad5f9e3cfe26966c9dd5f666ece61/solr/maven/org/apache/solr/solr-test-framework/6.3.0/solr-test-framework-6.3.0.pom.asc
==============================================================================
--- dev/lucene/lucene-solr-6.3.0-RC1-rev11e7e356e15ad5f9e3cfe26966c9dd5f666ece61/solr/maven/org/apache/solr/solr-test-framework/6.3.0/solr-test-framework-6.3.0.pom.asc (added)
+++ dev/lucene/lucene-solr-6.3.0-RC1-rev11e7e356e15ad5f9e3cfe26966c9dd5f666ece61/solr/maven/org/apache/solr/solr-test-framework/6.3.0/solr-test-framework-6.3.0.pom.asc Mon Oct 31 13:31:30 2016
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v1
+
+iQIcBAABAgAGBQJYFzSeAAoJENySYW8XcFD2dxwQAICtp31AJX6LfodMnlCvovZk
+Brghb52FsOovHZwaA31vDqI89pv/xqS53oCeOV6jRAvkXQgTf44GZ2TY9iNHtvXG
+8p4r/TQWjYt1HvXWqWNEzqTLedO/V0TvhnJ0Vp1C6Yihp/F0ton7N77Czx7kVrkA
+NakfDpWs5zuHMN9sej5ebAJvxysT6leqhz/VljRrcQCNHFuqibzOcZCqY7hPsUiJ
+8/fd7d04YDMmaRV632QVZAPs3P6iwKOCY85kohKYbAu7wd2p/YL3zNvtSO8hLM+x
+5yk4ohfIoTGTQIA0nflF1tI8xVSTgEy3lZ+S4kMie5rNSiNMQk5mhzqItxzZRWpl
+x718z/FUb80uZFAS0n8v6fisPal1BgC3NOm+rFe67vI146nyR+Mk8hP+M0w6eG8v
+4uYJFWaeEopQzJmWIpxEO+zclvRmThRLH6TTuPCrbG956nNH1YhW3YXTAWOr92Fc
+B2/Sgx2rynW9tBuv9zERI0l6vcjjHOLlx0gIWwfo2JG4WYYl61fpTpDSkUgUsp1T
+3aZTsIVlsVN7vLloXItc0DikUjtH4eJYq9I1CntZMofOXguWUyjCKWefx+a/xmsO
+al6AuyuarZvlo0lcIsLJsG8p9El6qqDA8NbuOw/gG5ICK4ORujd/GiW483mzR0K7
+C/PnoZDyb+kpsGI13h3M
+=zeLi
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-6.3.0-RC1-rev11e7e356e15ad5f9e3cfe26966c9dd5f666ece61/solr/maven/org/apache/solr/solr-test-framework/6.3.0/solr-test-framework-6.3.0.pom.md5
==============================================================================
--- dev/lucene/lucene-solr-6.3.0-RC1-rev11e7e356e15ad5f9e3cfe26966c9dd5f666ece61/solr/maven/org/apache/solr/solr-test-framework/6.3.0/solr-test-framework-6.3.0.pom.md5 (added)
+++ dev/lucene/lucene-solr-6.3.0-RC1-rev11e7e356e15ad5f9e3cfe26966c9dd5f666ece61/solr/maven/org/apache/solr/solr-test-framework/6.3.0/solr-test-framework-6.3.0.pom.md5 Mon Oct 31 13:31:30 2016
@@ -0,0 +1 @@
+98439f09294a941994daa942d9faa0dd
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.3.0-RC1-rev11e7e356e15ad5f9e3cfe26966c9dd5f666ece61/solr/maven/org/apache/solr/solr-test-framework/6.3.0/solr-test-framework-6.3.0.pom.sha1
==============================================================================
--- dev/lucene/lucene-solr-6.3.0-RC1-rev11e7e356e15ad5f9e3cfe26966c9dd5f666ece61/solr/maven/org/apache/solr/solr-test-framework/6.3.0/solr-test-framework-6.3.0.pom.sha1 (added)
+++ dev/lucene/lucene-solr-6.3.0-RC1-rev11e7e356e15ad5f9e3cfe26966c9dd5f666ece61/solr/maven/org/apache/solr/solr-test-framework/6.3.0/solr-test-framework-6.3.0.pom.sha1 Mon Oct 31 13:31:30 2016
@@ -0,0 +1 @@
+0d6dff174b6b158e28d49b717f1b1903d34dfc6f
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.3.0-RC1-rev11e7e356e15ad5f9e3cfe26966c9dd5f666ece61/solr/maven/org/apache/solr/solr-test-framework/maven-metadata.xml
==============================================================================
--- dev/lucene/lucene-solr-6.3.0-RC1-rev11e7e356e15ad5f9e3cfe26966c9dd5f666ece61/solr/maven/org/apache/solr/solr-test-framework/maven-metadata.xml (added)
+++ dev/lucene/lucene-solr-6.3.0-RC1-rev11e7e356e15ad5f9e3cfe26966c9dd5f666ece61/solr/maven/org/apache/solr/solr-test-framework/maven-metadata.xml Mon Oct 31 13:31:30 2016
@@ -0,0 +1,12 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<metadata>
+  <groupId>org.apache.solr</groupId>
+  <artifactId>solr-test-framework</artifactId>
+  <version>6.3.0</version>
+  <versioning>
+    <versions>
+      <version>6.3.0</version>
+    </versions>
+    <lastUpdated>20161031120859</lastUpdated>
+  </versioning>
+</metadata>

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

Added: dev/lucene/lucene-solr-6.3.0-RC1-rev11e7e356e15ad5f9e3cfe26966c9dd5f666ece61/solr/maven/org/apache/solr/solr-test-framework/maven-metadata.xml.md5
==============================================================================
--- dev/lucene/lucene-solr-6.3.0-RC1-rev11e7e356e15ad5f9e3cfe26966c9dd5f666ece61/solr/maven/org/apache/solr/solr-test-framework/maven-metadata.xml.md5 (added)
+++ dev/lucene/lucene-solr-6.3.0-RC1-rev11e7e356e15ad5f9e3cfe26966c9dd5f666ece61/solr/maven/org/apache/solr/solr-test-framework/maven-metadata.xml.md5 Mon Oct 31 13:31:30 2016
@@ -0,0 +1 @@
+a9eba352e0b2456617f4b7a9505b2d0c
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.3.0-RC1-rev11e7e356e15ad5f9e3cfe26966c9dd5f666ece61/solr/maven/org/apache/solr/solr-test-framework/maven-metadata.xml.sha1
==============================================================================
--- dev/lucene/lucene-solr-6.3.0-RC1-rev11e7e356e15ad5f9e3cfe26966c9dd5f666ece61/solr/maven/org/apache/solr/solr-test-framework/maven-metadata.xml.sha1 (added)
+++ dev/lucene/lucene-solr-6.3.0-RC1-rev11e7e356e15ad5f9e3cfe26966c9dd5f666ece61/solr/maven/org/apache/solr/solr-test-framework/maven-metadata.xml.sha1 Mon Oct 31 13:31:30 2016
@@ -0,0 +1 @@
+c4c804129daab3102b547670b57ecf6fe4d27e32
\ No newline at end of file

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

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

Added: dev/lucene/lucene-solr-6.3.0-RC1-rev11e7e356e15ad5f9e3cfe26966c9dd5f666ece61/solr/maven/org/apache/solr/solr-uima/6.3.0/solr-uima-6.3.0-javadoc.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-6.3.0-RC1-rev11e7e356e15ad5f9e3cfe26966c9dd5f666ece61/solr/maven/org/apache/solr/solr-uima/6.3.0/solr-uima-6.3.0-javadoc.jar.asc (added)
+++ dev/lucene/lucene-solr-6.3.0-RC1-rev11e7e356e15ad5f9e3cfe26966c9dd5f666ece61/solr/maven/org/apache/solr/solr-uima/6.3.0/solr-uima-6.3.0-javadoc.jar.asc Mon Oct 31 13:31:30 2016
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v1
+
+iQIcBAABAgAGBQJYFzSfAAoJENySYW8XcFD2FWwP/A9ZlBOiORwrcR157UIy5kI2
+rAul6MFcxvH60lZTQwUGUvm2A9Ww9MVECnYLKV/8UInJ2eVzXzKjwPNXumNk8RPp
++nHExLA0sgk1zD6nHIDQCsVvHsxFVVxJ81mTo1oK0b10SlYCsHXW1a1immv06tOl
+pbTSYDhhfyVZWOAQ7XqNGIEJXzXQGMgq0WgdmNBPy7xn5kVHRB9OHyYAcd+1Vsg5
+riCPYyMjMVNl2NBStjEOZB5NuL3ZKjUynOIN8bwlKPs1/pgpw043StjQ8JlGBk9X
+BsTNjB38MMpqx4shNX0WlawY5BchSV3+b7SQEXoo/ECBeCUaCbcneT1w78Xek4m5
+X7+doD2fgWQOE+fNPuN+bpL5ibcTeCh+fJoyL40Th+lLl95EGJ3CwB+tw40vqqDY
+I81p1+6GmhQhAY2KQPEE3hvHOEAZQK76UaWaDJHhJ3CGkdnv5R9+MCvg6wWaagkY
+dpsdHnX+PL4cp7AeNMdyKzigYniU89MUyUlAbklKtnjDt4UfnOnu48SguKwLFPKn
+vQgS0jSgip1ShTEN1CKC6/TFOziw+2a2wpvxaQSmpng6LaVRUvLAiSGcMoCqGSRz
+PiLo6qI5/3LTaprqLKK/9YIeuLG2Nc5+qIBiGvy6Jf4bA8JKAenjNWZWLTckNoyU
+SFr4P7TEDyvqjfZ+vHXu
+=omyr
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-6.3.0-RC1-rev11e7e356e15ad5f9e3cfe26966c9dd5f666ece61/solr/maven/org/apache/solr/solr-uima/6.3.0/solr-uima-6.3.0-javadoc.jar.md5
==============================================================================
--- dev/lucene/lucene-solr-6.3.0-RC1-rev11e7e356e15ad5f9e3cfe26966c9dd5f666ece61/solr/maven/org/apache/solr/solr-uima/6.3.0/solr-uima-6.3.0-javadoc.jar.md5 (added)
+++ dev/lucene/lucene-solr-6.3.0-RC1-rev11e7e356e15ad5f9e3cfe26966c9dd5f666ece61/solr/maven/org/apache/solr/solr-uima/6.3.0/solr-uima-6.3.0-javadoc.jar.md5 Mon Oct 31 13:31:30 2016
@@ -0,0 +1 @@
+ecf28379bdc97e9c0dce8d63cd8e4d4d
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.3.0-RC1-rev11e7e356e15ad5f9e3cfe26966c9dd5f666ece61/solr/maven/org/apache/solr/solr-uima/6.3.0/solr-uima-6.3.0-javadoc.jar.sha1
==============================================================================
--- dev/lucene/lucene-solr-6.3.0-RC1-rev11e7e356e15ad5f9e3cfe26966c9dd5f666ece61/solr/maven/org/apache/solr/solr-uima/6.3.0/solr-uima-6.3.0-javadoc.jar.sha1 (added)
+++ dev/lucene/lucene-solr-6.3.0-RC1-rev11e7e356e15ad5f9e3cfe26966c9dd5f666ece61/solr/maven/org/apache/solr/solr-uima/6.3.0/solr-uima-6.3.0-javadoc.jar.sha1 Mon Oct 31 13:31:30 2016
@@ -0,0 +1 @@
+ac83d0933f50d13020d40ac3323d34f05e9cbd95
\ No newline at end of file

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

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

Added: dev/lucene/lucene-solr-6.3.0-RC1-rev11e7e356e15ad5f9e3cfe26966c9dd5f666ece61/solr/maven/org/apache/solr/solr-uima/6.3.0/solr-uima-6.3.0-sources.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-6.3.0-RC1-rev11e7e356e15ad5f9e3cfe26966c9dd5f666ece61/solr/maven/org/apache/solr/solr-uima/6.3.0/solr-uima-6.3.0-sources.jar.asc (added)
+++ dev/lucene/lucene-solr-6.3.0-RC1-rev11e7e356e15ad5f9e3cfe26966c9dd5f666ece61/solr/maven/org/apache/solr/solr-uima/6.3.0/solr-uima-6.3.0-sources.jar.asc Mon Oct 31 13:31:30 2016
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v1
+
+iQIcBAABAgAGBQJYFzSfAAoJENySYW8XcFD2gw4QAI1755PVjaoF0zZ8ARDkR3P8
+feN4nM3Xdc/EvBiHXXhl9avr5DxGDzGecWL1QiGZzCNh64FbFJ6M1fwV5JT47wkt
+3A3HPp1ccMzm2eapaVxfqRgHs0QJro2HmIOjY0cYLwB6Ku4Khn5QFHnAjivjpQJi
+gzrZ2UCAOY5MnU7S392UP+y54snR549INqx0JhctvJbzsWu314Ow+uvmpLklEruR
+e5U+FMVvjsyBVfpUTuv2l8fb7EaszazEKoAPxABhUxIjXRZE88WUOVL2SkDdGzkU
+tnwQh4SacF2lJ+3MnXj2wTxzwa4VkJeaQRjuxf/ok1xSQNpMKETLEWe46H7cjOqq
+HBAM7Wo+U7hyVj/QUupazWiOk3IcCK5B7MwmGGn5A8lhyN55folMwKPKyFL52XJZ
+A3r0htLMjLhCY8VPynrZLiNolOTDdBI8s6WHGJe6HlX7LDb2hDmyN6WugM7HKYA6
+0uBeDTphnvGRX/I0Id22IHAwWA/Zg0F1pPXRFoYzpDYoWTYgrs/SVMqy6CMcW7Qk
+RERWxocoH6p3+QgxHqRFf6Io/n1iqb8cannC7Zz85U6Tw6BgRAGO1aP+cd1ckEeu
+Qed2R9uqvf4A6luM0OwO0IVfNiIvjeF2pnl2NC83I79urAKmF3enIqyBPTUZ9EGQ
+nydIwofzIUb9/61xj57K
+=N76G
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-6.3.0-RC1-rev11e7e356e15ad5f9e3cfe26966c9dd5f666ece61/solr/maven/org/apache/solr/solr-uima/6.3.0/solr-uima-6.3.0-sources.jar.md5
==============================================================================
--- dev/lucene/lucene-solr-6.3.0-RC1-rev11e7e356e15ad5f9e3cfe26966c9dd5f666ece61/solr/maven/org/apache/solr/solr-uima/6.3.0/solr-uima-6.3.0-sources.jar.md5 (added)
+++ dev/lucene/lucene-solr-6.3.0-RC1-rev11e7e356e15ad5f9e3cfe26966c9dd5f666ece61/solr/maven/org/apache/solr/solr-uima/6.3.0/solr-uima-6.3.0-sources.jar.md5 Mon Oct 31 13:31:30 2016
@@ -0,0 +1 @@
+179f5f0918ddfa5a87d4d9b6d51fd038
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.3.0-RC1-rev11e7e356e15ad5f9e3cfe26966c9dd5f666ece61/solr/maven/org/apache/solr/solr-uima/6.3.0/solr-uima-6.3.0-sources.jar.sha1
==============================================================================
--- dev/lucene/lucene-solr-6.3.0-RC1-rev11e7e356e15ad5f9e3cfe26966c9dd5f666ece61/solr/maven/org/apache/solr/solr-uima/6.3.0/solr-uima-6.3.0-sources.jar.sha1 (added)
+++ dev/lucene/lucene-solr-6.3.0-RC1-rev11e7e356e15ad5f9e3cfe26966c9dd5f666ece61/solr/maven/org/apache/solr/solr-uima/6.3.0/solr-uima-6.3.0-sources.jar.sha1 Mon Oct 31 13:31:30 2016
@@ -0,0 +1 @@
+b7a90e81644e78a052ef1dc2ae9fe88348b22dc9
\ No newline at end of file

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

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

Added: dev/lucene/lucene-solr-6.3.0-RC1-rev11e7e356e15ad5f9e3cfe26966c9dd5f666ece61/solr/maven/org/apache/solr/solr-uima/6.3.0/solr-uima-6.3.0.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-6.3.0-RC1-rev11e7e356e15ad5f9e3cfe26966c9dd5f666ece61/solr/maven/org/apache/solr/solr-uima/6.3.0/solr-uima-6.3.0.jar.asc (added)
+++ dev/lucene/lucene-solr-6.3.0-RC1-rev11e7e356e15ad5f9e3cfe26966c9dd5f666ece61/solr/maven/org/apache/solr/solr-uima/6.3.0/solr-uima-6.3.0.jar.asc Mon Oct 31 13:31:30 2016
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v1
+
+iQIcBAABAgAGBQJYFzSgAAoJENySYW8XcFD2y/MP/1sI78cVhGuoJehqJlkMJYEJ
+AuCEmLzj5J4lbISGHzRBk/ucSz1LfoEGRJ3hpoBe5IaKNqXO0rm0CQECOCOICOci
+zRzEw0D+wyAvAJEmc5BRPsRdgExJJ3enFxbz6595CnYC+5W/5FMLxCqIyM8b2B5D
+USov2xhfwcbd/gJsuzeHETjGrqIPCnNgr/aASfYT/HdXl/x4x3xNMcguiVXbc7/N
++1Q/iz2WGu3kpPNxIvBJdcPIfQQCaD1TlRicUKPzAPE7I/vOeYBRDYNW2SbfwoUo
+9r4vSn3oF00AIRmOnhCBC2CPncZ/9E0SQ88vZhDUIy9iNQOjGfQHz/1eudeo0wHe
+D4PnkkbYcxbRr5zsHsaZHnRPUaGbyP/y3o7C70wafzatYFBKexbImNhLuUfDmg7d
+HRZ10NMnPL0kN9y5udvOCsUT1oycuBpT87exKvUJMhJLx+jXSDyb0I3tJXtdhzLX
+zX8F1P3Wo7iJBcWJ+Pt10UcN6flvu2ZonMzW8ZlUloC1IwDJOyMiqMpir5BDJ4ii
+xo1ogkIvXVhwO3uWhkcXJsBv9mA8npCir+OxqWvF4ke5FUkogjSVM+KDfoxSZhZh
+MuCGKL7xt3xJawCC6l2xGTB6GhSbci0UcAVN4tHwvq7F06Y/0fjx9QZPzz6/HYRF
+K6TbzucJAtPmjVrv6+qS
+=uTPm
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-6.3.0-RC1-rev11e7e356e15ad5f9e3cfe26966c9dd5f666ece61/solr/maven/org/apache/solr/solr-uima/6.3.0/solr-uima-6.3.0.jar.md5
==============================================================================
--- dev/lucene/lucene-solr-6.3.0-RC1-rev11e7e356e15ad5f9e3cfe26966c9dd5f666ece61/solr/maven/org/apache/solr/solr-uima/6.3.0/solr-uima-6.3.0.jar.md5 (added)
+++ dev/lucene/lucene-solr-6.3.0-RC1-rev11e7e356e15ad5f9e3cfe26966c9dd5f666ece61/solr/maven/org/apache/solr/solr-uima/6.3.0/solr-uima-6.3.0.jar.md5 Mon Oct 31 13:31:30 2016
@@ -0,0 +1 @@
+e542d37551f8a9162878c744581530a8
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.3.0-RC1-rev11e7e356e15ad5f9e3cfe26966c9dd5f666ece61/solr/maven/org/apache/solr/solr-uima/6.3.0/solr-uima-6.3.0.jar.sha1
==============================================================================
--- dev/lucene/lucene-solr-6.3.0-RC1-rev11e7e356e15ad5f9e3cfe26966c9dd5f666ece61/solr/maven/org/apache/solr/solr-uima/6.3.0/solr-uima-6.3.0.jar.sha1 (added)
+++ dev/lucene/lucene-solr-6.3.0-RC1-rev11e7e356e15ad5f9e3cfe26966c9dd5f666ece61/solr/maven/org/apache/solr/solr-uima/6.3.0/solr-uima-6.3.0.jar.sha1 Mon Oct 31 13:31:30 2016
@@ -0,0 +1 @@
+7f3c8e142ce3449dfc38afbf7bd273336855fc16
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.3.0-RC1-rev11e7e356e15ad5f9e3cfe26966c9dd5f666ece61/solr/maven/org/apache/solr/solr-uima/6.3.0/solr-uima-6.3.0.pom
==============================================================================
--- dev/lucene/lucene-solr-6.3.0-RC1-rev11e7e356e15ad5f9e3cfe26966c9dd5f666ece61/solr/maven/org/apache/solr/solr-uima/6.3.0/solr-uima-6.3.0.pom (added)
+++ dev/lucene/lucene-solr-6.3.0-RC1-rev11e7e356e15ad5f9e3cfe26966c9dd5f666ece61/solr/maven/org/apache/solr/solr-uima/6.3.0/solr-uima-6.3.0.pom Mon Oct 31 13:31:30 2016
@@ -0,0 +1,435 @@
+<project xmlns="http://maven.apache.org/POM/4.0.0"
+         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+  <!--
+    Licensed to the Apache Software Foundation (ASF) under one
+    or more contributor license agreements.  See the NOTICE file
+    distributed with this work for additional information
+    regarding copyright ownership.  The ASF licenses this file
+    to you under the Apache License, Version 2.0 (the
+    "License"); you may not use this file except in compliance
+    with the License.  You may obtain a copy of the License at
+
+    http://www.apache.org/licenses/LICENSE-2.0
+
+    Unless required by applicable law or agreed to in writing,
+    software distributed under the License is distributed on an
+    "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+    KIND, either express or implied.  See the License for the
+    specific language governing permissions and limitations
+    under the License.
+  -->
+  <modelVersion>4.0.0</modelVersion>
+  <parent>
+    <groupId>org.apache.solr</groupId>
+    <artifactId>solr-parent</artifactId>
+    <version>6.3.0</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>io.airlift</groupId>
+      <artifactId>slice</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>

Added: dev/lucene/lucene-solr-6.3.0-RC1-rev11e7e356e15ad5f9e3cfe26966c9dd5f666ece61/solr/maven/org/apache/solr/solr-uima/6.3.0/solr-uima-6.3.0.pom.asc
==============================================================================
--- dev/lucene/lucene-solr-6.3.0-RC1-rev11e7e356e15ad5f9e3cfe26966c9dd5f666ece61/solr/maven/org/apache/solr/solr-uima/6.3.0/solr-uima-6.3.0.pom.asc (added)
+++ dev/lucene/lucene-solr-6.3.0-RC1-rev11e7e356e15ad5f9e3cfe26966c9dd5f666ece61/solr/maven/org/apache/solr/solr-uima/6.3.0/solr-uima-6.3.0.pom.asc Mon Oct 31 13:31:30 2016
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v1
+
+iQIcBAABAgAGBQJYFzSgAAoJENySYW8XcFD26/QP/0Wsj4ENVh3ZYlHX46wi1WYA
+FS1NZCvn997NXi9OtsPIRH1t2jXj6I4LJvYszsCjNAiNxY2u3Vudpx7VxvEnIO90
+IZkDtdounhrAZCphAh7UVPcw+dThEmtd2QL6nwhRDMe92FCbmpL1IvD7/RtWXwOJ
+BrsW1sZ7n4Njo0rEnSJYTGLPZEXSoIvKJayI9tYaaJJrfzNIhXjt6IpCMy/3cIw9
+9pV+6dAq2oVqC53dD+3OK4CkfXCOXJiCVCHt/20xWN0+Wi+XhxakhS8RBCMXSxse
+UQtC5jFjJSsxhUCjqRY4oKXqxmU32VA0TVH0IOwAs1fXVU71Z+SfJGDioTl9FL3f
+w6yZJ+DIwTkLZlDvwEurX9hrhl9BqIllqUiBQKM2shFlqHbyEW3XxAxuFQQizfQC
+6h89D5QS4xSvxAKpb9FqvpX9draoKBUmI7H92HgxCrYM4PPNSlQCmhnkdGkAfrnU
+adTU/FJUd2xV5wclm4DD6zJrajss77iX3fwZuUAPSN1RK3Pep77UkOVCNS6iBDe3
+Fv8XFrJRcY71spXt4DmAQx3kQvEOuubATiEYyk16FwcQCwcbPTa0bmP3rL7lnNjG
+SBU6ABDyaC6NRXdD7Dtj7rkPAwCUzf6jF/v3vpJsVA1xzjInY2pavuTGC5yPrhB1
+nlcXLN+IQk1lwW2uAad/
+=ydCt
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-6.3.0-RC1-rev11e7e356e15ad5f9e3cfe26966c9dd5f666ece61/solr/maven/org/apache/solr/solr-uima/6.3.0/solr-uima-6.3.0.pom.md5
==============================================================================
--- dev/lucene/lucene-solr-6.3.0-RC1-rev11e7e356e15ad5f9e3cfe26966c9dd5f666ece61/solr/maven/org/apache/solr/solr-uima/6.3.0/solr-uima-6.3.0.pom.md5 (added)
+++ dev/lucene/lucene-solr-6.3.0-RC1-rev11e7e356e15ad5f9e3cfe26966c9dd5f666ece61/solr/maven/org/apache/solr/solr-uima/6.3.0/solr-uima-6.3.0.pom.md5 Mon Oct 31 13:31:30 2016
@@ -0,0 +1 @@
+e42917283b4e8c3afea2836fd19cd81c
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.3.0-RC1-rev11e7e356e15ad5f9e3cfe26966c9dd5f666ece61/solr/maven/org/apache/solr/solr-uima/6.3.0/solr-uima-6.3.0.pom.sha1
==============================================================================
--- dev/lucene/lucene-solr-6.3.0-RC1-rev11e7e356e15ad5f9e3cfe26966c9dd5f666ece61/solr/maven/org/apache/solr/solr-uima/6.3.0/solr-uima-6.3.0.pom.sha1 (added)
+++ dev/lucene/lucene-solr-6.3.0-RC1-rev11e7e356e15ad5f9e3cfe26966c9dd5f666ece61/solr/maven/org/apache/solr/solr-uima/6.3.0/solr-uima-6.3.0.pom.sha1 Mon Oct 31 13:31:30 2016
@@ -0,0 +1 @@
+709c65790adfce8a3d9c3ab0a647039c67c710b5
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.3.0-RC1-rev11e7e356e15ad5f9e3cfe26966c9dd5f666ece61/solr/maven/org/apache/solr/solr-uima/maven-metadata.xml
==============================================================================
--- dev/lucene/lucene-solr-6.3.0-RC1-rev11e7e356e15ad5f9e3cfe26966c9dd5f666ece61/solr/maven/org/apache/solr/solr-uima/maven-metadata.xml (added)
+++ dev/lucene/lucene-solr-6.3.0-RC1-rev11e7e356e15ad5f9e3cfe26966c9dd5f666ece61/solr/maven/org/apache/solr/solr-uima/maven-metadata.xml Mon Oct 31 13:31:30 2016
@@ -0,0 +1,12 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<metadata>
+  <groupId>org.apache.solr</groupId>
+  <artifactId>solr-uima</artifactId>
+  <version>6.3.0</version>
+  <versioning>
+    <versions>
+      <version>6.3.0</version>
+    </versions>
+    <lastUpdated>20161031120935</lastUpdated>
+  </versioning>
+</metadata>

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

Added: dev/lucene/lucene-solr-6.3.0-RC1-rev11e7e356e15ad5f9e3cfe26966c9dd5f666ece61/solr/maven/org/apache/solr/solr-uima/maven-metadata.xml.md5
==============================================================================
--- dev/lucene/lucene-solr-6.3.0-RC1-rev11e7e356e15ad5f9e3cfe26966c9dd5f666ece61/solr/maven/org/apache/solr/solr-uima/maven-metadata.xml.md5 (added)
+++ dev/lucene/lucene-solr-6.3.0-RC1-rev11e7e356e15ad5f9e3cfe26966c9dd5f666ece61/solr/maven/org/apache/solr/solr-uima/maven-metadata.xml.md5 Mon Oct 31 13:31:30 2016
@@ -0,0 +1 @@
+da9d4d9198c2298ae49eee45a66e56aa
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.3.0-RC1-rev11e7e356e15ad5f9e3cfe26966c9dd5f666ece61/solr/maven/org/apache/solr/solr-uima/maven-metadata.xml.sha1
==============================================================================
--- dev/lucene/lucene-solr-6.3.0-RC1-rev11e7e356e15ad5f9e3cfe26966c9dd5f666ece61/solr/maven/org/apache/solr/solr-uima/maven-metadata.xml.sha1 (added)
+++ dev/lucene/lucene-solr-6.3.0-RC1-rev11e7e356e15ad5f9e3cfe26966c9dd5f666ece61/solr/maven/org/apache/solr/solr-uima/maven-metadata.xml.sha1 Mon Oct 31 13:31:30 2016
@@ -0,0 +1 @@
+a2a5cf2f5e64b35c8b2f5d7410e26e12b005d5dd
\ No newline at end of file

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

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

Added: dev/lucene/lucene-solr-6.3.0-RC1-rev11e7e356e15ad5f9e3cfe26966c9dd5f666ece61/solr/maven/org/apache/solr/solr-velocity/6.3.0/solr-velocity-6.3.0-javadoc.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-6.3.0-RC1-rev11e7e356e15ad5f9e3cfe26966c9dd5f666ece61/solr/maven/org/apache/solr/solr-velocity/6.3.0/solr-velocity-6.3.0-javadoc.jar.asc (added)
+++ dev/lucene/lucene-solr-6.3.0-RC1-rev11e7e356e15ad5f9e3cfe26966c9dd5f666ece61/solr/maven/org/apache/solr/solr-velocity/6.3.0/solr-velocity-6.3.0-javadoc.jar.asc Mon Oct 31 13:31:30 2016
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v1
+
+iQIcBAABAgAGBQJYFzShAAoJENySYW8XcFD2RMkP/i7zEE1WDqhYhK2olrFc611s
+EfX/ILgeRtQ8kx43MbucOQkCZaoXwJhUqitGshmvgIYdFIxesydGRf3/UgENL1BS
+zOqtWJei96qn9xiK6EM6Ii9UnphGkDGIkq+9wGFh5uxdTW+hyPMeynYWQIXfHfsQ
+c1xF4lVOyRIZ1VgOk1g5p5WKyFMuGmWfMpPcBVnakkT7dY8WzO0BjqjHZH3Q1o7p
+fDA10+mr9NTdFJoKVjOWP1llYEUo5FFB32EPPiZlx5oFwFH2caVhFs/e8y2Ibvpz
+IOG2RZ+oP4eLmBpzpPyy2kFz8LHQITGK6MtC5T2wiIWaS3TEftdfqckPWBvg538o
+WSobkLai7GbqiCB4Fv8SxoKUg3p2GI0mtULcjXbnjnA4B78owD5qNks9PHFdb5rx
+hefgySFbULOCfMujJs6/MjAy2krhOMPqrHqdORkhU7S0Wki+GgWkJe0mK00hiBOr
+Nt7YU0qloRlYITpnsY8dGPGBcrTaRpLSWsXzfnUP+y0piKiflWP1lydFFvgZo/w4
+D2a0gMbdjezcA9hGG8BLId/zLy8QQxM+xSmnLkjF+9cGwW8e5NIl0Iq79DxyfVP1
+BYtTSCt80kxCasWhIu38HM1q2n/zRj+9ziSq/upEdJpGPSQq4FAVc69Gt4RNMDv8
+yFXwPZ98GciNtboEaK4r
+=hQuI
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-6.3.0-RC1-rev11e7e356e15ad5f9e3cfe26966c9dd5f666ece61/solr/maven/org/apache/solr/solr-velocity/6.3.0/solr-velocity-6.3.0-javadoc.jar.md5
==============================================================================
--- dev/lucene/lucene-solr-6.3.0-RC1-rev11e7e356e15ad5f9e3cfe26966c9dd5f666ece61/solr/maven/org/apache/solr/solr-velocity/6.3.0/solr-velocity-6.3.0-javadoc.jar.md5 (added)
+++ dev/lucene/lucene-solr-6.3.0-RC1-rev11e7e356e15ad5f9e3cfe26966c9dd5f666ece61/solr/maven/org/apache/solr/solr-velocity/6.3.0/solr-velocity-6.3.0-javadoc.jar.md5 Mon Oct 31 13:31:30 2016
@@ -0,0 +1 @@
+daabcd67a6b4f90296ad5ff268961c9b
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.3.0-RC1-rev11e7e356e15ad5f9e3cfe26966c9dd5f666ece61/solr/maven/org/apache/solr/solr-velocity/6.3.0/solr-velocity-6.3.0-javadoc.jar.sha1
==============================================================================
--- dev/lucene/lucene-solr-6.3.0-RC1-rev11e7e356e15ad5f9e3cfe26966c9dd5f666ece61/solr/maven/org/apache/solr/solr-velocity/6.3.0/solr-velocity-6.3.0-javadoc.jar.sha1 (added)
+++ dev/lucene/lucene-solr-6.3.0-RC1-rev11e7e356e15ad5f9e3cfe26966c9dd5f666ece61/solr/maven/org/apache/solr/solr-velocity/6.3.0/solr-velocity-6.3.0-javadoc.jar.sha1 Mon Oct 31 13:31:30 2016
@@ -0,0 +1 @@
+a7b56a12d000daf03fae117d98f3484e32cc6d41
\ No newline at end of file

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

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

Added: dev/lucene/lucene-solr-6.3.0-RC1-rev11e7e356e15ad5f9e3cfe26966c9dd5f666ece61/solr/maven/org/apache/solr/solr-velocity/6.3.0/solr-velocity-6.3.0-sources.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-6.3.0-RC1-rev11e7e356e15ad5f9e3cfe26966c9dd5f666ece61/solr/maven/org/apache/solr/solr-velocity/6.3.0/solr-velocity-6.3.0-sources.jar.asc (added)
+++ dev/lucene/lucene-solr-6.3.0-RC1-rev11e7e356e15ad5f9e3cfe26966c9dd5f666ece61/solr/maven/org/apache/solr/solr-velocity/6.3.0/solr-velocity-6.3.0-sources.jar.asc Mon Oct 31 13:31:30 2016
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v1
+
+iQIcBAABAgAGBQJYFzShAAoJENySYW8XcFD2+jcP/A838oBtUgKDax0rfDlB1pIC
+KKDGJju/lTRR/STnmfG9W0DjYg+WWW/DUo45FrB6POtNA02+A0hzXWqynW3r7qIh
+IJXG6GFpKhrTY2h5P1CqQ/ZHhZa96T43Q8Q+XAmx6AQBPejxaiAfAuvvStIM041c
+dk6jkUHjN9iLGpicj5BmdKm0VCe3HaRp1xxvvL9CY3lBceTPmuLXP8ZLKH+J84ID
+69rvAUR5p/fbACRxmt0LvwzmweBbu8zNUotvNh1jTztXLR38niNqXUNxkptKMLIM
+a4AW7ZwLnhqHCUS0/jWbL9BNCkHQVlTqDx/QuABGN3GXAR6MsypP2Wso0ANEivb1
+MmuH4LLk5Bzvyo1RHQ2y/wfjWiSyDT9Tpze0U+ARm+50Yqe1Jo2g7Eo+JBqlOeer
+Iw4TLkh6HhxMHuHVZvtJaO7yqV4HNmOjr8u8QGLXegcN61c+pSMr9Aq9GaTDogR8
+kHzaduzSLLQrBuDXlJyrC7KrjFY0btq59md90Ps2cuui1f9FYCYL3WmN1qrBephR
+q3BLoH9eZE6XxzcBQjXH68FSbit2QZXxHVJoF2rvuak0iWrh0ezEFizNji9abU8n
+p5wsD0g8RkDhWVU9A+jBOOoozqqVfkVU2+55FA3eEDJOG1rajh3FDrgRsApkHKYN
+Acp8ityV59BzEyUMk8YG
+=RilA
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-6.3.0-RC1-rev11e7e356e15ad5f9e3cfe26966c9dd5f666ece61/solr/maven/org/apache/solr/solr-velocity/6.3.0/solr-velocity-6.3.0-sources.jar.md5
==============================================================================
--- dev/lucene/lucene-solr-6.3.0-RC1-rev11e7e356e15ad5f9e3cfe26966c9dd5f666ece61/solr/maven/org/apache/solr/solr-velocity/6.3.0/solr-velocity-6.3.0-sources.jar.md5 (added)
+++ dev/lucene/lucene-solr-6.3.0-RC1-rev11e7e356e15ad5f9e3cfe26966c9dd5f666ece61/solr/maven/org/apache/solr/solr-velocity/6.3.0/solr-velocity-6.3.0-sources.jar.md5 Mon Oct 31 13:31:30 2016
@@ -0,0 +1 @@
+186d0a0e84df4754e1fc3bef3139b1ec
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.3.0-RC1-rev11e7e356e15ad5f9e3cfe26966c9dd5f666ece61/solr/maven/org/apache/solr/solr-velocity/6.3.0/solr-velocity-6.3.0-sources.jar.sha1
==============================================================================
--- dev/lucene/lucene-solr-6.3.0-RC1-rev11e7e356e15ad5f9e3cfe26966c9dd5f666ece61/solr/maven/org/apache/solr/solr-velocity/6.3.0/solr-velocity-6.3.0-sources.jar.sha1 (added)
+++ dev/lucene/lucene-solr-6.3.0-RC1-rev11e7e356e15ad5f9e3cfe26966c9dd5f666ece61/solr/maven/org/apache/solr/solr-velocity/6.3.0/solr-velocity-6.3.0-sources.jar.sha1 Mon Oct 31 13:31:30 2016
@@ -0,0 +1 @@
+31cf833153ac016c012bb44398e4919939631f2a
\ No newline at end of file

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

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

Added: dev/lucene/lucene-solr-6.3.0-RC1-rev11e7e356e15ad5f9e3cfe26966c9dd5f666ece61/solr/maven/org/apache/solr/solr-velocity/6.3.0/solr-velocity-6.3.0.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-6.3.0-RC1-rev11e7e356e15ad5f9e3cfe26966c9dd5f666ece61/solr/maven/org/apache/solr/solr-velocity/6.3.0/solr-velocity-6.3.0.jar.asc (added)
+++ dev/lucene/lucene-solr-6.3.0-RC1-rev11e7e356e15ad5f9e3cfe26966c9dd5f666ece61/solr/maven/org/apache/solr/solr-velocity/6.3.0/solr-velocity-6.3.0.jar.asc Mon Oct 31 13:31:30 2016
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v1
+
+iQIcBAABAgAGBQJYFzSiAAoJENySYW8XcFD2+gIP/jXNETN3dp+ytMcfT7QVWO68
+zLgZ/CQE0JYyoPoHZ42zbSB6hvgq6rWmRFOpvHZ9tqFJhdC1ls3zT81Y36kmMO+j
+u+Fk/+kVsvictgNfYoOV6RnM02FX2aoz/A10TMbwpybAFh2YdPmTNcUXC/Q5Ca1C
+Tqa6LqBmUwtVDbar0xWX5kXiBgSGEbJrTuap3qYkMp6wisREJIuYeC36PhIX7/ZE
+aZu03q+vvnYHVTG7maS7leEK7vf3tqBkh0lW/71280ZwBmbYWYKcLcFjCvUNSIhD
+8ISpKN8nusO1c47Sf4mMJJBo4nNPkNTQEV73tUYWKWAwn52wEvZ6+CCEAz/TotsF
+Q+Trl0SBE25FnBIi6MEgAaphAGD8jbhztO7lhGKTXh/p12jLQu7lWsi7hECLJp39
+eQjwgngHQn1ONwpG4FYeAHwtUIGevgKz4sTLi1qFHs9N+3pPl+oOgAgWu90uRp8H
+F8er2GPXBcm1uSXXgrTfg/j97073zhympIrOWgXOZyzOCe6Wm9p+gLlxtD1TFVle
+YyAI3XyaKCSwc/xU44CdJHIN0iKYU8hGC+01w7p0qXnVyxMZk2g5ZS87HBheA3EI
+GbqhS8M1wekwxcvm29edGiJw0bcpQtKu9wG6Q3CfUDlrhnn86q4BxhvH0J8US2x/
+cCsDObeIdlKukRJE/4Dj
+=+/ky
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-6.3.0-RC1-rev11e7e356e15ad5f9e3cfe26966c9dd5f666ece61/solr/maven/org/apache/solr/solr-velocity/6.3.0/solr-velocity-6.3.0.jar.md5
==============================================================================
--- dev/lucene/lucene-solr-6.3.0-RC1-rev11e7e356e15ad5f9e3cfe26966c9dd5f666ece61/solr/maven/org/apache/solr/solr-velocity/6.3.0/solr-velocity-6.3.0.jar.md5 (added)
+++ dev/lucene/lucene-solr-6.3.0-RC1-rev11e7e356e15ad5f9e3cfe26966c9dd5f666ece61/solr/maven/org/apache/solr/solr-velocity/6.3.0/solr-velocity-6.3.0.jar.md5 Mon Oct 31 13:31:30 2016
@@ -0,0 +1 @@
+b69f84b38ebaa473fc8d187253f7dda2
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.3.0-RC1-rev11e7e356e15ad5f9e3cfe26966c9dd5f666ece61/solr/maven/org/apache/solr/solr-velocity/6.3.0/solr-velocity-6.3.0.jar.sha1
==============================================================================
--- dev/lucene/lucene-solr-6.3.0-RC1-rev11e7e356e15ad5f9e3cfe26966c9dd5f666ece61/solr/maven/org/apache/solr/solr-velocity/6.3.0/solr-velocity-6.3.0.jar.sha1 (added)
+++ dev/lucene/lucene-solr-6.3.0-RC1-rev11e7e356e15ad5f9e3cfe26966c9dd5f666ece61/solr/maven/org/apache/solr/solr-velocity/6.3.0/solr-velocity-6.3.0.jar.sha1 Mon Oct 31 13:31:30 2016
@@ -0,0 +1 @@
+d548c4abefe095f89eb194bc1a0f7c48369c0c03
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.3.0-RC1-rev11e7e356e15ad5f9e3cfe26966c9dd5f666ece61/solr/maven/org/apache/solr/solr-velocity/6.3.0/solr-velocity-6.3.0.pom
==============================================================================
--- dev/lucene/lucene-solr-6.3.0-RC1-rev11e7e356e15ad5f9e3cfe26966c9dd5f666ece61/solr/maven/org/apache/solr/solr-velocity/6.3.0/solr-velocity-6.3.0.pom (added)
+++ dev/lucene/lucene-solr-6.3.0-RC1-rev11e7e356e15ad5f9e3cfe26966c9dd5f666ece61/solr/maven/org/apache/solr/solr-velocity/6.3.0/solr-velocity-6.3.0.pom Mon Oct 31 13:31:30 2016
@@ -0,0 +1,425 @@
+<project xmlns="http://maven.apache.org/POM/4.0.0"
+         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+  <!--
+    Licensed to the Apache Software Foundation (ASF) under one
+    or more contributor license agreements.  See the NOTICE file
+    distributed with this work for additional information
+    regarding copyright ownership.  The ASF licenses this file
+    to you under the Apache License, Version 2.0 (the
+    "License"); you may not use this file except in compliance
+    with the License.  You may obtain a copy of the License at
+
+    http://www.apache.org/licenses/LICENSE-2.0
+
+    Unless required by applicable law or agreed to in writing,
+    software distributed under the License is distributed on an
+    "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+    KIND, either express or implied.  See the License for the
+    specific language governing permissions and limitations
+    under the License.
+  -->
+  <modelVersion>4.0.0</modelVersion>
+  <parent>
+    <groupId>org.apache.solr</groupId>
+    <artifactId>solr-parent</artifactId>
+    <version>6.3.0</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>io.airlift</groupId>
+      <artifactId>slice</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>

Added: dev/lucene/lucene-solr-6.3.0-RC1-rev11e7e356e15ad5f9e3cfe26966c9dd5f666ece61/solr/maven/org/apache/solr/solr-velocity/6.3.0/solr-velocity-6.3.0.pom.asc
==============================================================================
--- dev/lucene/lucene-solr-6.3.0-RC1-rev11e7e356e15ad5f9e3cfe26966c9dd5f666ece61/solr/maven/org/apache/solr/solr-velocity/6.3.0/solr-velocity-6.3.0.pom.asc (added)
+++ dev/lucene/lucene-solr-6.3.0-RC1-rev11e7e356e15ad5f9e3cfe26966c9dd5f666ece61/solr/maven/org/apache/solr/solr-velocity/6.3.0/solr-velocity-6.3.0.pom.asc Mon Oct 31 13:31:30 2016
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v1
+
+iQIcBAABAgAGBQJYFzSiAAoJENySYW8XcFD2zMAP/jaYCGiiZgUrL6tiyzY/CCeF
+vmZ7YcjXIycbOigc9xEN0UAvLS5cGhSY8Z7+J/kh/j2DTt8F6+MCUbV5/eynHan9
+Mdc5zjz7Z7VO4qTbVMyf8H4cs8dfdCH7omXoXFgD5QrmeGVql5qzU3sXjUnReFeV
+92APhr1sknFNc07XKFogC7ISQa8Jd90whSgu22nwkS/vLIPuGv+4V/lPsPgB792r
+Z2FonTad8oOFEFnhF5RqsdQWENG5EVMsxwBqewR8Va4HDQvEgvZL1tmdSn2JYIPL
+aHTut+3dZTFuRmokhbIq0Q8XuY0OiZambcUFslOq9XiMWviBEGu9RsRVkPJv6pxj
+Krw5ffEnyx7tIlqc/EyOSYu4t0dsIZvhFXTW7qvVgslINQq5wrcxE6luqPy9H9t1
+RSdaKQah+5JgzFDXz2GBEsVki6spXUF1gCxHBBN+DxHWXq9QhffPC1CnIi9UKgxc
+HtozrfHv08cAtB7KmcVSkw5bjrTFIeB8By0kbd0t6rHEghvkgeUQJ6jJ3Z1PS1nK
+iGjyXaIFA1/u5TtE4PLrfzApoCC0P91sXguvHRTlLsMDmYryYhnvXG6mJ2MAljIz
+CnH6N7E/4KaZUKuuNhj6KiLwINR8XoGaTynHloMEHmR0WebplVjybZS+PVL90Zjz
+rot3uQD9rac9ZhvyvmTV
+=TB4o
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-6.3.0-RC1-rev11e7e356e15ad5f9e3cfe26966c9dd5f666ece61/solr/maven/org/apache/solr/solr-velocity/6.3.0/solr-velocity-6.3.0.pom.md5
==============================================================================
--- dev/lucene/lucene-solr-6.3.0-RC1-rev11e7e356e15ad5f9e3cfe26966c9dd5f666ece61/solr/maven/org/apache/solr/solr-velocity/6.3.0/solr-velocity-6.3.0.pom.md5 (added)
+++ dev/lucene/lucene-solr-6.3.0-RC1-rev11e7e356e15ad5f9e3cfe26966c9dd5f666ece61/solr/maven/org/apache/solr/solr-velocity/6.3.0/solr-velocity-6.3.0.pom.md5 Mon Oct 31 13:31:30 2016
@@ -0,0 +1 @@
+29a73854b8484a4f8b49ceec9e2a1386
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.3.0-RC1-rev11e7e356e15ad5f9e3cfe26966c9dd5f666ece61/solr/maven/org/apache/solr/solr-velocity/6.3.0/solr-velocity-6.3.0.pom.sha1
==============================================================================
--- dev/lucene/lucene-solr-6.3.0-RC1-rev11e7e356e15ad5f9e3cfe26966c9dd5f666ece61/solr/maven/org/apache/solr/solr-velocity/6.3.0/solr-velocity-6.3.0.pom.sha1 (added)
+++ dev/lucene/lucene-solr-6.3.0-RC1-rev11e7e356e15ad5f9e3cfe26966c9dd5f666ece61/solr/maven/org/apache/solr/solr-velocity/6.3.0/solr-velocity-6.3.0.pom.sha1 Mon Oct 31 13:31:30 2016
@@ -0,0 +1 @@
+a6259c41c076fe83ce97722ca8413fb7cb7cd6fa
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.3.0-RC1-rev11e7e356e15ad5f9e3cfe26966c9dd5f666ece61/solr/maven/org/apache/solr/solr-velocity/maven-metadata.xml
==============================================================================
--- dev/lucene/lucene-solr-6.3.0-RC1-rev11e7e356e15ad5f9e3cfe26966c9dd5f666ece61/solr/maven/org/apache/solr/solr-velocity/maven-metadata.xml (added)
+++ dev/lucene/lucene-solr-6.3.0-RC1-rev11e7e356e15ad5f9e3cfe26966c9dd5f666ece61/solr/maven/org/apache/solr/solr-velocity/maven-metadata.xml Mon Oct 31 13:31:30 2016
@@ -0,0 +1,12 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<metadata>
+  <groupId>org.apache.solr</groupId>
+  <artifactId>solr-velocity</artifactId>
+  <version>6.3.0</version>
+  <versioning>
+    <versions>
+      <version>6.3.0</version>
+    </versions>
+    <lastUpdated>20161031120937</lastUpdated>
+  </versioning>
+</metadata>

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

Added: dev/lucene/lucene-solr-6.3.0-RC1-rev11e7e356e15ad5f9e3cfe26966c9dd5f666ece61/solr/maven/org/apache/solr/solr-velocity/maven-metadata.xml.md5
==============================================================================
--- dev/lucene/lucene-solr-6.3.0-RC1-rev11e7e356e15ad5f9e3cfe26966c9dd5f666ece61/solr/maven/org/apache/solr/solr-velocity/maven-metadata.xml.md5 (added)
+++ dev/lucene/lucene-solr-6.3.0-RC1-rev11e7e356e15ad5f9e3cfe26966c9dd5f666ece61/solr/maven/org/apache/solr/solr-velocity/maven-metadata.xml.md5 Mon Oct 31 13:31:30 2016
@@ -0,0 +1 @@
+0c84dd1ad616ca3b2f00a0f3c5758c6c
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.3.0-RC1-rev11e7e356e15ad5f9e3cfe26966c9dd5f666ece61/solr/maven/org/apache/solr/solr-velocity/maven-metadata.xml.sha1
==============================================================================
--- dev/lucene/lucene-solr-6.3.0-RC1-rev11e7e356e15ad5f9e3cfe26966c9dd5f666ece61/solr/maven/org/apache/solr/solr-velocity/maven-metadata.xml.sha1 (added)
+++ dev/lucene/lucene-solr-6.3.0-RC1-rev11e7e356e15ad5f9e3cfe26966c9dd5f666ece61/solr/maven/org/apache/solr/solr-velocity/maven-metadata.xml.sha1 Mon Oct 31 13:31:30 2016
@@ -0,0 +1 @@
+bc706b782bae5941d883e9b0e721be65f48158a2
\ No newline at end of file

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

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

Added: dev/lucene/lucene-solr-6.3.0-RC1-rev11e7e356e15ad5f9e3cfe26966c9dd5f666ece61/solr/solr-6.3.0-src.tgz.asc
==============================================================================
--- dev/lucene/lucene-solr-6.3.0-RC1-rev11e7e356e15ad5f9e3cfe26966c9dd5f666ece61/solr/solr-6.3.0-src.tgz.asc (added)
+++ dev/lucene/lucene-solr-6.3.0-RC1-rev11e7e356e15ad5f9e3cfe26966c9dd5f666ece61/solr/solr-6.3.0-src.tgz.asc Mon Oct 31 13:31:30 2016
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v1
+
+iQIcBAABAgAGBQJYFzSjAAoJENySYW8XcFD2j38QAKQmonJfQf48huyvsgs84fsQ
+ag8lZAQz4d44z6wzOy+f/3nIYsuZpzXt7YOS8OdzEj2oqCid1UMM7L8c/pB1zcAO
+8dY4Y1YAxCAqYQHOibZe7n1dVlrkJmZo/vHiJh31FN+Y+deTbghhoJM0/wuAVrTz
+/jwZEy2pO7W0sTYV7nGvO6hbWIDS2jFXrQcjZ8PbtzsjXK/mnQKVeHLDbegsDhf4
+q4kOv8vfMIKHefqZMVH5xCZ6i69GvDbXektTIUo7WK9NwNZAlgiSYu503tKWzggj
+JGjaa0rPXV1A4N1oDuXKkWr1/Ov3b/NMYa706mM8RahsVFggvyqQ9PNCgApcaLIq
+n7IZlRk8zZwSPQPHjwCTxEGNjlg21WivXwNEYH1vcSE5SmlDbPzmyxpca4hxi50h
+WXdQsLxdamxVAwY+2P7BBBM0RtX1AGU+j5YN3+5ghRfX8s0Gf8m+6JXxDrWFyVgO
+lzKh9YK6MzJWO8qOKMIa1cfZX8KVAGKwGwmctWOzwZVGnbNyUTXxWKMynODO8971
+TMN/vTkpsn8hK3dlkqxrTSXIxfQmuh4mE9+q1rb6OaEjhjETxPTjzGWHD51JR0Xl
+ngxY+P4CyRFnenvSyP6TLYOmALG7VzDO41Dx5wNybK9JAkl8THA7hUJKnjIlc3nw
+v3MPhlb4i0gWjDxKSsR6
+=77kV
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-6.3.0-RC1-rev11e7e356e15ad5f9e3cfe26966c9dd5f666ece61/solr/solr-6.3.0-src.tgz.md5
==============================================================================
--- dev/lucene/lucene-solr-6.3.0-RC1-rev11e7e356e15ad5f9e3cfe26966c9dd5f666ece61/solr/solr-6.3.0-src.tgz.md5 (added)
+++ dev/lucene/lucene-solr-6.3.0-RC1-rev11e7e356e15ad5f9e3cfe26966c9dd5f666ece61/solr/solr-6.3.0-src.tgz.md5 Mon Oct 31 13:31:30 2016
@@ -0,0 +1 @@
+0602bedc18714999b47f0aa3e7da75e6 *solr-6.3.0-src.tgz

Added: dev/lucene/lucene-solr-6.3.0-RC1-rev11e7e356e15ad5f9e3cfe26966c9dd5f666ece61/solr/solr-6.3.0-src.tgz.sha1
==============================================================================
--- dev/lucene/lucene-solr-6.3.0-RC1-rev11e7e356e15ad5f9e3cfe26966c9dd5f666ece61/solr/solr-6.3.0-src.tgz.sha1 (added)
+++ dev/lucene/lucene-solr-6.3.0-RC1-rev11e7e356e15ad5f9e3cfe26966c9dd5f666ece61/solr/solr-6.3.0-src.tgz.sha1 Mon Oct 31 13:31:30 2016
@@ -0,0 +1 @@
+c76a7201b876cde9fcf189a392140e949a01a29f *solr-6.3.0-src.tgz

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

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

Added: dev/lucene/lucene-solr-6.3.0-RC1-rev11e7e356e15ad5f9e3cfe26966c9dd5f666ece61/solr/solr-6.3.0.tgz.asc
==============================================================================
--- dev/lucene/lucene-solr-6.3.0-RC1-rev11e7e356e15ad5f9e3cfe26966c9dd5f666ece61/solr/solr-6.3.0.tgz.asc (added)
+++ dev/lucene/lucene-solr-6.3.0-RC1-rev11e7e356e15ad5f9e3cfe26966c9dd5f666ece61/solr/solr-6.3.0.tgz.asc Mon Oct 31 13:31:30 2016
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v1
+
+iQIcBAABAgAGBQJYFzSjAAoJENySYW8XcFD23sEP/0a67bd6aKFTbBC5kq/mSZRj
+Ju2uSa+jBFOJcBUGc8oWqy9G76+R5LS4HgLMZlCrnC906hXQMp3PYhZAdgzoufvF
+cnfN4WRdHPNo6aRdVuRLSNecpluIbIhnwSkbqOO4IT5dPSvl29zMImF+n/QYD8ug
+D1s+Jij2QLoGiqfI03c7fkFisf9EKDMKclXnD1mKx+vqz5th/2A87LKRUTyasVpz
+VJLkid353wSyBoaaGIieWx/EOPXHWEnpljbo9cXYSZDusKXzQzdYOknc5auC1plo
+3SbLz1mYWT8R3juQmcbwl9nswHgOYod8Df8IvlG8hMmIBoA4mCbKwNwc/7OTkBQG
+hLLIZeh4M7TQWrFvOuDzxG8304dY5GM216W8aNxtIxO0HGU/sN7WtreIg+E1DqiR
+SnkQfPdpZH6yk2Vv/iWK/laTCHNDXZqy92riP8KC8d5mThapM47nl7rePS9bxg1J
+T01g3/QKu8mrcDEaw/MhN32GmQeU2D10TmCgwgttWXuBgPMruaqNCFteOFX15Wxr
+/nxNQfSTe2V3W3GEGrE5ClBUDcBRXCb4N6Db9+BKhBfp+XGmiCrfmmPyjwyWBQ8O
+0G2deq2DfGS/wJQ9RY3y7cisLCewKNxbI6pQLNuGUnfhdldS8vhCiRjMvrsXLW50
+rRAC8HX1vCCRRJigVBGX
+=S/ZX
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-6.3.0-RC1-rev11e7e356e15ad5f9e3cfe26966c9dd5f666ece61/solr/solr-6.3.0.tgz.md5
==============================================================================
--- dev/lucene/lucene-solr-6.3.0-RC1-rev11e7e356e15ad5f9e3cfe26966c9dd5f666ece61/solr/solr-6.3.0.tgz.md5 (added)
+++ dev/lucene/lucene-solr-6.3.0-RC1-rev11e7e356e15ad5f9e3cfe26966c9dd5f666ece61/solr/solr-6.3.0.tgz.md5 Mon Oct 31 13:31:30 2016
@@ -0,0 +1 @@
+6f1afc9f65c0bda6755896db6b2b3cca *solr-6.3.0.tgz

Added: dev/lucene/lucene-solr-6.3.0-RC1-rev11e7e356e15ad5f9e3cfe26966c9dd5f666ece61/solr/solr-6.3.0.tgz.sha1
==============================================================================
--- dev/lucene/lucene-solr-6.3.0-RC1-rev11e7e356e15ad5f9e3cfe26966c9dd5f666ece61/solr/solr-6.3.0.tgz.sha1 (added)
+++ dev/lucene/lucene-solr-6.3.0-RC1-rev11e7e356e15ad5f9e3cfe26966c9dd5f666ece61/solr/solr-6.3.0.tgz.sha1 Mon Oct 31 13:31:30 2016
@@ -0,0 +1 @@
+00a9d74d3db4ad73e26dc4d31ce1d7e9f5ab59dd *solr-6.3.0.tgz

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

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

Added: dev/lucene/lucene-solr-6.3.0-RC1-rev11e7e356e15ad5f9e3cfe26966c9dd5f666ece61/solr/solr-6.3.0.zip.asc
==============================================================================
--- dev/lucene/lucene-solr-6.3.0-RC1-rev11e7e356e15ad5f9e3cfe26966c9dd5f666ece61/solr/solr-6.3.0.zip.asc (added)
+++ dev/lucene/lucene-solr-6.3.0-RC1-rev11e7e356e15ad5f9e3cfe26966c9dd5f666ece61/solr/solr-6.3.0.zip.asc Mon Oct 31 13:31:30 2016
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v1
+
+iQIcBAABAgAGBQJYFzSlAAoJENySYW8XcFD2wLwP/iUh7dimckC/KfHaJHnDELrs
+3jadEBxgdBO4v1oA91mAFV+OF8vwtG/CTujZ2fvyYq3a7FQ/xPdE9itsc6aFmbIs
+0ytP5rVHtjH3KNN0O1Np1GeWmQYu93OHda9ctSf02XLkQcERnt7PlYku1yr54Fdn
+mwibxoAmPcY++sW/BEC8zVe5xqqsIoHFlaVgUMeC4vl6NbwGanJFr+B/xJBoyqmP
+mbJq+994QuTh8aAhrO5iQUVHEPAaSXSCE8kyHMJsyne91FaVH5CrO6ZcmcNSSxML
+kw1XNJ9aQeSPnowgmiUP64bGFUJK607cf4QfZs4opl4VZcN3DUUSEd9Dr6uZtB5M
+vZAhk/Z48V/wySIjqXsog1iVCvXT8BL0Oh+CZ9aPpFugwc+ozCOgZHYlQyWgqua/
+GO3snSEM4M9HFDaj7VTfZyd3gjFJd6iB1wkWXpc51IMkO8H0PgPiSD6KXMEVtjAm
+E4S7APmk3Qxcq52RgJa3e6rke/J+LQvvcWM82rMM5qV7qsqcLGbtI5S3Zripq8vV
+rsdXUgtAESi9ml3TrZCTOYtWtJx2RC4dSXH9HFlHCK1F83F1/4cScUtP9fCMwuTz
+rhpzkHEKSpAiyzjnx8FkXm3nEbhD5BlQ3hN97nifQoC/9uAFr9IWKGdlsjNmMxHa
+jMy19KnaGpL54xb7I/U/
+=9W5w
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-6.3.0-RC1-rev11e7e356e15ad5f9e3cfe26966c9dd5f666ece61/solr/solr-6.3.0.zip.md5
==============================================================================
--- dev/lucene/lucene-solr-6.3.0-RC1-rev11e7e356e15ad5f9e3cfe26966c9dd5f666ece61/solr/solr-6.3.0.zip.md5 (added)
+++ dev/lucene/lucene-solr-6.3.0-RC1-rev11e7e356e15ad5f9e3cfe26966c9dd5f666ece61/solr/solr-6.3.0.zip.md5 Mon Oct 31 13:31:30 2016
@@ -0,0 +1 @@
+478b21bf22f70750fde63493b1176ff1 *solr-6.3.0.zip

Added: dev/lucene/lucene-solr-6.3.0-RC1-rev11e7e356e15ad5f9e3cfe26966c9dd5f666ece61/solr/solr-6.3.0.zip.sha1
==============================================================================
--- dev/lucene/lucene-solr-6.3.0-RC1-rev11e7e356e15ad5f9e3cfe26966c9dd5f666ece61/solr/solr-6.3.0.zip.sha1 (added)
+++ dev/lucene/lucene-solr-6.3.0-RC1-rev11e7e356e15ad5f9e3cfe26966c9dd5f666ece61/solr/solr-6.3.0.zip.sha1 Mon Oct 31 13:31:30 2016
@@ -0,0 +1 @@
+5e4f3e34835618e855899909026b570836bc46a0 *solr-6.3.0.zip