You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by an...@apache.org on 2015/05/31 22:35:15 UTC

svn commit: r9184 [20/21] - in /dev/lucene/lucene-solr-5.2.0-RC3-rev1682753: ./ lucene/ lucene/changes/ lucene/maven/ lucene/maven/org/ lucene/maven/org/apache/ lucene/maven/org/apache/lucene/ lucene/maven/org/apache/lucene/lucene-analyzers-common/ luc...

Added: dev/lucene/lucene-solr-5.2.0-RC3-rev1682753/solr/maven/org/apache/solr/solr-parent/5.2.0/solr-parent-5.2.0.pom
==============================================================================
--- dev/lucene/lucene-solr-5.2.0-RC3-rev1682753/solr/maven/org/apache/solr/solr-parent/5.2.0/solr-parent-5.2.0.pom (added)
+++ dev/lucene/lucene-solr-5.2.0-RC3-rev1682753/solr/maven/org/apache/solr/solr-parent/5.2.0/solr-parent-5.2.0.pom Sun May 31 20:35:13 2015
@@ -0,0 +1,186 @@
+<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.lucene</groupId>
+    <artifactId>lucene-solr-grandparent</artifactId>
+    <version>5.2.0</version>
+    <relativePath>../pom.xml</relativePath>
+  </parent>
+  <groupId>org.apache.solr</groupId>
+  <artifactId>solr-parent</artifactId>
+  <packaging>pom</packaging>
+  <name>Apache Solr parent POM</name>
+  <description>Apache Solr parent POM</description>
+  <modules>
+    <module>core</module>
+    <module>solrj</module>
+    <module>test-framework</module>
+    <module>contrib</module>
+  </modules>
+  <properties>
+    <module-directory>solr</module-directory>
+  </properties>
+  <scm>
+    <connection>scm:svn:${vc-anonymous-base-url}/${module-directory}</connection>
+    <developerConnection>scm:svn:${vc-dev-base-url}/${module-directory}</developerConnection>
+    <url>${vc-browse-base-url}/${module-directory}</url>
+  </scm>
+  <issueManagement>
+    <system>JIRA</system>
+    <url>https://issues.apache.org/jira/browse/SOLR</url>
+  </issueManagement>
+  <mailingLists>
+    <mailingList>
+      <name>Solr User List</name>
+      <subscribe>solr-user-subscribe@lucene.apache.org</subscribe>
+      <unsubscribe>solr-user-unsubscribe@lucene.apache.org</unsubscribe>
+      <archive>
+        http://mail-archives.apache.org/mod_mbox/solr-user/
+      </archive>
+    </mailingList>
+    <mailingList>
+      <name>Java Developer List</name>
+      <subscribe>dev-subscribe@lucene.apache.org</subscribe>
+      <unsubscribe>dev-unsubscribe@lucene.apache.org</unsubscribe>
+      <archive>http://mail-archives.apache.org/mod_mbox/lucene-dev/</archive>
+    </mailingList>
+    <mailingList>
+      <name>Java Commits List</name>
+      <subscribe>commits-subscribe@lucene.apache.org</subscribe>
+      <unsubscribe>commits-unsubscribe@lucene.apache.org</unsubscribe>
+      <archive>
+        http://mail-archives.apache.org/mod_mbox/lucene-java-commits/
+      </archive>
+    </mailingList>
+  </mailingLists>
+  <inceptionYear>2006</inceptionYear>
+  <repositories>
+    <repository>
+      <id>maven-restlet</id>
+      <name>Public online Restlet repository</name>
+      <url>http://maven.restlet.org</url>
+    </repository>
+    <repository>
+      <id>releases.cloudera.com</id>
+      <name>Cloudera Releases</name>
+      <url>https://repository.cloudera.com/artifactory/libs-release</url>
+    </repository>
+  </repositories>
+  <build>
+    <pluginManagement>
+      <plugins>
+        <plugin>
+          <groupId>org.apache.maven.plugins</groupId>
+          <artifactId>maven-javadoc-plugin</artifactId>
+          <configuration>
+            <overview/>
+            <windowtitle>${project.name} ${project.version} API (${now.version})</windowtitle>
+            <doctitle>${project.name} ${project.version} API (${now.version})</doctitle>
+          </configuration>
+        </plugin>
+        <plugin>
+          <groupId>org.apache.maven.plugins</groupId>
+          <artifactId>maven-surefire-plugin</artifactId>
+          <configuration>
+            <systemPropertyVariables>
+              <tests.disableHdfs>${tests.disableHdfs}</tests.disableHdfs>
+            </systemPropertyVariables>
+          </configuration>
+        </plugin>
+      </plugins>
+    </pluginManagement>
+    <plugins>
+      <plugin>
+        <groupId>de.thetaphi</groupId>
+        <artifactId>forbiddenapis</artifactId>
+        <executions>
+          <execution>
+            <id>solr-shared-check-forbidden-apis</id>
+            <configuration>
+              <!-- disallow undocumented classes like sun.misc.Unsafe: -->
+              <internalRuntimeForbidden>true</internalRuntimeForbidden>
+              <!-- for simplicty with servlet-api and commons-io checks, disable this: -->
+              <failOnUnresolvableSignatures>false</failOnUnresolvableSignatures>
+              <bundledSignatures>
+                <bundledSignature>jdk-unsafe</bundledSignature>
+                <bundledSignature>jdk-deprecated</bundledSignature>
+                <bundledSignature>commons-io-unsafe-2.4</bundledSignature>
+              </bundledSignatures>
+              <signaturesFiles>
+                <signaturesFile>${top-level}/lucene/tools/forbiddenApis/base.txt</signaturesFile>
+                <signaturesFile>${top-level}/lucene/tools/forbiddenApis/servlet-api.txt</signaturesFile>
+                <signaturesFile>${top-level}/lucene/tools/forbiddenApis/solr.txt</signaturesFile>
+              </signaturesFiles>
+            </configuration>
+            <goals>
+              <goal>check</goal>
+            </goals>
+          </execution>
+          <execution>
+            <id>solr-shared-test-check-forbidden-apis</id>
+            <configuration>
+              <!-- disallow undocumented classes like sun.misc.Unsafe: -->
+              <internalRuntimeForbidden>true</internalRuntimeForbidden>
+              <!-- for simplicty with servlet-api and commons-io checks, disable this: -->
+              <failOnUnresolvableSignatures>false</failOnUnresolvableSignatures>
+              <bundledSignatures>
+                <bundledSignature>jdk-unsafe</bundledSignature>
+                <bundledSignature>jdk-deprecated</bundledSignature>
+                <bundledSignature>commons-io-unsafe-2.4</bundledSignature>
+              </bundledSignatures>
+              <signaturesFiles>
+                <signaturesFile>${top-level}/lucene/tools/forbiddenApis/base.txt</signaturesFile>
+                <signaturesFile>${top-level}/lucene/tools/forbiddenApis/servlet-api.txt</signaturesFile>
+                <signaturesFile>${top-level}/lucene/tools/forbiddenApis/solr.txt</signaturesFile>
+                <signaturesFile>${top-level}/lucene/tools/forbiddenApis/tests.txt</signaturesFile>
+              </signaturesFiles>
+            </configuration>
+            <goals>
+              <goal>testCheck</goal>
+            </goals>
+          </execution>
+        </executions>
+      </plugin>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-surefire-plugin</artifactId>
+        <configuration>
+          <systemPropertyVariables>
+            <java.util.logging.config.file>${top-level}/solr/testlogging.properties</java.util.logging.config.file>
+          </systemPropertyVariables>
+        </configuration>
+      </plugin>
+    </plugins>
+  </build>
+  <profiles>
+    <profile>
+      <id>windows-tests-disableHdfs</id>
+      <activation>
+        <os><family>windows</family></os>
+      </activation>
+      <properties>
+        <tests.disableHdfs>true</tests.disableHdfs>
+      </properties>
+    </profile>
+  </profiles>
+</project>

