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/08 22:49:38 UTC

svn commit: r18240 [21/21] - in /dev/lucene/lucene-solr-5.5.4-RC1-rev31012120ebbd93744753eb37f1dbc5e654628291: ./ 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-5.5.4-RC1-rev31012120ebbd93744753eb37f1dbc5e654628291/solr/maven/org/apache/solr/solr-test-framework/5.5.4/solr-test-framework-5.5.4.pom
==============================================================================
--- dev/lucene/lucene-solr-5.5.4-RC1-rev31012120ebbd93744753eb37f1dbc5e654628291/solr/maven/org/apache/solr/solr-test-framework/5.5.4/solr-test-framework-5.5.4.pom (added)
+++ dev/lucene/lucene-solr-5.5.4-RC1-rev31012120ebbd93744753eb37f1dbc5e654628291/solr/maven/org/apache/solr/solr-test-framework/5.5.4/solr-test-framework-5.5.4.pom Wed Feb  8 22:49:31 2017
@@ -0,0 +1,405 @@
+<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>5.5.4</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-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</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.lucene</groupId>
+      <artifactId>lucene-suggest</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.lucene</groupId>
+      <artifactId>lucene-test-framework</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.solr</groupId>
+      <artifactId>solr-core</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.solr</groupId>
+      <artifactId>solr-solrj</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.carrotsearch</groupId>
+      <artifactId>hppc</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.carrotsearch.randomizedtesting</groupId>
+      <artifactId>junit4-ant</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.carrotsearch.randomizedtesting</groupId>
+      <artifactId>randomizedtesting-runner</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.fasterxml.jackson.core</groupId>
+      <artifactId>jackson-core</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.fasterxml.jackson.dataformat</groupId>
+      <artifactId>jackson-dataformat-smile</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.google.guava</groupId>
+      <artifactId>guava</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.google.protobuf</groupId>
+      <artifactId>protobuf-java</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.googlecode.concurrentlinkedhashmap</groupId>
+      <artifactId>concurrentlinkedhashmap-lru</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.spatial4j</groupId>
+      <artifactId>spatial4j</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>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.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.httpcomponents</groupId>
+      <artifactId>httpclient</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.httpcomponents</groupId>
+      <artifactId>httpcore</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.httpcomponents</groupId>
+      <artifactId>httpmime</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.zookeeper</groupId>
+      <artifactId>zookeeper</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.codehaus.woodstox</groupId>
+      <artifactId>stax2-api</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.codehaus.woodstox</groupId>
+      <artifactId>woodstox-core-asl</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.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.htrace</groupId>
+      <artifactId>htrace-core</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}</directory>
+        <excludes>
+          <exclude>**/*.java</exclude>
+        </excludes>
+      </resource>
+    </resources>
+    <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-5.5.4-RC1-rev31012120ebbd93744753eb37f1dbc5e654628291/solr/maven/org/apache/solr/solr-test-framework/5.5.4/solr-test-framework-5.5.4.pom
------------------------------------------------------------------------------
    svn:eol-style = native

Added: dev/lucene/lucene-solr-5.5.4-RC1-rev31012120ebbd93744753eb37f1dbc5e654628291/solr/maven/org/apache/solr/solr-test-framework/5.5.4/solr-test-framework-5.5.4.pom.asc
==============================================================================
--- dev/lucene/lucene-solr-5.5.4-RC1-rev31012120ebbd93744753eb37f1dbc5e654628291/solr/maven/org/apache/solr/solr-test-framework/5.5.4/solr-test-framework-5.5.4.pom.asc (added)
+++ dev/lucene/lucene-solr-5.5.4-RC1-rev31012120ebbd93744753eb37f1dbc5e654628291/solr/maven/org/apache/solr/solr-test-framework/5.5.4/solr-test-framework-5.5.4.pom.asc Wed Feb  8 22:49:31 2017
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v1
+
+iQIcBAABAgAGBQJYm2BvAAoJEAUaD692vGUH830P/1gvVSl0SHoPlXpoJIBi02sr
+HpRv9BC4HndZsB6bE+ypYySeHYZeAqHzHZGyK3Egvo7AVXFBazAolaHgUJAZ8Lla
+rgenk1gefhXfde7nuuWI/KYm+YmPOcqs82VPvaNtVmooK8QtTfPLfwFP5Pk4TolB
+fi3Lyy/M/dQwNl6eEGMGSIPllNmGhEx1UxP0v+gVkNVfKqmj3OQJjtl+Hy9nYNd2
+/N4Shp9S84/VePlJgKhgSLdrtDxPF4USI7IvBZ8Ow14oIrJItBSO0E3J9ojNDEOe
+rGGfFbRxfYg4XfZCt3Hi29rTshaoGiyAByCky3L940vpFyAk42D7MNC1YN0vZ6c1
+GlhuuTUa92Lnh0YGmY/itjkdV1RHMKcNPyXZ4QTlaZRbT2FB0OKgUEUKNTNSsZza
+g4Ukp/I5Xb5SNQrrKXiTbxQWnJEW2m9jr7WHWPHZFxXabuNEXrdvqFUGRCfoFEJK
+C/A6ZwdWJTqo1S7uspTu+rLwcwFlARFsqWTTwFwVE4BSq8cJPCA2mTnlUhbRRe84
+Bh+K6M+Q3/S8pDjblJ2PgM8ej+lfiOuH84vBDBAEHOO4+xnd44C/5VieV+HdDvZK
+6tGbW0JH9RKikMn5pLYpz/bsMvIgSFMZLjh2vA0LegMtYE3rB1kzIug2IFmPRbtz
+KsQpY83HB4nVrsuZkGq4
+=5ukL
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-5.5.4-RC1-rev31012120ebbd93744753eb37f1dbc5e654628291/solr/maven/org/apache/solr/solr-test-framework/5.5.4/solr-test-framework-5.5.4.pom.md5
==============================================================================
--- dev/lucene/lucene-solr-5.5.4-RC1-rev31012120ebbd93744753eb37f1dbc5e654628291/solr/maven/org/apache/solr/solr-test-framework/5.5.4/solr-test-framework-5.5.4.pom.md5 (added)
+++ dev/lucene/lucene-solr-5.5.4-RC1-rev31012120ebbd93744753eb37f1dbc5e654628291/solr/maven/org/apache/solr/solr-test-framework/5.5.4/solr-test-framework-5.5.4.pom.md5 Wed Feb  8 22:49:31 2017
@@ -0,0 +1 @@
+ea0645882d51fd3aedaa674d21a643a6
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.5.4-RC1-rev31012120ebbd93744753eb37f1dbc5e654628291/solr/maven/org/apache/solr/solr-test-framework/5.5.4/solr-test-framework-5.5.4.pom.sha1
==============================================================================
--- dev/lucene/lucene-solr-5.5.4-RC1-rev31012120ebbd93744753eb37f1dbc5e654628291/solr/maven/org/apache/solr/solr-test-framework/5.5.4/solr-test-framework-5.5.4.pom.sha1 (added)
+++ dev/lucene/lucene-solr-5.5.4-RC1-rev31012120ebbd93744753eb37f1dbc5e654628291/solr/maven/org/apache/solr/solr-test-framework/5.5.4/solr-test-framework-5.5.4.pom.sha1 Wed Feb  8 22:49:31 2017
@@ -0,0 +1 @@
+47ce97681b6342cdb2f6798f8052d6477403a88f
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.5.4-RC1-rev31012120ebbd93744753eb37f1dbc5e654628291/solr/maven/org/apache/solr/solr-test-framework/maven-metadata.xml
==============================================================================
--- dev/lucene/lucene-solr-5.5.4-RC1-rev31012120ebbd93744753eb37f1dbc5e654628291/solr/maven/org/apache/solr/solr-test-framework/maven-metadata.xml (added)
+++ dev/lucene/lucene-solr-5.5.4-RC1-rev31012120ebbd93744753eb37f1dbc5e654628291/solr/maven/org/apache/solr/solr-test-framework/maven-metadata.xml Wed Feb  8 22:49:31 2017
@@ -0,0 +1,12 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<metadata>
+  <groupId>org.apache.solr</groupId>
+  <artifactId>solr-test-framework</artifactId>
+  <version>5.5.4</version>
+  <versioning>
+    <versions>
+      <version>5.5.4</version>
+    </versions>
+    <lastUpdated>20170208181513</lastUpdated>
+  </versioning>
+</metadata>

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

Added: dev/lucene/lucene-solr-5.5.4-RC1-rev31012120ebbd93744753eb37f1dbc5e654628291/solr/maven/org/apache/solr/solr-test-framework/maven-metadata.xml.md5
==============================================================================
--- dev/lucene/lucene-solr-5.5.4-RC1-rev31012120ebbd93744753eb37f1dbc5e654628291/solr/maven/org/apache/solr/solr-test-framework/maven-metadata.xml.md5 (added)
+++ dev/lucene/lucene-solr-5.5.4-RC1-rev31012120ebbd93744753eb37f1dbc5e654628291/solr/maven/org/apache/solr/solr-test-framework/maven-metadata.xml.md5 Wed Feb  8 22:49:31 2017
@@ -0,0 +1 @@
+95d7e9d6056fc180c28a937bf508423d
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.5.4-RC1-rev31012120ebbd93744753eb37f1dbc5e654628291/solr/maven/org/apache/solr/solr-test-framework/maven-metadata.xml.sha1
==============================================================================
--- dev/lucene/lucene-solr-5.5.4-RC1-rev31012120ebbd93744753eb37f1dbc5e654628291/solr/maven/org/apache/solr/solr-test-framework/maven-metadata.xml.sha1 (added)
+++ dev/lucene/lucene-solr-5.5.4-RC1-rev31012120ebbd93744753eb37f1dbc5e654628291/solr/maven/org/apache/solr/solr-test-framework/maven-metadata.xml.sha1 Wed Feb  8 22:49:31 2017
@@ -0,0 +1 @@
+4bb56693284b118a61beda0e6c84bd154c85d6d8
\ No newline at end of file

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

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

Added: dev/lucene/lucene-solr-5.5.4-RC1-rev31012120ebbd93744753eb37f1dbc5e654628291/solr/maven/org/apache/solr/solr-uima/5.5.4/solr-uima-5.5.4-javadoc.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-5.5.4-RC1-rev31012120ebbd93744753eb37f1dbc5e654628291/solr/maven/org/apache/solr/solr-uima/5.5.4/solr-uima-5.5.4-javadoc.jar.asc (added)
+++ dev/lucene/lucene-solr-5.5.4-RC1-rev31012120ebbd93744753eb37f1dbc5e654628291/solr/maven/org/apache/solr/solr-uima/5.5.4/solr-uima-5.5.4-javadoc.jar.asc Wed Feb  8 22:49:31 2017
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v1
+
+iQIcBAABAgAGBQJYm2BvAAoJEAUaD692vGUHJ4MP/A0QlDD5GAiSYBeoTTKH/yQQ
+b1BjSdBF57bwTNQ4DVFo8EsuvGG3X1WZ6dltowMuS5hpoRBXzA0sqczvn5ZhmmUj
+ihhO3DLRMl666sZ5gEd518JD1n1TLTSl5//ZDBg+GvJhxHaN6B4mBPQrMjoecw51
+Kx+ElY/7p+Zo7QTjh3TuxPCRPUMSA4OcngtERtQMZyyUxjPTsZXaUwNOmtqZ7pE2
+ceMzGMwFiriPhh4OkuUVUn2Eauq+hmrYfe+AiljZaI+CyYew2eyeyM1Icot3rRrJ
+ZryEl2hqxTegOKIIH7VWeuzGG7pRBmPun3BZkFOy6gock2bQ37dwm0Je5N1rS3VF
+TlFCwk45Nz867AtnI+KTTbz4XYbbsf4YESWXr3W+OkNnLoYlR6Qo0+mlhKwQiEbo
+R9pa/uLLQrh3S3+RM1GIqrOQpwZhJ84sXC/oxmnEWB412/lRk97CIsd3Ww5D3ex3
+pQqREo/ydU62jqYpGtO4UMwOe1CVrRE5WRYEem1ABHw9wML/6WO55knz7xdM3Zem
+ilwfmUchlmq4XPQlsi/kaibcaQ/933+jDLMZ+AO9hrpPCcgoOFumxJKZISLZ5tER
+kzhnrZet826THBpiOoxfDgo1bS+BKx2GTneTN9vpma7PPFk9k2DUo/ieKtKYUYG8
+c03ZTOcouGrkzZxAzW+k
+=llM6
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-5.5.4-RC1-rev31012120ebbd93744753eb37f1dbc5e654628291/solr/maven/org/apache/solr/solr-uima/5.5.4/solr-uima-5.5.4-javadoc.jar.md5
==============================================================================
--- dev/lucene/lucene-solr-5.5.4-RC1-rev31012120ebbd93744753eb37f1dbc5e654628291/solr/maven/org/apache/solr/solr-uima/5.5.4/solr-uima-5.5.4-javadoc.jar.md5 (added)
+++ dev/lucene/lucene-solr-5.5.4-RC1-rev31012120ebbd93744753eb37f1dbc5e654628291/solr/maven/org/apache/solr/solr-uima/5.5.4/solr-uima-5.5.4-javadoc.jar.md5 Wed Feb  8 22:49:31 2017
@@ -0,0 +1 @@
+3aa776e0475d2f854366bb8b633b3bd2
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.5.4-RC1-rev31012120ebbd93744753eb37f1dbc5e654628291/solr/maven/org/apache/solr/solr-uima/5.5.4/solr-uima-5.5.4-javadoc.jar.sha1
==============================================================================
--- dev/lucene/lucene-solr-5.5.4-RC1-rev31012120ebbd93744753eb37f1dbc5e654628291/solr/maven/org/apache/solr/solr-uima/5.5.4/solr-uima-5.5.4-javadoc.jar.sha1 (added)
+++ dev/lucene/lucene-solr-5.5.4-RC1-rev31012120ebbd93744753eb37f1dbc5e654628291/solr/maven/org/apache/solr/solr-uima/5.5.4/solr-uima-5.5.4-javadoc.jar.sha1 Wed Feb  8 22:49:31 2017
@@ -0,0 +1 @@
+82e84ccb0068c9247e8e75c8938a63ae23c6727c
\ No newline at end of file

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

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

Added: dev/lucene/lucene-solr-5.5.4-RC1-rev31012120ebbd93744753eb37f1dbc5e654628291/solr/maven/org/apache/solr/solr-uima/5.5.4/solr-uima-5.5.4-sources.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-5.5.4-RC1-rev31012120ebbd93744753eb37f1dbc5e654628291/solr/maven/org/apache/solr/solr-uima/5.5.4/solr-uima-5.5.4-sources.jar.asc (added)
+++ dev/lucene/lucene-solr-5.5.4-RC1-rev31012120ebbd93744753eb37f1dbc5e654628291/solr/maven/org/apache/solr/solr-uima/5.5.4/solr-uima-5.5.4-sources.jar.asc Wed Feb  8 22:49:31 2017
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v1
+
+iQIcBAABAgAGBQJYm2BwAAoJEAUaD692vGUHbk0P/i5q2wCJkxiG7M50cVERb2oh
+u+kiuuJWRBA0NI8KPeqBb0MJtBxoEqOOEh6gFba49jHuFxI4mnNAkJvAD7pEMGd3
+rGi9Q72I+Dhvr6DIyncBek+5MrmCmI6bdCLcY2H2x0HVGc/CJVrGPcfUDR0GPPqB
+ivvQhiVdTLvXNK9WpSs8KByaYVRibeGBzbrrNvC1NtRFWxub5z7SQ7x+VLiWSV5B
+u+lce7//zR4tT1Dj0gJZ6XDqOIv8imZRlQBYpHRr9ZKVebKQtnhliqiQw+5mVSBQ
+so3HIJEHtooYO+VuupVGh/MtEBmuZszvI0eDU/WiSPk9rZAimupJA/l6BR8dTn5i
+XF8Zt15bG7nxcijnhDJmq8XdnaFLEJXhJBpIhOthtbVFC9ZjqVh57qksYPXlRphg
+xEsj+bRLDRqeqmVyowKJWf15dpfWAveKsmW1Qjd3qcBq3eosdBgs7boxpjFgEELV
+ZAwEda/V7FFprQD0Nf4LzoEGEkI6bzL77s7RSPweFRWrsJlHEtgVIskDuPNYa8Pq
+pvrACyM7/qrPAvwctQHH839l+XZiNtJFrab4JUwUTnNrQuiTT43enAOgidGluSl8
+So3TyHx4bWizUIYljn4dxB0MOntTjdNtbquKlPw5XYmTws9slBCT2BWSn41OdaZF
+ssfvJboQLnvgzKh3EHNB
+=++uw
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-5.5.4-RC1-rev31012120ebbd93744753eb37f1dbc5e654628291/solr/maven/org/apache/solr/solr-uima/5.5.4/solr-uima-5.5.4-sources.jar.md5
==============================================================================
--- dev/lucene/lucene-solr-5.5.4-RC1-rev31012120ebbd93744753eb37f1dbc5e654628291/solr/maven/org/apache/solr/solr-uima/5.5.4/solr-uima-5.5.4-sources.jar.md5 (added)
+++ dev/lucene/lucene-solr-5.5.4-RC1-rev31012120ebbd93744753eb37f1dbc5e654628291/solr/maven/org/apache/solr/solr-uima/5.5.4/solr-uima-5.5.4-sources.jar.md5 Wed Feb  8 22:49:31 2017
@@ -0,0 +1 @@
+40bdf5f11f84827e6b5cd301a480ee36
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.5.4-RC1-rev31012120ebbd93744753eb37f1dbc5e654628291/solr/maven/org/apache/solr/solr-uima/5.5.4/solr-uima-5.5.4-sources.jar.sha1
==============================================================================
--- dev/lucene/lucene-solr-5.5.4-RC1-rev31012120ebbd93744753eb37f1dbc5e654628291/solr/maven/org/apache/solr/solr-uima/5.5.4/solr-uima-5.5.4-sources.jar.sha1 (added)
+++ dev/lucene/lucene-solr-5.5.4-RC1-rev31012120ebbd93744753eb37f1dbc5e654628291/solr/maven/org/apache/solr/solr-uima/5.5.4/solr-uima-5.5.4-sources.jar.sha1 Wed Feb  8 22:49:31 2017
@@ -0,0 +1 @@
+9d12649269c68970401ed2f3868b7043b64371a2
\ No newline at end of file

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

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

Added: dev/lucene/lucene-solr-5.5.4-RC1-rev31012120ebbd93744753eb37f1dbc5e654628291/solr/maven/org/apache/solr/solr-uima/5.5.4/solr-uima-5.5.4.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-5.5.4-RC1-rev31012120ebbd93744753eb37f1dbc5e654628291/solr/maven/org/apache/solr/solr-uima/5.5.4/solr-uima-5.5.4.jar.asc (added)
+++ dev/lucene/lucene-solr-5.5.4-RC1-rev31012120ebbd93744753eb37f1dbc5e654628291/solr/maven/org/apache/solr/solr-uima/5.5.4/solr-uima-5.5.4.jar.asc Wed Feb  8 22:49:31 2017
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v1
+
+iQIcBAABAgAGBQJYm2BwAAoJEAUaD692vGUHcY0P/iYy6bx9L6+0xJHrJxblbsHp
+0uyICW4xXJ6iHMq3+UMFNTAFmBokZOhyo5ewXpFKHM6SthVyHVhg6KsQVtep3Yyy
+XkYPjl6fYnThoXq7IxvW8x2dbBQ80hLxKCfRKj5fZSX3kHETQ7+3pN2S7s7Sa8hg
+QiDC4NR4S3lpRLjFMBJNyYyO0vqqRVy2wnmdiGEe5DSkJVl8uu0aQns0fzylUxA2
+DcbYSHE89il7+D/miHgUb+ffCLSHru/Q3D/1316xCIoLJu4sithz8PHVk36j/UmU
+ZWLak3yJ2iBNLG250BsDoe/rjtJ8nzHHSlcD57d0mjUpNHwQwpdXvoPDKllri4SF
+H5U65RjkBgCQplQ4yISEEjF65ZP88B9DUzWeRSE0f9JaDNUiu8ZOJDeoqF9AIOWJ
+OyZHyYfJFqymFSdzj5tMdoequ/FqPCe78VsKvbkOBEfmEsR6yUcERfIwntLsIkLr
+HJUNmma3FrfEV331qmCHTUMkC0PKQDzBTb9ZGs3RX/EgrulwrnkpjENIqo+2dVYi
+XvWFlABOk/nJ8DuXgIL2SVJbPuqZirC1gtnmUl37U0ZcOls9PXInEWVg8UNFMum+
+BdWI+2/YwXKHzRO9kMa20SNzkKtFLHSBCtcvWnhUWJYEVmxIESnhVsWlE9TnyW2V
+y/AFYYkG2imdGCr0dX13
+=HQZ9
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-5.5.4-RC1-rev31012120ebbd93744753eb37f1dbc5e654628291/solr/maven/org/apache/solr/solr-uima/5.5.4/solr-uima-5.5.4.jar.md5
==============================================================================
--- dev/lucene/lucene-solr-5.5.4-RC1-rev31012120ebbd93744753eb37f1dbc5e654628291/solr/maven/org/apache/solr/solr-uima/5.5.4/solr-uima-5.5.4.jar.md5 (added)
+++ dev/lucene/lucene-solr-5.5.4-RC1-rev31012120ebbd93744753eb37f1dbc5e654628291/solr/maven/org/apache/solr/solr-uima/5.5.4/solr-uima-5.5.4.jar.md5 Wed Feb  8 22:49:31 2017
@@ -0,0 +1 @@
+c15e71f7d418509e5d3d1f4d64b957be
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.5.4-RC1-rev31012120ebbd93744753eb37f1dbc5e654628291/solr/maven/org/apache/solr/solr-uima/5.5.4/solr-uima-5.5.4.jar.sha1
==============================================================================
--- dev/lucene/lucene-solr-5.5.4-RC1-rev31012120ebbd93744753eb37f1dbc5e654628291/solr/maven/org/apache/solr/solr-uima/5.5.4/solr-uima-5.5.4.jar.sha1 (added)
+++ dev/lucene/lucene-solr-5.5.4-RC1-rev31012120ebbd93744753eb37f1dbc5e654628291/solr/maven/org/apache/solr/solr-uima/5.5.4/solr-uima-5.5.4.jar.sha1 Wed Feb  8 22:49:31 2017
@@ -0,0 +1 @@
+8fd45819e42f98b2f783359ea0c4e4b66906e429
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.5.4-RC1-rev31012120ebbd93744753eb37f1dbc5e654628291/solr/maven/org/apache/solr/solr-uima/5.5.4/solr-uima-5.5.4.pom
==============================================================================
--- dev/lucene/lucene-solr-5.5.4-RC1-rev31012120ebbd93744753eb37f1dbc5e654628291/solr/maven/org/apache/solr/solr-uima/5.5.4/solr-uima-5.5.4.pom (added)
+++ dev/lucene/lucene-solr-5.5.4-RC1-rev31012120ebbd93744753eb37f1dbc5e654628291/solr/maven/org/apache/solr/solr-uima/5.5.4/solr-uima-5.5.4.pom Wed Feb  8 22:49:31 2017
@@ -0,0 +1,403 @@
+<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>5.5.4</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-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</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.lucene</groupId>
+      <artifactId>lucene-suggest</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.solr</groupId>
+      <artifactId>solr-core</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.solr</groupId>
+      <artifactId>solr-solrj</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.carrotsearch</groupId>
+      <artifactId>hppc</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.fasterxml.jackson.core</groupId>
+      <artifactId>jackson-core</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.fasterxml.jackson.dataformat</groupId>
+      <artifactId>jackson-dataformat-smile</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.google.guava</groupId>
+      <artifactId>guava</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.google.protobuf</groupId>
+      <artifactId>protobuf-java</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.googlecode.concurrentlinkedhashmap</groupId>
+      <artifactId>concurrentlinkedhashmap-lru</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.spatial4j</groupId>
+      <artifactId>spatial4j</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>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.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.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.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.htrace</groupId>
+      <artifactId>htrace-core</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-5.5.4-RC1-rev31012120ebbd93744753eb37f1dbc5e654628291/solr/maven/org/apache/solr/solr-uima/5.5.4/solr-uima-5.5.4.pom
------------------------------------------------------------------------------
    svn:eol-style = native

Added: dev/lucene/lucene-solr-5.5.4-RC1-rev31012120ebbd93744753eb37f1dbc5e654628291/solr/maven/org/apache/solr/solr-uima/5.5.4/solr-uima-5.5.4.pom.asc
==============================================================================
--- dev/lucene/lucene-solr-5.5.4-RC1-rev31012120ebbd93744753eb37f1dbc5e654628291/solr/maven/org/apache/solr/solr-uima/5.5.4/solr-uima-5.5.4.pom.asc (added)
+++ dev/lucene/lucene-solr-5.5.4-RC1-rev31012120ebbd93744753eb37f1dbc5e654628291/solr/maven/org/apache/solr/solr-uima/5.5.4/solr-uima-5.5.4.pom.asc Wed Feb  8 22:49:31 2017
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v1
+
+iQIcBAABAgAGBQJYm2BxAAoJEAUaD692vGUHPyIP/2V+8FWfaxQMLe32MgUeKyif
+EWmcUKqihT5pdOLgTocC4QWjA7tBUJXptm9wXHxdfq2QKRWZYxhRZGHHMi7lOYpR
+uKB70Qkd5+dGkJbBrbVgLZzre3FJ70FyIJdK1VTZ/DpYwm8j9WScBmk+BOzdE+0o
+tY4ejNJbYMM3es6W1P1nFuSrYJxe1nQ5zcEnDThXgmuTxJUrhXxkDhQhd6V3f7OV
+la/hhXympq0ZX3Nr/cXTnhwclg6xhNKqGMnZyglUkRlvtR42KuWiPK97iEPCGC0I
+KdNP2Ydq4ORE2ne4iz81P64wRtauQMwacqn2bl9Ox8fcIe3jgy1ZFSNDlSQAeZ+A
+sc+hxcareHJkFjgoXsJCr9UouPgQHEp3XlSYdHzO/08NL3BNetaBkOoqK4nNmt30
+JZZW3jfHw9lviSPGN6wqe6zk5ePg/p2mfoNK/R47cm/khwki48vL9dbFDXasH4Nf
+SBoh/2VhBndB8FNp8C7I2q8G8nxYc8bz8yKjUoWEinZ/AXP1+dsLMGEY/yEITmsZ
+XHUjujPKk13Kua2t0q22LmGZAPvDfyN2zV5+ZS/4oIzrGLtvsdQYuL+sttjKZTkF
+St/Rpr0gQJrTJl0RL7VlspPNdYXlLTYOossGW56wZPV22l/hXWUrf8ApFH1rEv/4
+BiY0U5B2178TKboCWoR4
+=QSU8
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-5.5.4-RC1-rev31012120ebbd93744753eb37f1dbc5e654628291/solr/maven/org/apache/solr/solr-uima/5.5.4/solr-uima-5.5.4.pom.md5
==============================================================================
--- dev/lucene/lucene-solr-5.5.4-RC1-rev31012120ebbd93744753eb37f1dbc5e654628291/solr/maven/org/apache/solr/solr-uima/5.5.4/solr-uima-5.5.4.pom.md5 (added)
+++ dev/lucene/lucene-solr-5.5.4-RC1-rev31012120ebbd93744753eb37f1dbc5e654628291/solr/maven/org/apache/solr/solr-uima/5.5.4/solr-uima-5.5.4.pom.md5 Wed Feb  8 22:49:31 2017
@@ -0,0 +1 @@
+fe53227d8d7e6269230238a496372d16
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.5.4-RC1-rev31012120ebbd93744753eb37f1dbc5e654628291/solr/maven/org/apache/solr/solr-uima/5.5.4/solr-uima-5.5.4.pom.sha1
==============================================================================
--- dev/lucene/lucene-solr-5.5.4-RC1-rev31012120ebbd93744753eb37f1dbc5e654628291/solr/maven/org/apache/solr/solr-uima/5.5.4/solr-uima-5.5.4.pom.sha1 (added)
+++ dev/lucene/lucene-solr-5.5.4-RC1-rev31012120ebbd93744753eb37f1dbc5e654628291/solr/maven/org/apache/solr/solr-uima/5.5.4/solr-uima-5.5.4.pom.sha1 Wed Feb  8 22:49:31 2017
@@ -0,0 +1 @@
+a19d4081c271120d08fbecefa829f0279a446da7
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.5.4-RC1-rev31012120ebbd93744753eb37f1dbc5e654628291/solr/maven/org/apache/solr/solr-uima/maven-metadata.xml
==============================================================================
--- dev/lucene/lucene-solr-5.5.4-RC1-rev31012120ebbd93744753eb37f1dbc5e654628291/solr/maven/org/apache/solr/solr-uima/maven-metadata.xml (added)
+++ dev/lucene/lucene-solr-5.5.4-RC1-rev31012120ebbd93744753eb37f1dbc5e654628291/solr/maven/org/apache/solr/solr-uima/maven-metadata.xml Wed Feb  8 22:49:31 2017
@@ -0,0 +1,12 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<metadata>
+  <groupId>org.apache.solr</groupId>
+  <artifactId>solr-uima</artifactId>
+  <version>5.5.4</version>
+  <versioning>
+    <versions>
+      <version>5.5.4</version>
+    </versions>
+    <lastUpdated>20170208181546</lastUpdated>
+  </versioning>
+</metadata>

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

Added: dev/lucene/lucene-solr-5.5.4-RC1-rev31012120ebbd93744753eb37f1dbc5e654628291/solr/maven/org/apache/solr/solr-uima/maven-metadata.xml.md5
==============================================================================
--- dev/lucene/lucene-solr-5.5.4-RC1-rev31012120ebbd93744753eb37f1dbc5e654628291/solr/maven/org/apache/solr/solr-uima/maven-metadata.xml.md5 (added)
+++ dev/lucene/lucene-solr-5.5.4-RC1-rev31012120ebbd93744753eb37f1dbc5e654628291/solr/maven/org/apache/solr/solr-uima/maven-metadata.xml.md5 Wed Feb  8 22:49:31 2017
@@ -0,0 +1 @@
+1ea05987850b01280c8cbec27bb7cbe4
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.5.4-RC1-rev31012120ebbd93744753eb37f1dbc5e654628291/solr/maven/org/apache/solr/solr-uima/maven-metadata.xml.sha1
==============================================================================
--- dev/lucene/lucene-solr-5.5.4-RC1-rev31012120ebbd93744753eb37f1dbc5e654628291/solr/maven/org/apache/solr/solr-uima/maven-metadata.xml.sha1 (added)
+++ dev/lucene/lucene-solr-5.5.4-RC1-rev31012120ebbd93744753eb37f1dbc5e654628291/solr/maven/org/apache/solr/solr-uima/maven-metadata.xml.sha1 Wed Feb  8 22:49:31 2017
@@ -0,0 +1 @@
+78991ced20cfc573022700a8b1eba6de1a44fe64
\ No newline at end of file

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

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

Added: dev/lucene/lucene-solr-5.5.4-RC1-rev31012120ebbd93744753eb37f1dbc5e654628291/solr/maven/org/apache/solr/solr-velocity/5.5.4/solr-velocity-5.5.4-javadoc.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-5.5.4-RC1-rev31012120ebbd93744753eb37f1dbc5e654628291/solr/maven/org/apache/solr/solr-velocity/5.5.4/solr-velocity-5.5.4-javadoc.jar.asc (added)
+++ dev/lucene/lucene-solr-5.5.4-RC1-rev31012120ebbd93744753eb37f1dbc5e654628291/solr/maven/org/apache/solr/solr-velocity/5.5.4/solr-velocity-5.5.4-javadoc.jar.asc Wed Feb  8 22:49:31 2017
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v1
+
+iQIcBAABAgAGBQJYm2BxAAoJEAUaD692vGUH5O8P/RJpKWf4A+dwvkmji09QSvMG
+QMJlV4VVOPx79D2lCoo6k2FvZg+/tQ0j8hqH5IkNAzgsakMi+VaJ/tflyXolBo/t
+bkNE5WGWXEjDpn3uVbIb7TNRLR30jAXKz090pMBN46Yy2gSENDbaZ9DIImPo81U4
+O/iNahgLW9Tmy1jraMU41eruttDnUHE5MNA2Mqr7s1oLbJ2d/zpUBwUh+KMp/BDJ
+QgCU57XDv50rClJ3rGDH9dhVJk9zGEs5cIdoJ01mxSA0Xx7k3OlUc8ta/8YTtEUx
+950dw/DdSqcX4CzfhIUeXzKTiVeJwJ5BHV4eM/VSBZm/8txmK0qEPkF90Njsw4CL
+9PI1RbOeGjF55e5Q6Jj3B2Lk9/PvaqI5/NNlb1cgQpO5vpq3GmDhXfJjLsfBAKav
+0RmPAvnUtA+UNGx6szyzfkFZaE/3HU8zdFHsEWZwOKOOKhwiWyvw9Ec0tVtWUyhy
+DW8ce9/mRP3Rg6s/R3jSTZZ24fOix+BQavszrniGSobHmmPMwERWutq3IB3wpUrA
+XH46et12TH257yDAHwIANpT2jbJuO/+lhNiDnXeSAWtL1wbKIFodnmtryJOpuOTL
+E48efoBxYixAmbjoOwHoPzoH+KEqd6nm/vDv2v+gZPDDbi3L/yHR7dYpUyV0G0Dd
+ZPz5pc+oUFfKvtnol0fO
+=lWBX
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-5.5.4-RC1-rev31012120ebbd93744753eb37f1dbc5e654628291/solr/maven/org/apache/solr/solr-velocity/5.5.4/solr-velocity-5.5.4-javadoc.jar.md5
==============================================================================
--- dev/lucene/lucene-solr-5.5.4-RC1-rev31012120ebbd93744753eb37f1dbc5e654628291/solr/maven/org/apache/solr/solr-velocity/5.5.4/solr-velocity-5.5.4-javadoc.jar.md5 (added)
+++ dev/lucene/lucene-solr-5.5.4-RC1-rev31012120ebbd93744753eb37f1dbc5e654628291/solr/maven/org/apache/solr/solr-velocity/5.5.4/solr-velocity-5.5.4-javadoc.jar.md5 Wed Feb  8 22:49:31 2017
@@ -0,0 +1 @@
+9e7815462ae7f3e8f1b45adfac2cc003
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.5.4-RC1-rev31012120ebbd93744753eb37f1dbc5e654628291/solr/maven/org/apache/solr/solr-velocity/5.5.4/solr-velocity-5.5.4-javadoc.jar.sha1
==============================================================================
--- dev/lucene/lucene-solr-5.5.4-RC1-rev31012120ebbd93744753eb37f1dbc5e654628291/solr/maven/org/apache/solr/solr-velocity/5.5.4/solr-velocity-5.5.4-javadoc.jar.sha1 (added)
+++ dev/lucene/lucene-solr-5.5.4-RC1-rev31012120ebbd93744753eb37f1dbc5e654628291/solr/maven/org/apache/solr/solr-velocity/5.5.4/solr-velocity-5.5.4-javadoc.jar.sha1 Wed Feb  8 22:49:31 2017
@@ -0,0 +1 @@
+b7658615494ac270746dabb32da72360808de8ad
\ No newline at end of file

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

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

Added: dev/lucene/lucene-solr-5.5.4-RC1-rev31012120ebbd93744753eb37f1dbc5e654628291/solr/maven/org/apache/solr/solr-velocity/5.5.4/solr-velocity-5.5.4-sources.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-5.5.4-RC1-rev31012120ebbd93744753eb37f1dbc5e654628291/solr/maven/org/apache/solr/solr-velocity/5.5.4/solr-velocity-5.5.4-sources.jar.asc (added)
+++ dev/lucene/lucene-solr-5.5.4-RC1-rev31012120ebbd93744753eb37f1dbc5e654628291/solr/maven/org/apache/solr/solr-velocity/5.5.4/solr-velocity-5.5.4-sources.jar.asc Wed Feb  8 22:49:31 2017
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v1
+
+iQIcBAABAgAGBQJYm2ByAAoJEAUaD692vGUHb1YQAMePgtmrjFwSqcg+t/5gCCDM
+s7iENlpzKK7huZx40YkHv72EV3x2XQm9k65iTji/8DKD2ZnMas1WitNvJTVlBHsI
+HlS8lpPV2edTWyJOTPns+z0fZ1HOyqtalEO9DTpjf2v3ZUm2o2jjdNsWY9T06q4y
+O8K/1LB8rwzjgAoZOSWaxT9JdboH5S+xR6ldgGvoBfl2G6NBFqtYezOx5oSSPpxd
+g5l5uZBmamiCaJKXInlRMdCZxtkQMX6FxIgbfscrxqAIamcHhEcY4/vKWTCmJn5i
+Htxob+yGu6//dmwz9n2mg6zeQgrH8aRNAC5XUTPv+YuN3tKOkUEmQcpRRr+zU/ip
+pxlN04DMjJNb3pYJ9mQGKWbd+b4GDv4T5DJslvbEBmygWNO9PhPRJ34o3rBzL2pi
+N9VGZ2K07PSmhVF+R5JRQH+Ek+Gkywnt+wORfi7bVDAwcP8zAfiog+2MidfLL41h
+S3np7nyY15ivgYWYzLYaYQsp6Le7J9Szue/P4cZnjkt4TxeRebkmkQcurHJW8q/2
+KYzWgCVSRr3gZUIPduj2EiMBS02dxzW9JWIPaSzPIb56dcxcu/zb9EZ/91IFjxdr
+MN9CrhLNgbqeboMRXcYO5OQ2YOXfeIMberBsgj0PklwJAhrAAen87GP1zlF1UifL
+euXv2irP7wxp252vyuhJ
+=0oqc
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-5.5.4-RC1-rev31012120ebbd93744753eb37f1dbc5e654628291/solr/maven/org/apache/solr/solr-velocity/5.5.4/solr-velocity-5.5.4-sources.jar.md5
==============================================================================
--- dev/lucene/lucene-solr-5.5.4-RC1-rev31012120ebbd93744753eb37f1dbc5e654628291/solr/maven/org/apache/solr/solr-velocity/5.5.4/solr-velocity-5.5.4-sources.jar.md5 (added)
+++ dev/lucene/lucene-solr-5.5.4-RC1-rev31012120ebbd93744753eb37f1dbc5e654628291/solr/maven/org/apache/solr/solr-velocity/5.5.4/solr-velocity-5.5.4-sources.jar.md5 Wed Feb  8 22:49:31 2017
@@ -0,0 +1 @@
+0d3043b2928979bbb207e2516dd9b54e
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.5.4-RC1-rev31012120ebbd93744753eb37f1dbc5e654628291/solr/maven/org/apache/solr/solr-velocity/5.5.4/solr-velocity-5.5.4-sources.jar.sha1
==============================================================================
--- dev/lucene/lucene-solr-5.5.4-RC1-rev31012120ebbd93744753eb37f1dbc5e654628291/solr/maven/org/apache/solr/solr-velocity/5.5.4/solr-velocity-5.5.4-sources.jar.sha1 (added)
+++ dev/lucene/lucene-solr-5.5.4-RC1-rev31012120ebbd93744753eb37f1dbc5e654628291/solr/maven/org/apache/solr/solr-velocity/5.5.4/solr-velocity-5.5.4-sources.jar.sha1 Wed Feb  8 22:49:31 2017
@@ -0,0 +1 @@
+237394704150df94dc642fcc99745da70b4c0b08
\ No newline at end of file

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

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

Added: dev/lucene/lucene-solr-5.5.4-RC1-rev31012120ebbd93744753eb37f1dbc5e654628291/solr/maven/org/apache/solr/solr-velocity/5.5.4/solr-velocity-5.5.4.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-5.5.4-RC1-rev31012120ebbd93744753eb37f1dbc5e654628291/solr/maven/org/apache/solr/solr-velocity/5.5.4/solr-velocity-5.5.4.jar.asc (added)
+++ dev/lucene/lucene-solr-5.5.4-RC1-rev31012120ebbd93744753eb37f1dbc5e654628291/solr/maven/org/apache/solr/solr-velocity/5.5.4/solr-velocity-5.5.4.jar.asc Wed Feb  8 22:49:31 2017
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v1
+
+iQIcBAABAgAGBQJYm2ByAAoJEAUaD692vGUHf4wQAOPgFYRA/yemISaMwJqik9QR
+SPfRElQNyvguDjbT+Pmt7ta/dX09kljtZWTZ7BDmCLTjq7fG93ldd2ERgLcyJgsw
+vqw3GICqpDuSIYBbIiCsz9BGyynDEqHtBJSHsMWFq4v+UP7BS8VLNYgFFDuccPbw
+sZy456evDjB5527aM52L6d5rm2fdbo9y9kMvyN2mCBhYHDYBEsEHHwXNib+5c/ml
+3XRuhl5oQ79zgXX8cfANdN8I8gyZzH1mOweImd8X817Z576oFT6X8gIQWdH/rOmv
+veECrF1u3Ven2OfZM7o1AmQOiMgdUTnPl7aUfgg6aASXr0blY90V8rTWiQ08Hf2v
+y/yqEfjfiLXpn1DziNptksML1DD5gt3bODPxCUlP+0N/pIgj4tRhNgRAo2cOHVXg
+mDRTFURWyp7Zwu2G36zho8Xx0XBze10edJRTkTXqwzOx/EUUhVHuJw0/wR2+9A1z
+jcEUSrfx9mUVsZiTXZU+h6xCg+BR+X/gW1ie0uHv9AFuH1oa5GIggEJP1j0glL7U
+FfUIljC/ibIgZ5yePA9BpiAbTdhw4Zgp6nSsa8yXdctamLaMzBW3UbY/B/LjVhDY
+NwChONEo/gGj7H/bN+bLUN3pJKA2cwnKQr3iG3hAr3bmqLuLdmEvoHD7BSTe8Hqb
+QxK0Snb2bPbJdcSLbZgA
+=WMy5
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-5.5.4-RC1-rev31012120ebbd93744753eb37f1dbc5e654628291/solr/maven/org/apache/solr/solr-velocity/5.5.4/solr-velocity-5.5.4.jar.md5
==============================================================================
--- dev/lucene/lucene-solr-5.5.4-RC1-rev31012120ebbd93744753eb37f1dbc5e654628291/solr/maven/org/apache/solr/solr-velocity/5.5.4/solr-velocity-5.5.4.jar.md5 (added)
+++ dev/lucene/lucene-solr-5.5.4-RC1-rev31012120ebbd93744753eb37f1dbc5e654628291/solr/maven/org/apache/solr/solr-velocity/5.5.4/solr-velocity-5.5.4.jar.md5 Wed Feb  8 22:49:31 2017
@@ -0,0 +1 @@
+38e372de0a78a0a7663683dce87b74fb
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.5.4-RC1-rev31012120ebbd93744753eb37f1dbc5e654628291/solr/maven/org/apache/solr/solr-velocity/5.5.4/solr-velocity-5.5.4.jar.sha1
==============================================================================
--- dev/lucene/lucene-solr-5.5.4-RC1-rev31012120ebbd93744753eb37f1dbc5e654628291/solr/maven/org/apache/solr/solr-velocity/5.5.4/solr-velocity-5.5.4.jar.sha1 (added)
+++ dev/lucene/lucene-solr-5.5.4-RC1-rev31012120ebbd93744753eb37f1dbc5e654628291/solr/maven/org/apache/solr/solr-velocity/5.5.4/solr-velocity-5.5.4.jar.sha1 Wed Feb  8 22:49:31 2017
@@ -0,0 +1 @@
+b9b9fecbc797590355e19814e2f2c23cc640e666
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.5.4-RC1-rev31012120ebbd93744753eb37f1dbc5e654628291/solr/maven/org/apache/solr/solr-velocity/5.5.4/solr-velocity-5.5.4.pom
==============================================================================
--- dev/lucene/lucene-solr-5.5.4-RC1-rev31012120ebbd93744753eb37f1dbc5e654628291/solr/maven/org/apache/solr/solr-velocity/5.5.4/solr-velocity-5.5.4.pom (added)
+++ dev/lucene/lucene-solr-5.5.4-RC1-rev31012120ebbd93744753eb37f1dbc5e654628291/solr/maven/org/apache/solr/solr-velocity/5.5.4/solr-velocity-5.5.4.pom Wed Feb  8 22:49:31 2017
@@ -0,0 +1,393 @@
+<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>5.5.4</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-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</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.lucene</groupId>
+      <artifactId>lucene-suggest</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.solr</groupId>
+      <artifactId>solr-core</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.solr</groupId>
+      <artifactId>solr-solrj</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.carrotsearch</groupId>
+      <artifactId>hppc</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.fasterxml.jackson.core</groupId>
+      <artifactId>jackson-core</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.fasterxml.jackson.dataformat</groupId>
+      <artifactId>jackson-dataformat-smile</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.google.guava</groupId>
+      <artifactId>guava</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.google.protobuf</groupId>
+      <artifactId>protobuf-java</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.googlecode.concurrentlinkedhashmap</groupId>
+      <artifactId>concurrentlinkedhashmap-lru</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.spatial4j</groupId>
+      <artifactId>spatial4j</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>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.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.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.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.htrace</groupId>
+      <artifactId>htrace-core</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-5.5.4-RC1-rev31012120ebbd93744753eb37f1dbc5e654628291/solr/maven/org/apache/solr/solr-velocity/5.5.4/solr-velocity-5.5.4.pom
------------------------------------------------------------------------------
    svn:eol-style = native

Added: dev/lucene/lucene-solr-5.5.4-RC1-rev31012120ebbd93744753eb37f1dbc5e654628291/solr/maven/org/apache/solr/solr-velocity/5.5.4/solr-velocity-5.5.4.pom.asc
==============================================================================
--- dev/lucene/lucene-solr-5.5.4-RC1-rev31012120ebbd93744753eb37f1dbc5e654628291/solr/maven/org/apache/solr/solr-velocity/5.5.4/solr-velocity-5.5.4.pom.asc (added)
+++ dev/lucene/lucene-solr-5.5.4-RC1-rev31012120ebbd93744753eb37f1dbc5e654628291/solr/maven/org/apache/solr/solr-velocity/5.5.4/solr-velocity-5.5.4.pom.asc Wed Feb  8 22:49:31 2017
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v1
+
+iQIcBAABAgAGBQJYm2BzAAoJEAUaD692vGUHfWkQAIy4D362tLGm+xTv9KBtriUj
+o4/De4tVRXAVgA/U8sKczwZq/1BQ3n/GeCcKHlGd3rir7lBnsNEoiZWEKYs//D/E
+1L4VgeD1wOoxqF21ohBeVAEoMEwrES+efjkLaLYPU4ny+v1BI0fbKyh7IG4D2KTw
+O++NS+az6fy1HDIIWVJmVNtGWDY8MTjiZ+HEhyWrwxN4K45orqzLtyCl/T6EJAPk
+/4vJP2piYx89oFG2urDAqQVQGNxbcAe9aFIQJrNPT1LOJURX77LtXwyaurI5hNOA
+R8v8mEM6K7qig5yA6SREEdrgovlTp94HEDGjILzFuU5Lg6dGNb3Ncf1aGIinlvZB
+nCfQc82PVkFwAVx8jomNE8cE8CULy/GKsNToFF+vjpH1NNRNmSC8n47+wEj4Q0U8
+q0lKAHMYjJEJ7mLedJMymcquPKWJsoFeUZsY5ywky+WBt3YXUXB9d3rZI8B/KYtL
+QOEvZyzu9887FEpxFuVwKw7bvZDbzV7xV3KJAonMD1injLqqPsaTkodcxrI7/6ye
+QQS4TChht63VkVPf0vOyWwOFLyhmKokCF5g47LvIIhVR6D2i8oQ/aw+G7CdUAn6h
+JdYHXETNK/NoilgselxyKUJakuWhM1IUb/QJ3QXPOvq7ENALATzmih3V2uZzW7Yu
+KX4hSwx0sR3G1QWyBRGT
+=HNYn
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-5.5.4-RC1-rev31012120ebbd93744753eb37f1dbc5e654628291/solr/maven/org/apache/solr/solr-velocity/5.5.4/solr-velocity-5.5.4.pom.md5
==============================================================================
--- dev/lucene/lucene-solr-5.5.4-RC1-rev31012120ebbd93744753eb37f1dbc5e654628291/solr/maven/org/apache/solr/solr-velocity/5.5.4/solr-velocity-5.5.4.pom.md5 (added)
+++ dev/lucene/lucene-solr-5.5.4-RC1-rev31012120ebbd93744753eb37f1dbc5e654628291/solr/maven/org/apache/solr/solr-velocity/5.5.4/solr-velocity-5.5.4.pom.md5 Wed Feb  8 22:49:31 2017
@@ -0,0 +1 @@
+1391f2088c996c3fc956badc889fb4d1
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.5.4-RC1-rev31012120ebbd93744753eb37f1dbc5e654628291/solr/maven/org/apache/solr/solr-velocity/5.5.4/solr-velocity-5.5.4.pom.sha1
==============================================================================
--- dev/lucene/lucene-solr-5.5.4-RC1-rev31012120ebbd93744753eb37f1dbc5e654628291/solr/maven/org/apache/solr/solr-velocity/5.5.4/solr-velocity-5.5.4.pom.sha1 (added)
+++ dev/lucene/lucene-solr-5.5.4-RC1-rev31012120ebbd93744753eb37f1dbc5e654628291/solr/maven/org/apache/solr/solr-velocity/5.5.4/solr-velocity-5.5.4.pom.sha1 Wed Feb  8 22:49:31 2017
@@ -0,0 +1 @@
+e32bbecfbc8e7501bf66e08a5d2e1ac06ff1c9e9
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.5.4-RC1-rev31012120ebbd93744753eb37f1dbc5e654628291/solr/maven/org/apache/solr/solr-velocity/maven-metadata.xml
==============================================================================
--- dev/lucene/lucene-solr-5.5.4-RC1-rev31012120ebbd93744753eb37f1dbc5e654628291/solr/maven/org/apache/solr/solr-velocity/maven-metadata.xml (added)
+++ dev/lucene/lucene-solr-5.5.4-RC1-rev31012120ebbd93744753eb37f1dbc5e654628291/solr/maven/org/apache/solr/solr-velocity/maven-metadata.xml Wed Feb  8 22:49:31 2017
@@ -0,0 +1,12 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<metadata>
+  <groupId>org.apache.solr</groupId>
+  <artifactId>solr-velocity</artifactId>
+  <version>5.5.4</version>
+  <versioning>
+    <versions>
+      <version>5.5.4</version>
+    </versions>
+    <lastUpdated>20170208181548</lastUpdated>
+  </versioning>
+</metadata>

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

Added: dev/lucene/lucene-solr-5.5.4-RC1-rev31012120ebbd93744753eb37f1dbc5e654628291/solr/maven/org/apache/solr/solr-velocity/maven-metadata.xml.md5
==============================================================================
--- dev/lucene/lucene-solr-5.5.4-RC1-rev31012120ebbd93744753eb37f1dbc5e654628291/solr/maven/org/apache/solr/solr-velocity/maven-metadata.xml.md5 (added)
+++ dev/lucene/lucene-solr-5.5.4-RC1-rev31012120ebbd93744753eb37f1dbc5e654628291/solr/maven/org/apache/solr/solr-velocity/maven-metadata.xml.md5 Wed Feb  8 22:49:31 2017
@@ -0,0 +1 @@
+729ca8a55c37e3a5a48b230ce3476aed
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.5.4-RC1-rev31012120ebbd93744753eb37f1dbc5e654628291/solr/maven/org/apache/solr/solr-velocity/maven-metadata.xml.sha1
==============================================================================
--- dev/lucene/lucene-solr-5.5.4-RC1-rev31012120ebbd93744753eb37f1dbc5e654628291/solr/maven/org/apache/solr/solr-velocity/maven-metadata.xml.sha1 (added)
+++ dev/lucene/lucene-solr-5.5.4-RC1-rev31012120ebbd93744753eb37f1dbc5e654628291/solr/maven/org/apache/solr/solr-velocity/maven-metadata.xml.sha1 Wed Feb  8 22:49:31 2017
@@ -0,0 +1 @@
+aefc4ac3f6437081a1d225261646095514b5865b
\ No newline at end of file

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

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

Added: dev/lucene/lucene-solr-5.5.4-RC1-rev31012120ebbd93744753eb37f1dbc5e654628291/solr/solr-5.5.4-src.tgz.asc
==============================================================================
--- dev/lucene/lucene-solr-5.5.4-RC1-rev31012120ebbd93744753eb37f1dbc5e654628291/solr/solr-5.5.4-src.tgz.asc (added)
+++ dev/lucene/lucene-solr-5.5.4-RC1-rev31012120ebbd93744753eb37f1dbc5e654628291/solr/solr-5.5.4-src.tgz.asc Wed Feb  8 22:49:31 2017
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v1
+
+iQIcBAABAgAGBQJYm2BzAAoJEAUaD692vGUHYegP/j7NqsNy6mXD4jFIzBLddqWg
+dc5dFRc6ef6btGGr4ylx3e3E4PXx5uIkwisVuCzXVHR+JPXLwtjATvMU8Ka+d5B/
+KvxiicwQQhOEHdDNzCpvQ139yYI//6dk9H/ahbltHJDY4lb9c8hSKLIEIytEUcZa
+rOcttOZKeDKctN7DEHLxzr8wnQtsMvMPFwek3TFPy8IK1ABP7/NFb//WL3bbfi96
+AjCppG47JaLKP67ypM12xKb1BTGpXetjn86RLD1KUdDIoYiRT6pjeyMtAe+uzzP6
+4myworMqNVCa0xSB5IWK0wJnEQilkqpemXBzZ5i8ipWkSvzPbHhDmbDM9EomTqI6
+vi9MCgsLtyZN3krVgxfPxreYvq5th/IjgUpW4ZhT3jmy+kIL8/BN1BDVb0oB2Dqg
+CAD1JmjMMaZInq+PXm1UW9vJYOdIiIgFe4p1GR+Sp7zR26t9z6K7DhPRWfZrMJ11
+iLvFV8HLy48GmVmk866xEmmrkQW0g943aWc0cbhyMov0e1ZAXZKLcAtvPBLmXOWi
+QuQ1YpyME+wPXmN6gGhM3iqeTtmPJP0szKshxIawALGDbKD9Srd/pa33jdzz1kh9
+THFBhvTDprAf18QUSm2X0+kMLpMEbAp2XR3u+dv2o3NApNFdZlsCVuxC7IXf4cUL
+0fdXmezaAhWYiU3o92We
+=mOYt
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-5.5.4-RC1-rev31012120ebbd93744753eb37f1dbc5e654628291/solr/solr-5.5.4-src.tgz.md5
==============================================================================
--- dev/lucene/lucene-solr-5.5.4-RC1-rev31012120ebbd93744753eb37f1dbc5e654628291/solr/solr-5.5.4-src.tgz.md5 (added)
+++ dev/lucene/lucene-solr-5.5.4-RC1-rev31012120ebbd93744753eb37f1dbc5e654628291/solr/solr-5.5.4-src.tgz.md5 Wed Feb  8 22:49:31 2017
@@ -0,0 +1 @@
+26b827891b8f64e7552e55b40d2d41b5 *solr-5.5.4-src.tgz

Added: dev/lucene/lucene-solr-5.5.4-RC1-rev31012120ebbd93744753eb37f1dbc5e654628291/solr/solr-5.5.4-src.tgz.sha1
==============================================================================
--- dev/lucene/lucene-solr-5.5.4-RC1-rev31012120ebbd93744753eb37f1dbc5e654628291/solr/solr-5.5.4-src.tgz.sha1 (added)
+++ dev/lucene/lucene-solr-5.5.4-RC1-rev31012120ebbd93744753eb37f1dbc5e654628291/solr/solr-5.5.4-src.tgz.sha1 Wed Feb  8 22:49:31 2017
@@ -0,0 +1 @@
+149728e0387d38b0c83f81ec24c142435af2e19e *solr-5.5.4-src.tgz

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

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

Added: dev/lucene/lucene-solr-5.5.4-RC1-rev31012120ebbd93744753eb37f1dbc5e654628291/solr/solr-5.5.4.tgz.asc
==============================================================================
--- dev/lucene/lucene-solr-5.5.4-RC1-rev31012120ebbd93744753eb37f1dbc5e654628291/solr/solr-5.5.4.tgz.asc (added)
+++ dev/lucene/lucene-solr-5.5.4-RC1-rev31012120ebbd93744753eb37f1dbc5e654628291/solr/solr-5.5.4.tgz.asc Wed Feb  8 22:49:31 2017
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v1
+
+iQIcBAABAgAGBQJYm2B0AAoJEAUaD692vGUHMGcP+wXHrOroAa+KS+NBaDP/pT1f
+7i3ylJ1K/OLlH4Xk7UnxZ8An+ohGpgl0RF7k0kS5a1Pvd27nRqSO0s5qg4nG9Gv6
+2KEFITis1Cb5jxKoyR7vJ1vf0wu+ey4Q71syBFoYfRYxmzw4KdSQIVJxRzLSkko5
+iFr33gRGV5j6pc7QucYphD/PR/c0jLJ2oVOVnELpSyeUZwSduyR7I7LB04V1d4pZ
+PlOWY+OCX6/JQIsqx9tCWxGrA7x5DN6gxOrRTjYE5uqGWw2qwIsbTg7lFBkNHio+
+iZHjjUfwN2MjvzOE5Jza/qZp79dK9//KCEXz01Mb4kBvQNLHnzms6a1LOobmJzvR
+5PMHNuz8IwbqHrff1VmjTSsdS/3nggrNf6RRHrpwcmkOr2OAvipcEoab9WWz5nJs
+KYG0nrwOJAvtIRCHaxRCrmTeppCzh1AsMWrD8XvHpw5KDJwPp1ELBQ/1QkdoH9RV
+cdeWiHwoIqmqFeyxFJP0dMi+Z5XpA48oxtHWjNl6AjFdNxRK53C4IojHbr3PZToE
+PjPvHPPp7zH078AT6Y93g1AE5PdbXwV0znpH82TVns5avFN7MFOPiBrVpRMPVKtV
+8aQKctkzcYzhtzkSPj+cKWIoPSPvtickSDwyhReZ6WS3Df/j0ukNk1hichyo5ba+
+Sd8W1rg0qDcLEwPNcejC
+=vW7A
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-5.5.4-RC1-rev31012120ebbd93744753eb37f1dbc5e654628291/solr/solr-5.5.4.tgz.md5
==============================================================================
--- dev/lucene/lucene-solr-5.5.4-RC1-rev31012120ebbd93744753eb37f1dbc5e654628291/solr/solr-5.5.4.tgz.md5 (added)
+++ dev/lucene/lucene-solr-5.5.4-RC1-rev31012120ebbd93744753eb37f1dbc5e654628291/solr/solr-5.5.4.tgz.md5 Wed Feb  8 22:49:31 2017
@@ -0,0 +1 @@
+a5d1e0d998c415f9445579c4fd3cf6a0 *solr-5.5.4.tgz

Added: dev/lucene/lucene-solr-5.5.4-RC1-rev31012120ebbd93744753eb37f1dbc5e654628291/solr/solr-5.5.4.tgz.sha1
==============================================================================
--- dev/lucene/lucene-solr-5.5.4-RC1-rev31012120ebbd93744753eb37f1dbc5e654628291/solr/solr-5.5.4.tgz.sha1 (added)
+++ dev/lucene/lucene-solr-5.5.4-RC1-rev31012120ebbd93744753eb37f1dbc5e654628291/solr/solr-5.5.4.tgz.sha1 Wed Feb  8 22:49:31 2017
@@ -0,0 +1 @@
+3559a3b4f3492b32b468a49215ced4fd9d8ca526 *solr-5.5.4.tgz

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

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

Added: dev/lucene/lucene-solr-5.5.4-RC1-rev31012120ebbd93744753eb37f1dbc5e654628291/solr/solr-5.5.4.zip.asc
==============================================================================
--- dev/lucene/lucene-solr-5.5.4-RC1-rev31012120ebbd93744753eb37f1dbc5e654628291/solr/solr-5.5.4.zip.asc (added)
+++ dev/lucene/lucene-solr-5.5.4-RC1-rev31012120ebbd93744753eb37f1dbc5e654628291/solr/solr-5.5.4.zip.asc Wed Feb  8 22:49:31 2017
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v1
+
+iQIcBAABAgAGBQJYm2B1AAoJEAUaD692vGUHcmAP/1Ek2RTkMPLrC+07GuINfQyz
+lWHlRMaKMXbsgcMeVADtX1G0SOKS52pDRxUX4WEUoL+y2qBj0OBdh6eBXnGeuJM+
+8mY4v80mrgTud0xwDSEx5j7ai4RUXRlASqxnkNM0r4VQF7lPc/zwFBa7nzBDPZMd
+0jvyt/ZcSyZXZTEV+sVAKwu91BWsjHsuSyOFjZiDUDsu7T+VGChjJ1vJ1qzDM3Bq
+eOfqs/ZJ7AozCFtnnWrcep+M/TL7XfFp01sHhcQ9nfq1aYNMmZDwceRZHViS40It
+r0TxrFMC/Ni2pM+wy5WSzl7FRIZd3zfw7vq6qHjItjRcyyYZXaGON2ykhFiCC+Pp
+vSvEwaY31CYGG3WSUxk22foUV+VqkL5J/dW9zgBx4cgFHkjfIGs9OVMv5pUhkYPQ
+GGSGOMSM4VnNnVmwypA/oWNqByic2vgg6QOqx4v1KVL212Qd+IsrtulM1T7LKDoE
+JMQq/6NIWgonXzagG3UIRTu2mvx8uWu5Vd7EMC7G/VdSUqxo1K2eXS3trfJzmRih
+Vkr60/e0pkwD/x/H5SgjxrXuMgc9CZo7hNL5FJaaY8NVT3celndd1ZVrw8v9lF8r
+B3NH4zFn2nFePDwA28EZ+luN/33pKKJ8Gz8vPy8pbrupANi3pTpaR2sXfgLdf6Er
+x3Y7IVqmMAaMCFm/JIkV
+=dNln
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-5.5.4-RC1-rev31012120ebbd93744753eb37f1dbc5e654628291/solr/solr-5.5.4.zip.md5
==============================================================================
--- dev/lucene/lucene-solr-5.5.4-RC1-rev31012120ebbd93744753eb37f1dbc5e654628291/solr/solr-5.5.4.zip.md5 (added)
+++ dev/lucene/lucene-solr-5.5.4-RC1-rev31012120ebbd93744753eb37f1dbc5e654628291/solr/solr-5.5.4.zip.md5 Wed Feb  8 22:49:31 2017
@@ -0,0 +1 @@
+3e4c95658fc1a95001e4aaaf2e8fc6fa *solr-5.5.4.zip

Added: dev/lucene/lucene-solr-5.5.4-RC1-rev31012120ebbd93744753eb37f1dbc5e654628291/solr/solr-5.5.4.zip.sha1
==============================================================================
--- dev/lucene/lucene-solr-5.5.4-RC1-rev31012120ebbd93744753eb37f1dbc5e654628291/solr/solr-5.5.4.zip.sha1 (added)
+++ dev/lucene/lucene-solr-5.5.4-RC1-rev31012120ebbd93744753eb37f1dbc5e654628291/solr/solr-5.5.4.zip.sha1 Wed Feb  8 22:49:31 2017
@@ -0,0 +1 @@
+e08864fda04032c9fe1d15a6d392b7d32a6b194c *solr-5.5.4.zip