Added: dev/lucene/lucene-solr-5.2.0-RC3-rev1682753/solr/maven/org/apache/solr/solr-parent/5.2.0/solr-parent-5.2.0.pom.asc
==============================================================================
--- dev/lucene/lucene-solr-5.2.0-RC3-rev1682753/solr/maven/org/apache/solr/solr-parent/5.2.0/solr-parent-5.2.0.pom.asc (added)
+++ dev/lucene/lucene-solr-5.2.0-RC3-rev1682753/solr/maven/org/apache/solr/solr-parent/5.2.0/solr-parent-5.2.0.pom.asc Sun May 31 20:35:13 2015
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Comment: GPGTools - https://gpgtools.org
+
+iQIcBAABCgAGBQJVa1FRAAoJEHWAUcyjoTp/DD4QALso6zv5U/KGO5e/JTIdWsqA
+WtDuFPVxQki0OHghcKV737KKysjwez+SEczoBHG9hntrVjLzoTyjeYAN/aBsY4JM
+XCYFI6FXLtQlxqwjNFiu/gFOsqHTuD1ewSaFTxk9goIxbVLW9ifLrHgag6+FiHyM
+Ym148QA/zLH8DvMe0SazEx6oJfzj02/0XpoMtYpMsRcyCpwbcZJUM/cPN28M+g0w
+CnMUoXEpVVJ/3UljK1GIzoRFq0/E46ObrGTxLPZoYEHWM64h2XcNBKfNsIE4AFJ7
+spftEie1SRFowm4ogUPUhrFpImAfx93CceejUTFQ8zFjITOvbgThAefaYQs5kLhm
+/aPQUg5ZlE+3npKWtPTxjr6TnQj6r9xUFtFKRqkZBbGyA3WcGPojOX+UH2gCZmxt
+bpE0QMGMaaMrXyBd3LTwbT9ymLPZvKESRvK+KqHcPbWAQoENYkdTXtKRUkFsuh7F
+Mc3WfX7kLHF/z8xbroKjeGBw3Ogw5U+eK6vGGR8r/q+0IYXCrHnungA5t0I+mhcK
+lqlQGDpwYUAueoQkEZ2anjdzljzYJxm7U7KqPNNW4po7gh5j5cm3OyIvwVXG0ERz
+kzFrXdWnKEWjioK/zWJYhrX98D8Sss8txZSWxNr1E6IcITd1cQVMoBJ0TMLQ9eCg
+vwtmtV/EB7asuvBA+e1A
+=A7Jk
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-5.2.0-RC3-rev1682753/solr/maven/org/apache/solr/solr-parent/5.2.0/solr-parent-5.2.0.pom.md5
==============================================================================
--- dev/lucene/lucene-solr-5.2.0-RC3-rev1682753/solr/maven/org/apache/solr/solr-parent/5.2.0/solr-parent-5.2.0.pom.md5 (added)
+++ dev/lucene/lucene-solr-5.2.0-RC3-rev1682753/solr/maven/org/apache/solr/solr-parent/5.2.0/solr-parent-5.2.0.pom.md5 Sun May 31 20:35:13 2015
@@ -0,0 +1 @@
+e176897242af70056a4643e38c4b28f5
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.2.0-RC3-rev1682753/solr/maven/org/apache/solr/solr-parent/5.2.0/solr-parent-5.2.0.pom.sha1
==============================================================================
--- dev/lucene/lucene-solr-5.2.0-RC3-rev1682753/solr/maven/org/apache/solr/solr-parent/5.2.0/solr-parent-5.2.0.pom.sha1 (added)
+++ dev/lucene/lucene-solr-5.2.0-RC3-rev1682753/solr/maven/org/apache/solr/solr-parent/5.2.0/solr-parent-5.2.0.pom.sha1 Sun May 31 20:35:13 2015
@@ -0,0 +1 @@
+dca983b37d503be17520693c26c8469c96f8b55d
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.2.0-RC3-rev1682753/solr/maven/org/apache/solr/solr-parent/maven-metadata.xml
==============================================================================
--- dev/lucene/lucene-solr-5.2.0-RC3-rev1682753/solr/maven/org/apache/solr/solr-parent/maven-metadata.xml (added)
+++ dev/lucene/lucene-solr-5.2.0-RC3-rev1682753/solr/maven/org/apache/solr/solr-parent/maven-metadata.xml Sun May 31 20:35:13 2015
@@ -0,0 +1,12 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<metadata>
+  <groupId>org.apache.solr</groupId>
+  <artifactId>solr-parent</artifactId>
+  <version>5.2.0</version>
+  <versioning>
+    <versions>
+      <version>5.2.0</version>
+    </versions>
+    <lastUpdated>20150531182057</lastUpdated>
+  </versioning>
+</metadata>

Propchange: dev/lucene/lucene-solr-5.2.0-RC3-rev1682753/solr/maven/org/apache/solr/solr-parent/maven-metadata.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Added: dev/lucene/lucene-solr-5.2.0-RC3-rev1682753/solr/maven/org/apache/solr/solr-parent/maven-metadata.xml.md5
==============================================================================
--- dev/lucene/lucene-solr-5.2.0-RC3-rev1682753/solr/maven/org/apache/solr/solr-parent/maven-metadata.xml.md5 (added)
+++ dev/lucene/lucene-solr-5.2.0-RC3-rev1682753/solr/maven/org/apache/solr/solr-parent/maven-metadata.xml.md5 Sun May 31 20:35:13 2015
@@ -0,0 +1 @@
+94e2dac28e9edccc18b014b2a936c108
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.2.0-RC3-rev1682753/solr/maven/org/apache/solr/solr-parent/maven-metadata.xml.sha1
==============================================================================
--- dev/lucene/lucene-solr-5.2.0-RC3-rev1682753/solr/maven/org/apache/solr/solr-parent/maven-metadata.xml.sha1 (added)
+++ dev/lucene/lucene-solr-5.2.0-RC3-rev1682753/solr/maven/org/apache/solr/solr-parent/maven-metadata.xml.sha1 Sun May 31 20:35:13 2015
@@ -0,0 +1 @@
+240dcc0d945e827ea9494bbfdc96dcb8875fe61d
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.2.0-RC3-rev1682753/solr/maven/org/apache/solr/solr-solrj/5.2.0/solr-solrj-5.2.0-javadoc.jar
==============================================================================
Binary file - no diff available.

Propchange: dev/lucene/lucene-solr-5.2.0-RC3-rev1682753/solr/maven/org/apache/solr/solr-solrj/5.2.0/solr-solrj-5.2.0-javadoc.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: dev/lucene/lucene-solr-5.2.0-RC3-rev1682753/solr/maven/org/apache/solr/solr-solrj/5.2.0/solr-solrj-5.2.0-javadoc.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-5.2.0-RC3-rev1682753/solr/maven/org/apache/solr/solr-solrj/5.2.0/solr-solrj-5.2.0-javadoc.jar.asc (added)
+++ dev/lucene/lucene-solr-5.2.0-RC3-rev1682753/solr/maven/org/apache/solr/solr-solrj/5.2.0/solr-solrj-5.2.0-javadoc.jar.asc Sun May 31 20:35:13 2015
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Comment: GPGTools - https://gpgtools.org
+
+iQIcBAABCgAGBQJVa1FRAAoJEHWAUcyjoTp/7X0P/15TdBn4+CG+vh3OXc9nICyU
+u7HUDJHnbgja0HnoYev4WQlq3DIxGchk/f5sv2+MLYBXy2z3hvTsrI1/qADY5hQp
+mEi1wJ6EybBPUJ11ZWW09wnmF1O2cmAVcO/iyV37kWE47QFOpRhHIKysK2jQTomV
+Q2DWHLII889+m0qTcRCnBLXvUHsuV3pXxSUOON/9zPZXYHP/+nj9ggKnioZeL0Yh
+v95VgKzK8Q8JLrSS0DSGzZMXwFFrt2ChVH2aVyoxT3TYt26YKCgQNVK9YWf8VlWy
+nSbiYuLlJU8BYTFRJW0YCSe26o/BOV9UqknJLfpLarGo7DXQkj/VkwS2bypQrrJN
+SIMMOuPrrCOt8Wc/ytEEODXlhQuDgZnCDz37Af+fDMuAxURhz8+vkh/2Pl3NUJUo
+Hz5jooh5IlodnnxL7Zc7RS8CXQxeD58PcvaaOKiay6snygyo7rs10R1UGS5HNrLv
+68DoaUBL0XzbRcDCUzWxWyGpqjyrR6dugMtSAmQLsixS1YJRSBfzI58BmxnbGWJS
+H7ssLDXNak3NOk7iIfXvcgvRI7t4Uv0mwkREGyzf1OIHenyrve1QtH50PTLQ1klf
+/vRpZxIAh8dxJlmRboxCdZBgGjK16M2nBr0RF9V8KgRcOfU8neDtxAVhalAFiv1I
+bRwkhxK6rBqZCQcm4xHJ
+=1KiC
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-5.2.0-RC3-rev1682753/solr/maven/org/apache/solr/solr-solrj/5.2.0/solr-solrj-5.2.0-javadoc.jar.md5
==============================================================================
--- dev/lucene/lucene-solr-5.2.0-RC3-rev1682753/solr/maven/org/apache/solr/solr-solrj/5.2.0/solr-solrj-5.2.0-javadoc.jar.md5 (added)
+++ dev/lucene/lucene-solr-5.2.0-RC3-rev1682753/solr/maven/org/apache/solr/solr-solrj/5.2.0/solr-solrj-5.2.0-javadoc.jar.md5 Sun May 31 20:35:13 2015
@@ -0,0 +1 @@
+03736ec606f334c3f611021e8a6762d5
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.2.0-RC3-rev1682753/solr/maven/org/apache/solr/solr-solrj/5.2.0/solr-solrj-5.2.0-javadoc.jar.sha1
==============================================================================
--- dev/lucene/lucene-solr-5.2.0-RC3-rev1682753/solr/maven/org/apache/solr/solr-solrj/5.2.0/solr-solrj-5.2.0-javadoc.jar.sha1 (added)
+++ dev/lucene/lucene-solr-5.2.0-RC3-rev1682753/solr/maven/org/apache/solr/solr-solrj/5.2.0/solr-solrj-5.2.0-javadoc.jar.sha1 Sun May 31 20:35:13 2015
@@ -0,0 +1 @@
+71abc94290ac1fe18fa71fb9f3702d5738958297
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.2.0-RC3-rev1682753/solr/maven/org/apache/solr/solr-solrj/5.2.0/solr-solrj-5.2.0-sources.jar
==============================================================================
Binary file - no diff available.

Propchange: dev/lucene/lucene-solr-5.2.0-RC3-rev1682753/solr/maven/org/apache/solr/solr-solrj/5.2.0/solr-solrj-5.2.0-sources.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: dev/lucene/lucene-solr-5.2.0-RC3-rev1682753/solr/maven/org/apache/solr/solr-solrj/5.2.0/solr-solrj-5.2.0-sources.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-5.2.0-RC3-rev1682753/solr/maven/org/apache/solr/solr-solrj/5.2.0/solr-solrj-5.2.0-sources.jar.asc (added)
+++ dev/lucene/lucene-solr-5.2.0-RC3-rev1682753/solr/maven/org/apache/solr/solr-solrj/5.2.0/solr-solrj-5.2.0-sources.jar.asc Sun May 31 20:35:13 2015
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Comment: GPGTools - https://gpgtools.org
+
+iQIcBAABCgAGBQJVa1FSAAoJEHWAUcyjoTp/BMMQAK5bdhqedcNzK4o0t6VL2anW
+bsNY7qWBffPUkeDLDsYFK6pmjsWGCsDD76ydMX7cTND0qEgKfmAETCc8wC0cNg0X
+/e2c93a+n6mgUcrPhJQjDnGIszD0LAMQQbT7xMiZUkUUs/j8Xnd0S1cvx1Yimoff
+zNwfcJCfUomf9X07+UoZZ+8GDyMIdFAqiN+z2plZe3K3LyC0NDbStARkw9mFIspr
+6jXfCvAc0jVcGYd8U2tKlP2dW4gH4qblQD/PNrEGKJr3oyw9JxO15HJd2B7FN6q2
+OsuV+Zv7NqnNcbfyrTVm2abhv0IxtBBgB1VHc9ucHvCxP18RHv85pldAFp+EGDtm
+cp1YyoN7935IVON1lBYV8/qp4qgg/evT44W7DYil36dOksN15oq8dxh2p0wf/hOM
+lvxwwb+2o3UMx0du4aMrJULkBTvyufQ2VGw5eoi4qp968t1/veKcMfUJhMdQn0m0
+nnkLN5YlBQ/g/o+9iFzUutA18qaLE1eyqvMPDH9Ann8zPZ+riWzgvW9prim7o0Ye
+Dieb/ZSJNGmi2gd7hY3xxl4pen8cqQouUbRE0OscnRgcywDcS9ZFNiThC1ACZRiI
+poK/53go4MecpgQAZO4Jd9gJZzOO7BcyGIR105PqMNI08Z1mbFQJIMmtE5evDFsi
+CmYeJnX/8rJw8pmaK+Th
+=sa5C
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-5.2.0-RC3-rev1682753/solr/maven/org/apache/solr/solr-solrj/5.2.0/solr-solrj-5.2.0-sources.jar.md5
==============================================================================
--- dev/lucene/lucene-solr-5.2.0-RC3-rev1682753/solr/maven/org/apache/solr/solr-solrj/5.2.0/solr-solrj-5.2.0-sources.jar.md5 (added)
+++ dev/lucene/lucene-solr-5.2.0-RC3-rev1682753/solr/maven/org/apache/solr/solr-solrj/5.2.0/solr-solrj-5.2.0-sources.jar.md5 Sun May 31 20:35:13 2015
@@ -0,0 +1 @@
+3ce8942d2b644e0a4cef76623af56562
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.2.0-RC3-rev1682753/solr/maven/org/apache/solr/solr-solrj/5.2.0/solr-solrj-5.2.0-sources.jar.sha1
==============================================================================
--- dev/lucene/lucene-solr-5.2.0-RC3-rev1682753/solr/maven/org/apache/solr/solr-solrj/5.2.0/solr-solrj-5.2.0-sources.jar.sha1 (added)
+++ dev/lucene/lucene-solr-5.2.0-RC3-rev1682753/solr/maven/org/apache/solr/solr-solrj/5.2.0/solr-solrj-5.2.0-sources.jar.sha1 Sun May 31 20:35:13 2015
@@ -0,0 +1 @@
+a736dda3bb4a2b4302d81d3b47fc123967f8a567
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.2.0-RC3-rev1682753/solr/maven/org/apache/solr/solr-solrj/5.2.0/solr-solrj-5.2.0.jar
==============================================================================
Binary file - no diff available.

Propchange: dev/lucene/lucene-solr-5.2.0-RC3-rev1682753/solr/maven/org/apache/solr/solr-solrj/5.2.0/solr-solrj-5.2.0.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: dev/lucene/lucene-solr-5.2.0-RC3-rev1682753/solr/maven/org/apache/solr/solr-solrj/5.2.0/solr-solrj-5.2.0.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-5.2.0-RC3-rev1682753/solr/maven/org/apache/solr/solr-solrj/5.2.0/solr-solrj-5.2.0.jar.asc (added)
+++ dev/lucene/lucene-solr-5.2.0-RC3-rev1682753/solr/maven/org/apache/solr/solr-solrj/5.2.0/solr-solrj-5.2.0.jar.asc Sun May 31 20:35:13 2015
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Comment: GPGTools - https://gpgtools.org
+
+iQIcBAABCgAGBQJVa1FSAAoJEHWAUcyjoTp/cUIP/RfslFqoQMxGDeKaUw3Nl45I
+al+ECUOtcHZQbHi5wcP8wc3aWUz6KIdMzQguf37tbG3WINalNPE7Xnrl/AnYaxm2
+py1K0KAyQtfs+/HAbUhyMOrX4rY/iHDSvHZZc7FT8HtUjjYKljNIJQnoX0Sdt0TN
+ZN1KO/xzGewyR4R0oIUzzwNukhT1hBPPdmIKiAIPSGa4FfEV1TCoGI4h9GZQbhYX
+lHhalaXmDs63jMzLQkvdW2QPVOCjPQCzUFV45qb+vBJs2BVdH7KsGoEAqypx4Hg8
+pg3r0WXBYjoK9bPgxzmMfNKzRmM/tWu71TuR81WubGA3va9BztWSmMMS+jggfWRU
+iSr6np0HB4AudM1GzCZAD1zbwKKoX8YXggvrRlKgEqXRL2Y+cs9CPeYrBIfvsuMx
+cr9cMoSOPeEvgmRz9U9cWP8Zewz+VzsaZrnVfDlMZnKrV2OYQgahEX3KFOn4c2QV
+DpHmt8slSGPv6A17MQsGPAkkXSx5ezEBmgfYHpxSCJJoEZi3WlzQH2MZl6l/wyO6
+aGzHhED+ipUx4o+ye7yjQWgLw10TTXsnxmD7bwNiVL35hqEL6mqAxhaX83lHpP/N
+RSywh+uM1nISzZSVza0jZk4YYsfIJA8AGR9z/X4jTLKeSJE26qcfngN7wZOpgmrX
+f0y9qjbzvX/qwnyO2uNw
+=j9zK
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-5.2.0-RC3-rev1682753/solr/maven/org/apache/solr/solr-solrj/5.2.0/solr-solrj-5.2.0.jar.md5
==============================================================================
--- dev/lucene/lucene-solr-5.2.0-RC3-rev1682753/solr/maven/org/apache/solr/solr-solrj/5.2.0/solr-solrj-5.2.0.jar.md5 (added)
+++ dev/lucene/lucene-solr-5.2.0-RC3-rev1682753/solr/maven/org/apache/solr/solr-solrj/5.2.0/solr-solrj-5.2.0.jar.md5 Sun May 31 20:35:13 2015
@@ -0,0 +1 @@
+a03a5edd08c0038f1bce0ba57618897d
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.2.0-RC3-rev1682753/solr/maven/org/apache/solr/solr-solrj/5.2.0/solr-solrj-5.2.0.jar.sha1
==============================================================================
--- dev/lucene/lucene-solr-5.2.0-RC3-rev1682753/solr/maven/org/apache/solr/solr-solrj/5.2.0/solr-solrj-5.2.0.jar.sha1 (added)
+++ dev/lucene/lucene-solr-5.2.0-RC3-rev1682753/solr/maven/org/apache/solr/solr-solrj/5.2.0/solr-solrj-5.2.0.jar.sha1 Sun May 31 20:35:13 2015
@@ -0,0 +1 @@
+2bfbf8b56506537854198bb5364d4eb3c47145de
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.2.0-RC3-rev1682753/solr/maven/org/apache/solr/solr-solrj/5.2.0/solr-solrj-5.2.0.pom
==============================================================================
--- dev/lucene/lucene-solr-5.2.0-RC3-rev1682753/solr/maven/org/apache/solr/solr-solrj/5.2.0/solr-solrj-5.2.0.pom (added)
+++ dev/lucene/lucene-solr-5.2.0-RC3-rev1682753/solr/maven/org/apache/solr/solr-solrj/5.2.0/solr-solrj-5.2.0.pom Sun May 31 20:35:13 2015
@@ -0,0 +1,113 @@
+<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.2.0</version>
+    <relativePath>../../../pom.xml</relativePath>
+  </parent>
+  <groupId>org.apache.solr</groupId>
+  <artifactId>solr-solrj</artifactId>
+  <packaging>jar</packaging>
+  <name>Apache Solr Solrj</name>
+  <description>Apache Solr Solrj</description>
+  <properties>
+    <module-directory>solr/solrj</module-directory>
+    <relative-top-level>../../../../..</relative-top-level>
+    <module-path>${relative-top-level}/${module-directory}/src/java</module-path>
+  </properties>
+  <scm>
+    <connection>scm:svn:${vc-anonymous-base-url}/${module-directory}</connection>
+    <developerConnection>scm:svn:${vc-dev-base-url}/${module-directory}</developerConnection>
+    <url>${vc-browse-base-url}/${module-directory}</url>
+  </scm>
+  <dependencies>
+
+    <dependency>
+      <groupId>commons-io</groupId>
+      <artifactId>commons-io</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.noggit</groupId>
+      <artifactId>noggit</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.slf4j</groupId>
+      <artifactId>slf4j-api</artifactId>
+    </dependency>
+  </dependencies>
+  <build>
+    <sourceDirectory>${module-path}</sourceDirectory>
+    <testSourceDirectory/>
+    <plugins>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-surefire-plugin</artifactId>
+        <configuration>
+          <skip>true</skip> <!-- Tests are run from solr-solrj-tests module -->
+        </configuration>
+      </plugin>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-compiler-plugin</artifactId>
+        <configuration>
+          <skip>true</skip> <!-- This skips test compilation - tests are run from solr-solrj-tests module -->
+        </configuration>
+      </plugin>
+      <plugin>
+        <groupId>de.thetaphi</groupId>
+        <artifactId>forbiddenapis</artifactId>
+        <executions>
+          <execution>
+            <id>solr-shared-test-check-forbidden-apis</id>
+            <phase>none</phase> <!-- Block inherited execution -->
+          </execution>
+        </executions>
+      </plugin>
+    </plugins>
+  </build>
+</project>

Added: dev/lucene/lucene-solr-5.2.0-RC3-rev1682753/solr/maven/org/apache/solr/solr-solrj/5.2.0/solr-solrj-5.2.0.pom.asc
==============================================================================
--- dev/lucene/lucene-solr-5.2.0-RC3-rev1682753/solr/maven/org/apache/solr/solr-solrj/5.2.0/solr-solrj-5.2.0.pom.asc (added)
+++ dev/lucene/lucene-solr-5.2.0-RC3-rev1682753/solr/maven/org/apache/solr/solr-solrj/5.2.0/solr-solrj-5.2.0.pom.asc Sun May 31 20:35:13 2015
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Comment: GPGTools - https://gpgtools.org
+
+iQIcBAABCgAGBQJVa1FTAAoJEHWAUcyjoTp/+tAP/RBApBDW3qU4yKg6oKcEQZhR
+5jF+IeXrAg81ZG7rvqjVTjbNZTrZVOZXyG7XJml8gf8fbp/DxuisnDM8soc8dDnX
+DyRR4wJz/Mz6+LGtL69g0mNHhqWeGbYUsLpBP+c3XDv9NrX4cMTpSXw2eRQiCj7I
+E2o83w7XW1TkCzws2Orumdm3D8I5UGnvSDUu4bRygfq9jByF7a3RiruvNdyre39q
+Man6L5TNUAeUwL8IJvkOYTunIpHXGluY+nVvowjxwt9D71iiGnVBhNOQ8fZTsAyC
+qthD6TFHhCqfk5Ppo+H7Gh8DZjBgO2ZQZ0GKaHRJw+UYv1xhUJ7VbkWGjkx9iceF
+xABN3lYDegS4r1CvUrvFXldmbAn1m72zoWKm18Fm24NhDETufRqCMB8w2d9Z/4h6
+5TZUpLrQRYCFCSkvGM4kAgveoxk0qsvVZlWS0UFyqPBjzNt5r9I+wcTEVjhrfLm0
+8YI1J4Wfm2gAdnASn+ZS3chu4M5dAVtdb/2dOGYwDQuhi4alu7NvPHGguKfFkAlw
+9fpFRPfYGEpCWdgQY4al5NupRlP+WYqkPpPaTOx1RPvSyNnWY1qJSFEp67bs5CTh
+yl1b1UiaTZgy5Cz27A0PhpTi5t/Obe2TYjyxZQX7euKjQqhVapykDQA3kCK/cR+D
+/m8wGq2d51Y9P6oomR/h
+=LyUO
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-5.2.0-RC3-rev1682753/solr/maven/org/apache/solr/solr-solrj/5.2.0/solr-solrj-5.2.0.pom.md5
==============================================================================
--- dev/lucene/lucene-solr-5.2.0-RC3-rev1682753/solr/maven/org/apache/solr/solr-solrj/5.2.0/solr-solrj-5.2.0.pom.md5 (added)
+++ dev/lucene/lucene-solr-5.2.0-RC3-rev1682753/solr/maven/org/apache/solr/solr-solrj/5.2.0/solr-solrj-5.2.0.pom.md5 Sun May 31 20:35:13 2015
@@ -0,0 +1 @@
+8e05f10bd95a18f072b84b4dcde24bb8
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.2.0-RC3-rev1682753/solr/maven/org/apache/solr/solr-solrj/5.2.0/solr-solrj-5.2.0.pom.sha1
==============================================================================
--- dev/lucene/lucene-solr-5.2.0-RC3-rev1682753/solr/maven/org/apache/solr/solr-solrj/5.2.0/solr-solrj-5.2.0.pom.sha1 (added)
+++ dev/lucene/lucene-solr-5.2.0-RC3-rev1682753/solr/maven/org/apache/solr/solr-solrj/5.2.0/solr-solrj-5.2.0.pom.sha1 Sun May 31 20:35:13 2015
@@ -0,0 +1 @@
+7d6eb531416fea099ec2d371557ded108752ab7f
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.2.0-RC3-rev1682753/solr/maven/org/apache/solr/solr-solrj/maven-metadata.xml
==============================================================================
--- dev/lucene/lucene-solr-5.2.0-RC3-rev1682753/solr/maven/org/apache/solr/solr-solrj/maven-metadata.xml (added)
+++ dev/lucene/lucene-solr-5.2.0-RC3-rev1682753/solr/maven/org/apache/solr/solr-solrj/maven-metadata.xml Sun May 31 20:35:13 2015
@@ -0,0 +1,12 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<metadata>
+  <groupId>org.apache.solr</groupId>
+  <artifactId>solr-solrj</artifactId>
+  <version>5.2.0</version>
+  <versioning>
+    <versions>
+      <version>5.2.0</version>
+    </versions>
+    <lastUpdated>20150531182100</lastUpdated>
+  </versioning>
+</metadata>

Propchange: dev/lucene/lucene-solr-5.2.0-RC3-rev1682753/solr/maven/org/apache/solr/solr-solrj/maven-metadata.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Added: dev/lucene/lucene-solr-5.2.0-RC3-rev1682753/solr/maven/org/apache/solr/solr-solrj/maven-metadata.xml.md5
==============================================================================
--- dev/lucene/lucene-solr-5.2.0-RC3-rev1682753/solr/maven/org/apache/solr/solr-solrj/maven-metadata.xml.md5 (added)
+++ dev/lucene/lucene-solr-5.2.0-RC3-rev1682753/solr/maven/org/apache/solr/solr-solrj/maven-metadata.xml.md5 Sun May 31 20:35:13 2015
@@ -0,0 +1 @@
+dccd5821e2f5eda97488d4b600bd1d0d
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.2.0-RC3-rev1682753/solr/maven/org/apache/solr/solr-solrj/maven-metadata.xml.sha1
==============================================================================
--- dev/lucene/lucene-solr-5.2.0-RC3-rev1682753/solr/maven/org/apache/solr/solr-solrj/maven-metadata.xml.sha1 (added)
+++ dev/lucene/lucene-solr-5.2.0-RC3-rev1682753/solr/maven/org/apache/solr/solr-solrj/maven-metadata.xml.sha1 Sun May 31 20:35:13 2015
@@ -0,0 +1 @@
+2295f42e5a360ebf974714921d261f57491ee66c
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.2.0-RC3-rev1682753/solr/maven/org/apache/solr/solr-test-framework/5.2.0/solr-test-framework-5.2.0-javadoc.jar
==============================================================================
Binary file - no diff available.

Propchange: dev/lucene/lucene-solr-5.2.0-RC3-rev1682753/solr/maven/org/apache/solr/solr-test-framework/5.2.0/solr-test-framework-5.2.0-javadoc.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: dev/lucene/lucene-solr-5.2.0-RC3-rev1682753/solr/maven/org/apache/solr/solr-test-framework/5.2.0/solr-test-framework-5.2.0-javadoc.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-5.2.0-RC3-rev1682753/solr/maven/org/apache/solr/solr-test-framework/5.2.0/solr-test-framework-5.2.0-javadoc.jar.asc (added)
+++ dev/lucene/lucene-solr-5.2.0-RC3-rev1682753/solr/maven/org/apache/solr/solr-test-framework/5.2.0/solr-test-framework-5.2.0-javadoc.jar.asc Sun May 31 20:35:13 2015
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Comment: GPGTools - https://gpgtools.org
+
+iQIcBAABCgAGBQJVa1FTAAoJEHWAUcyjoTp//YIQAI2nX4pxNU+1RjL1Q4c3Drqk
+CQPHU0MrWIFWOPHPNX59EWspWPYkmTjQIWlVJpvqdI9qNyc228jkjTBI24+7sDzZ
+z2Cg//uSK4cf2SJiyHvMoLiiCsBZ/r4idEoCfPN0LWfmqmMNSdRg+Oqh5LO920PF
+5H7HZX3UwdYXUC2axcy6JaOQfZXqV2j7CwkuOVHh1L/Ym6FI31moE9O1FgJL4Cd8
++lhV54XQsspNSKOR+tBJ7/7P+AUaq0AxC6+k85NTjobMAKK+ubKi9RFYH6gQ2SIu
+22hFs9mQwoFMV6TUYxbJCphTpdcg4lxHsM4tuUCirGeJNgHbDvWdreq3pqknw0Wv
+QQ5k1u51a1KuERm8lkdtatQN6O7MI2ThO610ZuUYsxFmpLtocz+BCG9gMCMRVH/z
+Jpf0TEOX6Fbgw83kItayXEIcnzZ/WzgtdG/oT1sZKhHBCk7Kf2LEAatSNSHVc/U/
+Bkvw28ML0Gx3ZU/V+jtV+DyzTB+RM7mfSvonOB+ucf2WHcgD0K+6x40W1dW2lhfN
+9Rub+SHMKk77ReXwmuRlJGl1c/IWzg5f172ALpW4g36mGT94lkQxMGoh2W9DGw2c
+k3683JpDXTmp8ZZ2+X8PtrZo6SqmuytBryxs5LaUDaahgYihwaNi8+hfO7BVnuE2
+YYCPP/Eo/PDNUrWZdWxZ
+=PJj/
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-5.2.0-RC3-rev1682753/solr/maven/org/apache/solr/solr-test-framework/5.2.0/solr-test-framework-5.2.0-javadoc.jar.md5
==============================================================================
--- dev/lucene/lucene-solr-5.2.0-RC3-rev1682753/solr/maven/org/apache/solr/solr-test-framework/5.2.0/solr-test-framework-5.2.0-javadoc.jar.md5 (added)
+++ dev/lucene/lucene-solr-5.2.0-RC3-rev1682753/solr/maven/org/apache/solr/solr-test-framework/5.2.0/solr-test-framework-5.2.0-javadoc.jar.md5 Sun May 31 20:35:13 2015
@@ -0,0 +1 @@
+242388b7964bf69d20aaac04af56b9f8
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.2.0-RC3-rev1682753/solr/maven/org/apache/solr/solr-test-framework/5.2.0/solr-test-framework-5.2.0-javadoc.jar.sha1
==============================================================================
--- dev/lucene/lucene-solr-5.2.0-RC3-rev1682753/solr/maven/org/apache/solr/solr-test-framework/5.2.0/solr-test-framework-5.2.0-javadoc.jar.sha1 (added)
+++ dev/lucene/lucene-solr-5.2.0-RC3-rev1682753/solr/maven/org/apache/solr/solr-test-framework/5.2.0/solr-test-framework-5.2.0-javadoc.jar.sha1 Sun May 31 20:35:13 2015
@@ -0,0 +1 @@
+87556f1c00bce82b3bf2e632359a948216881bb3
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.2.0-RC3-rev1682753/solr/maven/org/apache/solr/solr-test-framework/5.2.0/solr-test-framework-5.2.0-sources.jar
==============================================================================
Binary file - no diff available.

Propchange: dev/lucene/lucene-solr-5.2.0-RC3-rev1682753/solr/maven/org/apache/solr/solr-test-framework/5.2.0/solr-test-framework-5.2.0-sources.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: dev/lucene/lucene-solr-5.2.0-RC3-rev1682753/solr/maven/org/apache/solr/solr-test-framework/5.2.0/solr-test-framework-5.2.0-sources.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-5.2.0-RC3-rev1682753/solr/maven/org/apache/solr/solr-test-framework/5.2.0/solr-test-framework-5.2.0-sources.jar.asc (added)
+++ dev/lucene/lucene-solr-5.2.0-RC3-rev1682753/solr/maven/org/apache/solr/solr-test-framework/5.2.0/solr-test-framework-5.2.0-sources.jar.asc Sun May 31 20:35:13 2015
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Comment: GPGTools - https://gpgtools.org
+
+iQIcBAABCgAGBQJVa1FUAAoJEHWAUcyjoTp/mJAQAM9gzTr3WfgFC3wZ3jzaVPA/
+2RcBYEzOcGBGaHwEbXnL2S5JGBUkrLQOvmZUZXw0z6dnFBrxyZ4FcsPVaAtYtxMY
+CdJZvUYVAy0tt+uvnR0Z1c4ouUspK3jwnUBsVbqDhXLA8mrTiz+ZxWCFyTRPY4+i
+ZlOO48AXfKSjNrBdCe1TyH9LH/7jHzT7EC2eNIpEhWBEcVlkr4FWBxZRc0JWsxA/
+4t9R5Bw4indDGuD/aRR4OPtC2RqHUp/Z3Jtxe2EKpsCqtWzPI7zUJ945oZ1oAO8U
+LRufA92Z6PQAiroa579YWzWc41JME8fXIU5g2jZ+VROST/CckqJAm6eBnjw/C6Zz
+Wl875yIItAAbs2Jc9qoWXP1vknI+FIfkrbEhCDNQ51dN6OgJtR82NeGHt4lC67kw
+6vTDi4kwuYRq2uZtUcYTKi5rwqCRJ9NiLPoAA7JCRdFVbqkC/qsGbxWgLrqhCS0H
+hX8otTYHwd77nQdAjoeF+UMMmY/HsReh3Lhp8Ht+Q2sd4+Q0JDiMkfcBE7JCevk4
+SG84BBkgwgOf3zPsLy7I7MJUhzf1Jcau5N0yjVYMOiayV+EQtsNid1E5zrB+nw/G
+/HA1eJfVOTz9y+5EvhApD8Ed15sqlwVIhSPSbDAy6P66dMOPRsnvok1LKi0i/wUd
+GVngFflf7N2kkE5PHbtR
+=jyth
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-5.2.0-RC3-rev1682753/solr/maven/org/apache/solr/solr-test-framework/5.2.0/solr-test-framework-5.2.0-sources.jar.md5
==============================================================================
--- dev/lucene/lucene-solr-5.2.0-RC3-rev1682753/solr/maven/org/apache/solr/solr-test-framework/5.2.0/solr-test-framework-5.2.0-sources.jar.md5 (added)
+++ dev/lucene/lucene-solr-5.2.0-RC3-rev1682753/solr/maven/org/apache/solr/solr-test-framework/5.2.0/solr-test-framework-5.2.0-sources.jar.md5 Sun May 31 20:35:13 2015
@@ -0,0 +1 @@
+c940aaa1f87b21d5464d9a8f8bfb1dc2
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.2.0-RC3-rev1682753/solr/maven/org/apache/solr/solr-test-framework/5.2.0/solr-test-framework-5.2.0-sources.jar.sha1
==============================================================================
--- dev/lucene/lucene-solr-5.2.0-RC3-rev1682753/solr/maven/org/apache/solr/solr-test-framework/5.2.0/solr-test-framework-5.2.0-sources.jar.sha1 (added)
+++ dev/lucene/lucene-solr-5.2.0-RC3-rev1682753/solr/maven/org/apache/solr/solr-test-framework/5.2.0/solr-test-framework-5.2.0-sources.jar.sha1 Sun May 31 20:35:13 2015
@@ -0,0 +1 @@
+25e7f523319662b777126c8b2a35008dcb434837
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.2.0-RC3-rev1682753/solr/maven/org/apache/solr/solr-test-framework/5.2.0/solr-test-framework-5.2.0.jar
==============================================================================
Binary file - no diff available.

Propchange: dev/lucene/lucene-solr-5.2.0-RC3-rev1682753/solr/maven/org/apache/solr/solr-test-framework/5.2.0/solr-test-framework-5.2.0.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: dev/lucene/lucene-solr-5.2.0-RC3-rev1682753/solr/maven/org/apache/solr/solr-test-framework/5.2.0/solr-test-framework-5.2.0.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-5.2.0-RC3-rev1682753/solr/maven/org/apache/solr/solr-test-framework/5.2.0/solr-test-framework-5.2.0.jar.asc (added)
+++ dev/lucene/lucene-solr-5.2.0-RC3-rev1682753/solr/maven/org/apache/solr/solr-test-framework/5.2.0/solr-test-framework-5.2.0.jar.asc Sun May 31 20:35:13 2015
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Comment: GPGTools - https://gpgtools.org
+
+iQIcBAABCgAGBQJVa1FVAAoJEHWAUcyjoTp/VpQP/2guuO01tYnbCO9/9G7l5RkD
+TF+AKwTp+lhAjXfE8Ib9w+TM8JNi8x2Z8NFV79LwgAtwLc25G3u3zJPtt1nWoOrD
+ChUAJ1CENNPNAPnrecF8HeJ7+rNBK90zZwtDZTOMudntWwnlThW7trjePUn1Hav2
+ve+JyDeb/I2tEUFUWJLyOhPC9rtXh9oAP0bLh4Iz8iFve1+ibWiGjYUtom9Bt0SQ
+RFFcpnOsFTtMsAwtIugO3YrCmWx0Bk+eUCzuJbLXNQxYHbjSa72mavMjWTVDzUL+
+I3MgbYOaHmGG9B4O5PWndmv5qvQDyJJeWxs8gdFeqQ4wGBcaWfHwbT8XOm7rMS+d
+h0sKz6Yap1spMQ95Uwlpc2/6SrvsED7k/ZHrD9YWPgi0FRNbdmXLG9PhN+xEAjgM
+7ha+8Zz8jbAXZLRCO6SkJ4ecFgdgxYHJE0dENg5zhm0e7bcNHXE4E3Lf6QYplUYr
+5vXT6SQkqirwwVD+LJdLwVeBOlOEupPuXNbEbop4QHFpzLKbLw4G71eAcE1iNFgx
+i3+JtWsY3JNsx6irNMKaJ6Hn2Prj8H6q2nL4oipdwMPyYj6wwcyGelsxHZ/yF4Iw
+8DACAS1Cfbi/rA5xJTOcIl/6Zd8j1+bDvxeA7wAxO5OaBvS9cH4I4DQtN4kU7FI4
+Bux8umCKLbkruc9yW5QQ
+=p9iL
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-5.2.0-RC3-rev1682753/solr/maven/org/apache/solr/solr-test-framework/5.2.0/solr-test-framework-5.2.0.jar.md5
==============================================================================
--- dev/lucene/lucene-solr-5.2.0-RC3-rev1682753/solr/maven/org/apache/solr/solr-test-framework/5.2.0/solr-test-framework-5.2.0.jar.md5 (added)
+++ dev/lucene/lucene-solr-5.2.0-RC3-rev1682753/solr/maven/org/apache/solr/solr-test-framework/5.2.0/solr-test-framework-5.2.0.jar.md5 Sun May 31 20:35:13 2015
@@ -0,0 +1 @@
+942d5bf6f4df1122bfefe9b2e505d07c
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.2.0-RC3-rev1682753/solr/maven/org/apache/solr/solr-test-framework/5.2.0/solr-test-framework-5.2.0.jar.sha1
==============================================================================
--- dev/lucene/lucene-solr-5.2.0-RC3-rev1682753/solr/maven/org/apache/solr/solr-test-framework/5.2.0/solr-test-framework-5.2.0.jar.sha1 (added)
+++ dev/lucene/lucene-solr-5.2.0-RC3-rev1682753/solr/maven/org/apache/solr/solr-test-framework/5.2.0/solr-test-framework-5.2.0.jar.sha1 Sun May 31 20:35:13 2015
@@ -0,0 +1 @@
+b37108c9a455bbfee8f37e7a7ea552c186abafab
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.2.0-RC3-rev1682753/solr/maven/org/apache/solr/solr-test-framework/5.2.0/solr-test-framework-5.2.0.pom
==============================================================================
--- dev/lucene/lucene-solr-5.2.0-RC3-rev1682753/solr/maven/org/apache/solr/solr-test-framework/5.2.0/solr-test-framework-5.2.0.pom (added)
+++ dev/lucene/lucene-solr-5.2.0-RC3-rev1682753/solr/maven/org/apache/solr/solr-test-framework/5.2.0/solr-test-framework-5.2.0.pom Sun May 31 20:35:13 2015
@@ -0,0 +1,398 @@
+<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.2.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:svn:${vc-anonymous-base-url}/${module-directory}</connection>
+    <developerConnection>scm:svn:${vc-dev-base-url}/${module-directory}</developerConnection>
+    <url>${vc-browse-base-url}/${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-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.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>it.unimi.dsi</groupId>
+      <artifactId>fastutil</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>javax.servlet</groupId>
+      <artifactId>javax.servlet-api</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>joda-time</groupId>
+      <artifactId>joda-time</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>junit</groupId>
+      <artifactId>junit</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>log4j</groupId>
+      <artifactId>log4j</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>net.agkn</groupId>
+      <artifactId>hll</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.antlr</groupId>
+      <artifactId>antlr-runtime</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.ant</groupId>
+      <artifactId>ant</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>
+      <optional>true</optional>
+    </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>

Added: dev/lucene/lucene-solr-5.2.0-RC3-rev1682753/solr/maven/org/apache/solr/solr-test-framework/5.2.0/solr-test-framework-5.2.0.pom.asc
==============================================================================
--- dev/lucene/lucene-solr-5.2.0-RC3-rev1682753/solr/maven/org/apache/solr/solr-test-framework/5.2.0/solr-test-framework-5.2.0.pom.asc (added)
+++ dev/lucene/lucene-solr-5.2.0-RC3-rev1682753/solr/maven/org/apache/solr/solr-test-framework/5.2.0/solr-test-framework-5.2.0.pom.asc Sun May 31 20:35:13 2015
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Comment: GPGTools - https://gpgtools.org
+
+iQIcBAABCgAGBQJVa1FVAAoJEHWAUcyjoTp/BjYP/0dyS+6GyN63TOC7qkjN4yWp
+QqgEk6hJazkinFmvDapqiKDikCZ/p7G7TcGbmOhPZlysteH3oBBxolOMWvjfFV+w
+ZDC8kTV7Z8B90HP7u/KLk0x1UUIe8OdcM42hNOth9zFMjZ8emtE31sQEWs6YDsjj
+1OgHOQrPyeSxlk6awmJ0KW+T8BMKznryO/6Bn8/tMDhdH+BCF8M4fUn3SKIck8sp
+GaNBv8iAcBZMZHSvXvuEen4K/nHy4CY3w9Z6NpXT3/6I5wsE0BuvfjdgfxSD97+x
+fq2WOLTMUNuHAlCrBxsnjhQZpLHqleVpspw5sjhHdDJRsx2WCUSRsTJsYeQ9XZaq
+aP7121DZJ6OD7jxRhxXvGkd9gGbR1N72mOiVe6OGfVhjMJfExnHrIE2gkNe9m8Vt
+wYYd0lBu8RklxXZnBlLsHcz42wRDiHMVnxUVSc1FnRt+EEw5pKyzxxO2R1D3+2mC
+HijjprufS9hBs4b76/0/YGCBSAYHvRPeysfNcS1N5kMq8Jcr4jp7ER00GNz4oYb5
+hhi+obIf7WkaiVzViCnDkEjPQaiaiH/e5HrzSDH41RM0JPOCADLqseqX4Q4yIWPz
+bdDnjb/ecHsQdIfbtVA+LhZ9jiP+XwLeXCvIJf7fhMW8iHmapbqk0orZOLUsr8Zj
+IT6GmhXbCdybK/54TW1O
+=PuYh
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-5.2.0-RC3-rev1682753/solr/maven/org/apache/solr/solr-test-framework/5.2.0/solr-test-framework-5.2.0.pom.md5
==============================================================================
--- dev/lucene/lucene-solr-5.2.0-RC3-rev1682753/solr/maven/org/apache/solr/solr-test-framework/5.2.0/solr-test-framework-5.2.0.pom.md5 (added)
+++ dev/lucene/lucene-solr-5.2.0-RC3-rev1682753/solr/maven/org/apache/solr/solr-test-framework/5.2.0/solr-test-framework-5.2.0.pom.md5 Sun May 31 20:35:13 2015
@@ -0,0 +1 @@
+ee3b55a52aa906140d13d9827d09876e
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.2.0-RC3-rev1682753/solr/maven/org/apache/solr/solr-test-framework/5.2.0/solr-test-framework-5.2.0.pom.sha1
==============================================================================
--- dev/lucene/lucene-solr-5.2.0-RC3-rev1682753/solr/maven/org/apache/solr/solr-test-framework/5.2.0/solr-test-framework-5.2.0.pom.sha1 (added)
+++ dev/lucene/lucene-solr-5.2.0-RC3-rev1682753/solr/maven/org/apache/solr/solr-test-framework/5.2.0/solr-test-framework-5.2.0.pom.sha1 Sun May 31 20:35:13 2015
@@ -0,0 +1 @@
+230bcafbcefc26782f2c6cbe29c6837abd23cb47
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.2.0-RC3-rev1682753/solr/maven/org/apache/solr/solr-test-framework/maven-metadata.xml
==============================================================================
--- dev/lucene/lucene-solr-5.2.0-RC3-rev1682753/solr/maven/org/apache/solr/solr-test-framework/maven-metadata.xml (added)
+++ dev/lucene/lucene-solr-5.2.0-RC3-rev1682753/solr/maven/org/apache/solr/solr-test-framework/maven-metadata.xml Sun May 31 20:35:13 2015
@@ -0,0 +1,12 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<metadata>
+  <groupId>org.apache.solr</groupId>
+  <artifactId>solr-test-framework</artifactId>
+  <version>5.2.0</version>
+  <versioning>
+    <versions>
+      <version>5.2.0</version>
+    </versions>
+    <lastUpdated>20150531182102</lastUpdated>
+  </versioning>
+</metadata>

Propchange: dev/lucene/lucene-solr-5.2.0-RC3-rev1682753/solr/maven/org/apache/solr/solr-test-framework/maven-metadata.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Added: dev/lucene/lucene-solr-5.2.0-RC3-rev1682753/solr/maven/org/apache/solr/solr-test-framework/maven-metadata.xml.md5
==============================================================================
--- dev/lucene/lucene-solr-5.2.0-RC3-rev1682753/solr/maven/org/apache/solr/solr-test-framework/maven-metadata.xml.md5 (added)
+++ dev/lucene/lucene-solr-5.2.0-RC3-rev1682753/solr/maven/org/apache/solr/solr-test-framework/maven-metadata.xml.md5 Sun May 31 20:35:13 2015
@@ -0,0 +1 @@
+9435a8d1785e5c29c2f8995976cdfd5f
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.2.0-RC3-rev1682753/solr/maven/org/apache/solr/solr-test-framework/maven-metadata.xml.sha1
==============================================================================
--- dev/lucene/lucene-solr-5.2.0-RC3-rev1682753/solr/maven/org/apache/solr/solr-test-framework/maven-metadata.xml.sha1 (added)
+++ dev/lucene/lucene-solr-5.2.0-RC3-rev1682753/solr/maven/org/apache/solr/solr-test-framework/maven-metadata.xml.sha1 Sun May 31 20:35:13 2015
@@ -0,0 +1 @@
+4b6dee8317c9accd5a8dc7580de584a41752e6f2
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.2.0-RC3-rev1682753/solr/maven/org/apache/solr/solr-uima/5.2.0/solr-uima-5.2.0-javadoc.jar
==============================================================================
Binary file - no diff available.

Propchange: dev/lucene/lucene-solr-5.2.0-RC3-rev1682753/solr/maven/org/apache/solr/solr-uima/5.2.0/solr-uima-5.2.0-javadoc.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: dev/lucene/lucene-solr-5.2.0-RC3-rev1682753/solr/maven/org/apache/solr/solr-uima/5.2.0/solr-uima-5.2.0-javadoc.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-5.2.0-RC3-rev1682753/solr/maven/org/apache/solr/solr-uima/5.2.0/solr-uima-5.2.0-javadoc.jar.asc (added)
+++ dev/lucene/lucene-solr-5.2.0-RC3-rev1682753/solr/maven/org/apache/solr/solr-uima/5.2.0/solr-uima-5.2.0-javadoc.jar.asc Sun May 31 20:35:13 2015
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Comment: GPGTools - https://gpgtools.org
+
+iQIcBAABCgAGBQJVa1FWAAoJEHWAUcyjoTp/9wcP/RIq7z/07Z3W+FAkFyNnIRhl
+s9ICPoRrvWeADMAvyIbLDHPgvzwgqacxOo2p32VzIOcYoPc5QYaGtV/BBXopvqjV
+BE7a1qEkgdRg+P5+wTJNuiOLqDQ4UeBdnxmEw08Kze8j9Ac04E+Sub0rF5/XrrRj
+uxQdgP9ADG3nqqgvAPC/GOC7vnmcCRJgi1meuezzbUFZ1aFJ7tEdRojPhM8b+G2C
+P4h2HaZprdxPMUy+f36qwMAmfv5qoopJJ3vu9AeN0ZQhVa5ZMfM+Unv0LzTVv9nB
+xnAJoCIxSctfgI8rvWt4mKq1HnYUU6TFsstwp8QpIVvzMyTUyMCQBYmmyqxX/wwJ
+2a9Hf66d5eG/sRtRSYsHta/0qHDDiWBS/VIDCZIzSnENoufOw9CA8XMT/7uPsMNL
+Fg9ZL7H/3aW63flM9OTmw0Q1zItCK9BR0ccpSoFnFp+NAD0/HIqD8kjR6/d6wY1W
+uxqu6DAeU8twLgCew6jEh/7QwjvnlwcjvBV+g88TxezPNljp5Ovdaetm3MU5MpoD
+/zZ/I2I9D91AqklJAOo+V7cCH+4N1ptHaG2EtZZhwg3jUSq2YipLWWdT7gCdDKQn
+4mZTn1SwlFF+Oc0b0yy9IybIDiotGxT7g3YFbisacuCOFbjjl3Jq3ZyyhVQdJdFG
+6LcmoLZW5NiIhlY8mTJu
+=nRZJ
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-5.2.0-RC3-rev1682753/solr/maven/org/apache/solr/solr-uima/5.2.0/solr-uima-5.2.0-javadoc.jar.md5
==============================================================================
--- dev/lucene/lucene-solr-5.2.0-RC3-rev1682753/solr/maven/org/apache/solr/solr-uima/5.2.0/solr-uima-5.2.0-javadoc.jar.md5 (added)
+++ dev/lucene/lucene-solr-5.2.0-RC3-rev1682753/solr/maven/org/apache/solr/solr-uima/5.2.0/solr-uima-5.2.0-javadoc.jar.md5 Sun May 31 20:35:13 2015
@@ -0,0 +1 @@
+2b6e9c81182a65399b9c6377ada1468a
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.2.0-RC3-rev1682753/solr/maven/org/apache/solr/solr-uima/5.2.0/solr-uima-5.2.0-javadoc.jar.sha1
==============================================================================
--- dev/lucene/lucene-solr-5.2.0-RC3-rev1682753/solr/maven/org/apache/solr/solr-uima/5.2.0/solr-uima-5.2.0-javadoc.jar.sha1 (added)
+++ dev/lucene/lucene-solr-5.2.0-RC3-rev1682753/solr/maven/org/apache/solr/solr-uima/5.2.0/solr-uima-5.2.0-javadoc.jar.sha1 Sun May 31 20:35:13 2015
@@ -0,0 +1 @@
+75c92c186f1440e81397239c91f77f852fff3637
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.2.0-RC3-rev1682753/solr/maven/org/apache/solr/solr-uima/5.2.0/solr-uima-5.2.0-sources.jar
==============================================================================
Binary file - no diff available.

Propchange: dev/lucene/lucene-solr-5.2.0-RC3-rev1682753/solr/maven/org/apache/solr/solr-uima/5.2.0/solr-uima-5.2.0-sources.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: dev/lucene/lucene-solr-5.2.0-RC3-rev1682753/solr/maven/org/apache/solr/solr-uima/5.2.0/solr-uima-5.2.0-sources.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-5.2.0-RC3-rev1682753/solr/maven/org/apache/solr/solr-uima/5.2.0/solr-uima-5.2.0-sources.jar.asc (added)
+++ dev/lucene/lucene-solr-5.2.0-RC3-rev1682753/solr/maven/org/apache/solr/solr-uima/5.2.0/solr-uima-5.2.0-sources.jar.asc Sun May 31 20:35:13 2015
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Comment: GPGTools - https://gpgtools.org
+
+iQIcBAABCgAGBQJVa1FWAAoJEHWAUcyjoTp/QlUQAKY4oXJYwog7kck7ADVyuoDa
+YESGlFkojm7hOW/Vxz9BFBGb5/Vjtn+6IG4PkXDPNp1NgK8zkO+4up0QbYEJXAub
+5L/QV0wIZiaU1p1JEGaBl4mt8zoL16FrwpnRRIYqFAlIvz0NjSDAOY5EMPL4MpQg
+HFUQuMRL3lLsSwXZnwNzz+5Jh4NbDe5GulrIoisojqfDRg6StYN8/4vdnohPWnhT
+m5DtBQ7/tNIVv5mfKlp0TAAO5FdkQJg6rDfG/BHPU9HU9mxt08ta1kfZIvqBGBFS
+Cxjzo+cURUaAzpr1ffogPQMUzrh/ZFdPVTtLcT/r4gaEh8oM1xYcRa9G2GwbZBKW
+8PG/I0blu1D3lYtlKh6QnEQ+YxPN59nr+u17EvsFRB+5azN93MJbVXrPL0kDAMwZ
+D4iTQw1yy4nE6cxNzQ8HD0CocjUhhEP/26pfKx6joOQOxAEmmsDvrHkk1LlirmdS
+JOnW4C/H6pj2Ynpir9edRwOggEoOHwvln/6F0fIPiT2VMs3ojRRLcxDE6tTxDf9s
+bbqNKSo8lojHcZoUB0mra7BlcyZc347CJK+LWFQywzrodzCE7uI3rSlr+H+Qwt6w
+qtrSGTLq7wTWNWUzN9j33gzoE26T3RaWPGJqFw2YlSL84kMby5GFiaPXLlKuMQkJ
+ATOzQNO7MuSHo1AeK6su
+=H+R2
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-5.2.0-RC3-rev1682753/solr/maven/org/apache/solr/solr-uima/5.2.0/solr-uima-5.2.0-sources.jar.md5
==============================================================================
--- dev/lucene/lucene-solr-5.2.0-RC3-rev1682753/solr/maven/org/apache/solr/solr-uima/5.2.0/solr-uima-5.2.0-sources.jar.md5 (added)
+++ dev/lucene/lucene-solr-5.2.0-RC3-rev1682753/solr/maven/org/apache/solr/solr-uima/5.2.0/solr-uima-5.2.0-sources.jar.md5 Sun May 31 20:35:13 2015
@@ -0,0 +1 @@
+f3c6c3967b90c6dcc013cb44ddff6962
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.2.0-RC3-rev1682753/solr/maven/org/apache/solr/solr-uima/5.2.0/solr-uima-5.2.0-sources.jar.sha1
==============================================================================
--- dev/lucene/lucene-solr-5.2.0-RC3-rev1682753/solr/maven/org/apache/solr/solr-uima/5.2.0/solr-uima-5.2.0-sources.jar.sha1 (added)
+++ dev/lucene/lucene-solr-5.2.0-RC3-rev1682753/solr/maven/org/apache/solr/solr-uima/5.2.0/solr-uima-5.2.0-sources.jar.sha1 Sun May 31 20:35:13 2015
@@ -0,0 +1 @@
+68a0c4679977f5f32126fdfaf76b43cce8c11681
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.2.0-RC3-rev1682753/solr/maven/org/apache/solr/solr-uima/5.2.0/solr-uima-5.2.0.jar
==============================================================================
Binary file - no diff available.

Propchange: dev/lucene/lucene-solr-5.2.0-RC3-rev1682753/solr/maven/org/apache/solr/solr-uima/5.2.0/solr-uima-5.2.0.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: dev/lucene/lucene-solr-5.2.0-RC3-rev1682753/solr/maven/org/apache/solr/solr-uima/5.2.0/solr-uima-5.2.0.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-5.2.0-RC3-rev1682753/solr/maven/org/apache/solr/solr-uima/5.2.0/solr-uima-5.2.0.jar.asc (added)
+++ dev/lucene/lucene-solr-5.2.0-RC3-rev1682753/solr/maven/org/apache/solr/solr-uima/5.2.0/solr-uima-5.2.0.jar.asc Sun May 31 20:35:13 2015
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Comment: GPGTools - https://gpgtools.org
+
+iQIcBAABCgAGBQJVa1FXAAoJEHWAUcyjoTp/YW4P/0qX0HrHx54bjD7/DpSvVvks
+bbVDF9L3fOLx+WWXLIyXBjJMpga4TGAfGwn703sYw6Oy7+Fko+0C5gN+zYvuhv6F
+NiXsJSoPGdATnauO82G3nofgvonN7IPCzsHaJCIu9dv9PMqGhy5B7B4PVX+8U/mT
+axrLnLh20BsvsUmTufdyCQtALLG7UDrSQt/6BIOm8XaGPvy3dCQ33CUJw+2hvGAW
+rIZjLOFVxKYttm/mISHb90hEvMo3yOHhpQXSqWtyJqpuNlNqoaY8C8cDnnu4Kqhn
+PrraovuhRu/m+L7Vl2Am6pjpX5TGSo/n/t1VsnhLCLbPDEVxcuXpyVK5veJ5nwfE
+1NtlIgWDlRdQUbGgThXzPkhCmMB6H1C/gXF1WVQ4nGFaPFjjtFwE1mXklAujn34s
+Pq0+Yvno/n7RLbABs53ijX3qz40oACh3l0T9+ctpbjC7dGQRqQbwjGEhKIGMGyqN
+b3TqJzClqAO9pcnsyvZxdqR7eq+YlfidyNVAgEEbFVgFXmG2WVRe8JSCWvA0/206
+cwyNuRIz6Y4rKaBsC0rHh2zOaqUmSRdV8Sx+wsXn8NdJIHOdSSJ4C5JSzUxeH6Om
+C4dyZQHqpXIm1ZjXSVZ16l9K76K7HCNIoqAt/wPTAuFPov0kV4GIojpUOGJfCrFt
+ugnueRGYcCWmKCmvlTbC
+=zpZT
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-5.2.0-RC3-rev1682753/solr/maven/org/apache/solr/solr-uima/5.2.0/solr-uima-5.2.0.jar.md5
==============================================================================
--- dev/lucene/lucene-solr-5.2.0-RC3-rev1682753/solr/maven/org/apache/solr/solr-uima/5.2.0/solr-uima-5.2.0.jar.md5 (added)
+++ dev/lucene/lucene-solr-5.2.0-RC3-rev1682753/solr/maven/org/apache/solr/solr-uima/5.2.0/solr-uima-5.2.0.jar.md5 Sun May 31 20:35:13 2015
@@ -0,0 +1 @@
+f0270d1c80e5ff5378900395cac2e1bf
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.2.0-RC3-rev1682753/solr/maven/org/apache/solr/solr-uima/5.2.0/solr-uima-5.2.0.jar.sha1
==============================================================================
--- dev/lucene/lucene-solr-5.2.0-RC3-rev1682753/solr/maven/org/apache/solr/solr-uima/5.2.0/solr-uima-5.2.0.jar.sha1 (added)
+++ dev/lucene/lucene-solr-5.2.0-RC3-rev1682753/solr/maven/org/apache/solr/solr-uima/5.2.0/solr-uima-5.2.0.jar.sha1 Sun May 31 20:35:13 2015
@@ -0,0 +1 @@
+68043e76ef4417a64500977e3f6acd57706de252
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.2.0-RC3-rev1682753/solr/maven/org/apache/solr/solr-uima/5.2.0/solr-uima-5.2.0.pom
==============================================================================
--- dev/lucene/lucene-solr-5.2.0-RC3-rev1682753/solr/maven/org/apache/solr/solr-uima/5.2.0/solr-uima-5.2.0.pom (added)
+++ dev/lucene/lucene-solr-5.2.0-RC3-rev1682753/solr/maven/org/apache/solr/solr-uima/5.2.0/solr-uima-5.2.0.pom Sun May 31 20:35:13 2015
@@ -0,0 +1,396 @@
+<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.2.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:svn:${vc-anonymous-base-url}/${module-directory}</connection>
+    <developerConnection>scm:svn:${vc-dev-base-url}/${module-directory}</developerConnection>
+    <url>${vc-browse-base-url}/${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-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.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>it.unimi.dsi</groupId>
+      <artifactId>fastutil</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>javax.servlet</groupId>
+      <artifactId>javax.servlet-api</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>joda-time</groupId>
+      <artifactId>joda-time</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>log4j</groupId>
+      <artifactId>log4j</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>net.agkn</groupId>
+      <artifactId>hll</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.antlr</groupId>
+      <artifactId>antlr-runtime</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>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>
+
+    <dependency>
+      <groupId>org.slf4j</groupId>
+      <artifactId>jcl-over-slf4j</artifactId>
+      <scope>test</scope>
+      <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-5.2.0-RC3-rev1682753/solr/maven/org/apache/solr/solr-uima/5.2.0/solr-uima-5.2.0.pom.asc
==============================================================================
--- dev/lucene/lucene-solr-5.2.0-RC3-rev1682753/solr/maven/org/apache/solr/solr-uima/5.2.0/solr-uima-5.2.0.pom.asc (added)
+++ dev/lucene/lucene-solr-5.2.0-RC3-rev1682753/solr/maven/org/apache/solr/solr-uima/5.2.0/solr-uima-5.2.0.pom.asc Sun May 31 20:35:13 2015
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Comment: GPGTools - https://gpgtools.org
+
+iQIcBAABCgAGBQJVa1FXAAoJEHWAUcyjoTp/bHoP/1JlMrJoDXDfJ0Qv8oyhp/N4
+4ePCiXPp/CLlORFX0LSQtAzgr/UgswtPufJaV40ckAV26hiUM/r3Vr5u22wub5Ju
+me6ksQZRtAwmi8GJc5TZ9u8IV/f62sR+Qb52bJwLBoOJYQwzaOrU0JZMxUYojFSc
+Tmc5kGaPCeKpsDVpVpTc9mC9YPhTBR+cpmIT74XOrMGAP3B3AXf/wpZrZjm+oy4o
+qhahby9ZZZbFxoT8AwVC2cjOeAw1KBuxjdeJ8QdCrmvJbw53D2pePwFITbcL0Pbt
+P3F4m78/AzdDXOEIARHGDwUrvFE5XVfj0OJ0MkuWfw7/C1Nbkltz84yAWDEdPI6p
+f3AVRk8gamOrrND9dEUCUiA9R4myQtOko6dOb5PhUe0JzizoUalIHVsBpL4km4tZ
+CBC2ujNV6C9QE0ESqgToI4ki6J4aHG6xzZZDh5u7vacaQPo/Sj01CwP5oT4ukn9+
+efHFvD2PwTYJo3OWnpoburnRQ0l2Ve5zCJN19yy1DdnHz3haGr6WFfJXFoAozsGY
+NveH7SlYwd567sCEtgAcqIsMsCIXopeH6zBuTwv7GY1U4emKi4KBJLeBLBNgPEKu
+9eUCkoyjsuL08Kwr3fa61q6ok9qqkiwTiRDmAQEiZTPNlClqHuq28tb/bRyNRhKM
+4P0m4ZQHJ2rKXaewbtVe
+=MSyH
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-5.2.0-RC3-rev1682753/solr/maven/org/apache/solr/solr-uima/5.2.0/solr-uima-5.2.0.pom.md5
==============================================================================
--- dev/lucene/lucene-solr-5.2.0-RC3-rev1682753/solr/maven/org/apache/solr/solr-uima/5.2.0/solr-uima-5.2.0.pom.md5 (added)
+++ dev/lucene/lucene-solr-5.2.0-RC3-rev1682753/solr/maven/org/apache/solr/solr-uima/5.2.0/solr-uima-5.2.0.pom.md5 Sun May 31 20:35:13 2015
@@ -0,0 +1 @@
+a1b4f1fbac058456e5bb65e372fdf605
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.2.0-RC3-rev1682753/solr/maven/org/apache/solr/solr-uima/5.2.0/solr-uima-5.2.0.pom.sha1
==============================================================================
--- dev/lucene/lucene-solr-5.2.0-RC3-rev1682753/solr/maven/org/apache/solr/solr-uima/5.2.0/solr-uima-5.2.0.pom.sha1 (added)
+++ dev/lucene/lucene-solr-5.2.0-RC3-rev1682753/solr/maven/org/apache/solr/solr-uima/5.2.0/solr-uima-5.2.0.pom.sha1 Sun May 31 20:35:13 2015
@@ -0,0 +1 @@
+6715f9ebe7024aee5ecd79e83bef25224ef46f89
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.2.0-RC3-rev1682753/solr/maven/org/apache/solr/solr-uima/maven-metadata.xml
==============================================================================
--- dev/lucene/lucene-solr-5.2.0-RC3-rev1682753/solr/maven/org/apache/solr/solr-uima/maven-metadata.xml (added)
+++ dev/lucene/lucene-solr-5.2.0-RC3-rev1682753/solr/maven/org/apache/solr/solr-uima/maven-metadata.xml Sun May 31 20:35:13 2015
@@ -0,0 +1,12 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<metadata>
+  <groupId>org.apache.solr</groupId>
+  <artifactId>solr-uima</artifactId>
+  <version>5.2.0</version>
+  <versioning>
+    <versions>
+      <version>5.2.0</version>
+    </versions>
+    <lastUpdated>20150531182140</lastUpdated>
+  </versioning>
+</metadata>

Propchange: dev/lucene/lucene-solr-5.2.0-RC3-rev1682753/solr/maven/org/apache/solr/solr-uima/maven-metadata.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Added: dev/lucene/lucene-solr-5.2.0-RC3-rev1682753/solr/maven/org/apache/solr/solr-uima/maven-metadata.xml.md5
==============================================================================
--- dev/lucene/lucene-solr-5.2.0-RC3-rev1682753/solr/maven/org/apache/solr/solr-uima/maven-metadata.xml.md5 (added)
+++ dev/lucene/lucene-solr-5.2.0-RC3-rev1682753/solr/maven/org/apache/solr/solr-uima/maven-metadata.xml.md5 Sun May 31 20:35:13 2015
@@ -0,0 +1 @@
+66d46ca403c7abe995da23ffcf89e540
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.2.0-RC3-rev1682753/solr/maven/org/apache/solr/solr-uima/maven-metadata.xml.sha1
==============================================================================
--- dev/lucene/lucene-solr-5.2.0-RC3-rev1682753/solr/maven/org/apache/solr/solr-uima/maven-metadata.xml.sha1 (added)
+++ dev/lucene/lucene-solr-5.2.0-RC3-rev1682753/solr/maven/org/apache/solr/solr-uima/maven-metadata.xml.sha1 Sun May 31 20:35:13 2015
@@ -0,0 +1 @@
+493b0ec0a1bae874afaa74aa033850c111357e53
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.2.0-RC3-rev1682753/solr/maven/org/apache/solr/solr-velocity/5.2.0/solr-velocity-5.2.0-javadoc.jar
==============================================================================
Binary file - no diff available.

Propchange: dev/lucene/lucene-solr-5.2.0-RC3-rev1682753/solr/maven/org/apache/solr/solr-velocity/5.2.0/solr-velocity-5.2.0-javadoc.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: dev/lucene/lucene-solr-5.2.0-RC3-rev1682753/solr/maven/org/apache/solr/solr-velocity/5.2.0/solr-velocity-5.2.0-javadoc.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-5.2.0-RC3-rev1682753/solr/maven/org/apache/solr/solr-velocity/5.2.0/solr-velocity-5.2.0-javadoc.jar.asc (added)
+++ dev/lucene/lucene-solr-5.2.0-RC3-rev1682753/solr/maven/org/apache/solr/solr-velocity/5.2.0/solr-velocity-5.2.0-javadoc.jar.asc Sun May 31 20:35:13 2015
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Comment: GPGTools - https://gpgtools.org
+
+iQIcBAABCgAGBQJVa1FYAAoJEHWAUcyjoTp/1lwP/3ShBXaQAPlUpgEroBBLu50P
+/x3o8g1/s5IQ45SYkdZMWrevHWBybtJe7NCPZmMw5UAQvls6f/BjINjLjPEpkhdU
+XFqj6e5eJGafvANznC5G1KCeo9vhXiItA3uNI/dByQBfEZ/9lXlVoUG6RLpt7Yzo
+b3D12+7xBPmQTSeSR5lFHRf0541i4qWc3cJhfjJ2FtwgX7m6bkr743kGkFyxwIs0
+d2POR5ofMD+W9PHKElr/q41FJQUFyRuFQANlkD3U2MIOpm8Q7AYKzAuSBrPkS0JP
++k5ODEY3LaIquLj+b4FI92Ts8VL+Txxytm8ZIzXEaAQk4N6K2dGHalBgvaHrVKuu
+TByHGEfdnNN0SSSDCdDL7CzYIL509ZVJ2YO70LWWMofe11PJXuFJBbZh1SBfoNNS
+ac0szBwQRaWwg+DXe1LKKaS1I7mZymgl/wWqDMy/QDEg9OnhXozyhOjNinclecVf
+Moq/dhaHEkSW06VznMgyfyaO6Hr5o834QrGuOg/w7WeM9RAzXORLOh9jjAxBWPGc
+aMCC28OgzEm2Hgz0HczrX6rzm4xM3uJCBvdOTAQ/SSeaUcdZ3MIWVgPgAkyjRjlN
+4KWOrH+bUFYUU+6ypASppU5ZQe+5MLhqmu5OLy0+ZLKIq4lI6prHUKV0MhvtJTr7
+bR/SdrvNx6gcsmtxAuSP
+=Unfi
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-5.2.0-RC3-rev1682753/solr/maven/org/apache/solr/solr-velocity/5.2.0/solr-velocity-5.2.0-javadoc.jar.md5
==============================================================================
--- dev/lucene/lucene-solr-5.2.0-RC3-rev1682753/solr/maven/org/apache/solr/solr-velocity/5.2.0/solr-velocity-5.2.0-javadoc.jar.md5 (added)
+++ dev/lucene/lucene-solr-5.2.0-RC3-rev1682753/solr/maven/org/apache/solr/solr-velocity/5.2.0/solr-velocity-5.2.0-javadoc.jar.md5 Sun May 31 20:35:13 2015
@@ -0,0 +1 @@
+bb6468cbbeeb711038c643ede44550c7
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.2.0-RC3-rev1682753/solr/maven/org/apache/solr/solr-velocity/5.2.0/solr-velocity-5.2.0-javadoc.jar.sha1
==============================================================================
--- dev/lucene/lucene-solr-5.2.0-RC3-rev1682753/solr/maven/org/apache/solr/solr-velocity/5.2.0/solr-velocity-5.2.0-javadoc.jar.sha1 (added)
+++ dev/lucene/lucene-solr-5.2.0-RC3-rev1682753/solr/maven/org/apache/solr/solr-velocity/5.2.0/solr-velocity-5.2.0-javadoc.jar.sha1 Sun May 31 20:35:13 2015
@@ -0,0 +1 @@
+d649803dd740bac4263416e16106cccfa1b2fa6f
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.2.0-RC3-rev1682753/solr/maven/org/apache/solr/solr-velocity/5.2.0/solr-velocity-5.2.0-sources.jar
==============================================================================
Binary file - no diff available.

Propchange: dev/lucene/lucene-solr-5.2.0-RC3-rev1682753/solr/maven/org/apache/solr/solr-velocity/5.2.0/solr-velocity-5.2.0-sources.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream