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/29 04:54:29 UTC

svn commit: r9162 [20/21] - in /dev/lucene/lucene-solr-5.2.0-RC2-rev1682356: ./ 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-RC2-rev1682356/solr/maven/org/apache/solr/solr-parent/5.2.0/solr-parent-5.2.0.pom
==============================================================================
--- dev/lucene/lucene-solr-5.2.0-RC2-rev1682356/solr/maven/org/apache/solr/solr-parent/5.2.0/solr-parent-5.2.0.pom (added)
+++ dev/lucene/lucene-solr-5.2.0-RC2-rev1682356/solr/maven/org/apache/solr/solr-parent/5.2.0/solr-parent-5.2.0.pom Fri May 29 02:54:27 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-RC2-rev1682356/solr/maven/org/apache/solr/solr-parent/5.2.0/solr-parent-5.2.0.pom.asc
==============================================================================
--- dev/lucene/lucene-solr-5.2.0-RC2-rev1682356/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-RC2-rev1682356/solr/maven/org/apache/solr/solr-parent/5.2.0/solr-parent-5.2.0.pom.asc Fri May 29 02:54:27 2015
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Comment: GPGTools - https://gpgtools.org
+
+iQIcBAABCgAGBQJVZ7spAAoJEHWAUcyjoTp/h0MQALS2Sz0T4jqrV1ijDX767+gY
+CPRHzr07ZJrEv8Ec7/lB2YafqDSR3TuXD5Ufqi/xHSzONFIG6Nr8j+BkDBV9C36c
+ANLXyAyMzWPGISpsuE94zvmBsB4A/tndeOZmOxlLalwKJSXVM52bJFUQh1rvSJKV
+GSKdgAn2ZqmJ1B1Xn8olAT0+/JgUIojLgpJHBgpkQLNfyA+QfO9q5qf506IkNfgC
+vzV3WnJAagPBynj5RW2d/XOBQPC1bkNn12FU7j/FLDFZ4rDAIzoe5k8S/lorhj2c
+Rmr4/Bwz2qfqZ4qfrptQ5EkRPZawqpf7/dmddCzKxDRiQRhWfql7DdmQj7DEADnY
+NmbkD3ejW9guZ2iZ1xWOkTCphBdqVTzK1jqUGttLGwVO1J5dpfj5eD2CujnsLoXp
+SH+LRVWtKvQNA29+bR7tcXItKXVxQjlX/rEB46HIcYNPZuqcJzZrxj7+WnlgixPV
+uEz+y2LCyVY05+wuFXbvZUPP7wyYTf//ifxrOEhg3p4Ik+qj+P9CHsd7na1gn0Wz
+8jCXL20MMlzxFn4p/UvirbCAEMrbnxsgIOvzje/ijiA2pFkpCaABUpEd/047cYU4
+C2xIc+gHO2SpVUSRPZQMm+Xz5rBc/JVGGwBK48Lmrr0SVfwtotCOtZCh+F6kQRvm
+YQkZ7Pk6bM7Wam4PdffV
+=lwiq
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-5.2.0-RC2-rev1682356/solr/maven/org/apache/solr/solr-parent/5.2.0/solr-parent-5.2.0.pom.md5
==============================================================================
--- dev/lucene/lucene-solr-5.2.0-RC2-rev1682356/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-RC2-rev1682356/solr/maven/org/apache/solr/solr-parent/5.2.0/solr-parent-5.2.0.pom.md5 Fri May 29 02:54:27 2015
@@ -0,0 +1 @@
+e176897242af70056a4643e38c4b28f5
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.2.0-RC2-rev1682356/solr/maven/org/apache/solr/solr-parent/5.2.0/solr-parent-5.2.0.pom.sha1
==============================================================================
--- dev/lucene/lucene-solr-5.2.0-RC2-rev1682356/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-RC2-rev1682356/solr/maven/org/apache/solr/solr-parent/5.2.0/solr-parent-5.2.0.pom.sha1 Fri May 29 02:54:27 2015
@@ -0,0 +1 @@
+dca983b37d503be17520693c26c8469c96f8b55d
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.2.0-RC2-rev1682356/solr/maven/org/apache/solr/solr-parent/maven-metadata.xml
==============================================================================
--- dev/lucene/lucene-solr-5.2.0-RC2-rev1682356/solr/maven/org/apache/solr/solr-parent/maven-metadata.xml (added)
+++ dev/lucene/lucene-solr-5.2.0-RC2-rev1682356/solr/maven/org/apache/solr/solr-parent/maven-metadata.xml Fri May 29 02:54:27 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>20150529010331</lastUpdated>
+  </versioning>
+</metadata>

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

Added: dev/lucene/lucene-solr-5.2.0-RC2-rev1682356/solr/maven/org/apache/solr/solr-parent/maven-metadata.xml.md5
==============================================================================
--- dev/lucene/lucene-solr-5.2.0-RC2-rev1682356/solr/maven/org/apache/solr/solr-parent/maven-metadata.xml.md5 (added)
+++ dev/lucene/lucene-solr-5.2.0-RC2-rev1682356/solr/maven/org/apache/solr/solr-parent/maven-metadata.xml.md5 Fri May 29 02:54:27 2015
@@ -0,0 +1 @@
+7049312c87563678c6f08565999b4bfa
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.2.0-RC2-rev1682356/solr/maven/org/apache/solr/solr-parent/maven-metadata.xml.sha1
==============================================================================
--- dev/lucene/lucene-solr-5.2.0-RC2-rev1682356/solr/maven/org/apache/solr/solr-parent/maven-metadata.xml.sha1 (added)
+++ dev/lucene/lucene-solr-5.2.0-RC2-rev1682356/solr/maven/org/apache/solr/solr-parent/maven-metadata.xml.sha1 Fri May 29 02:54:27 2015
@@ -0,0 +1 @@
+3d46509a48f86db93099712a3ff01a3b738ca326
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.2.0-RC2-rev1682356/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-RC2-rev1682356/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-RC2-rev1682356/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-RC2-rev1682356/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-RC2-rev1682356/solr/maven/org/apache/solr/solr-solrj/5.2.0/solr-solrj-5.2.0-javadoc.jar.asc Fri May 29 02:54:27 2015
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Comment: GPGTools - https://gpgtools.org
+
+iQIcBAABCgAGBQJVZ7spAAoJEHWAUcyjoTp/0rkP/3rdgWt9M9pLUu4XOCx+fHiL
+u6TEoVWkwnCWXFtYLZp5DsA0CQxyFIS6UTmbnqHsaudbQMTPtRsf8BujB7y/U+9x
+dKJIrhOQNsDbMxtSrEIYgVTqAa5uzSvpgb8ZDWEYZ98cqX7psc+HnMJYngyfBuT4
+E2ZHiN77m5lMvxHcfcWYaXCWu4moCBQMSugh+Zw4IUXkV8y5f+yIzzTf925VMWvM
+twke5BjR5OD1LQyH7r1trlkrbF1N9Ytmc/+MR2H8XeXwhISfpHig5QUNldRiw/+G
+pdsCDvCilwU+UNeQEKTZqsXgEfoH0yh4uuyLaCkvOCQkFD9NU7vOhrOB4d/Dxt4J
+G9X9WmmxW1e7zRuBmyPyQqsXzpqv3+oO9HVTLjaSzOvtHjGhAFFd9Rx9EUeO4PUp
+Uk3jRkWXHCb7IDLvycO/xKs2/0dNstmvafDJI0EH3PoRo+cxUiyYS1GDIDMfeep2
+OzmXMDZzbPbBlHj3smljs7r2DeoQmcQ30ETgmiKrFb4OQ6MSnymXPoI2m9uig669
+4Q8/dH4rmLoLDrDjotQE0nBMcptyJCubcJt4BY3GoSZGAAxGCqqinCEFyg4G6g2s
+tyt42qLstHuWDXjG7WXBsiFVQA8Bl4eKeAuZ8HL8vwEu6jPOlU8yqtofHs6Shn/C
+YZog0azv7te46hN/JWXY
+=aQNT
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-5.2.0-RC2-rev1682356/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-RC2-rev1682356/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-RC2-rev1682356/solr/maven/org/apache/solr/solr-solrj/5.2.0/solr-solrj-5.2.0-javadoc.jar.md5 Fri May 29 02:54:27 2015
@@ -0,0 +1 @@
+f64f49ee518b4112a03734aeef04aab5
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.2.0-RC2-rev1682356/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-RC2-rev1682356/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-RC2-rev1682356/solr/maven/org/apache/solr/solr-solrj/5.2.0/solr-solrj-5.2.0-javadoc.jar.sha1 Fri May 29 02:54:27 2015
@@ -0,0 +1 @@
+a2b38f5051ab5dda15a5bdd4e019630337055824
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.2.0-RC2-rev1682356/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-RC2-rev1682356/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-RC2-rev1682356/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-RC2-rev1682356/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-RC2-rev1682356/solr/maven/org/apache/solr/solr-solrj/5.2.0/solr-solrj-5.2.0-sources.jar.asc Fri May 29 02:54:27 2015
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Comment: GPGTools - https://gpgtools.org
+
+iQIcBAABCgAGBQJVZ7sqAAoJEHWAUcyjoTp/KEgQAJgkq8AZnOObg6UaYA1Dw+de
+9ouLk1i/55IvwiDmH7ZDcgB+qX5A7nPqii2rJzfDciiIkSdskemMnMNcgBVF0Ebt
+u1nn6YYnm4lu5FiKrRtKsS9H6z+wXHLUfTNXBWgBscD2JlyqrV61qW56WTxiRETh
+sJ4JwKQ8CLd24DqDOzzPqORgTSaS1VBwUmlu5+DXVc26C5CzDKaKOEL1DVNmrhXB
+i/ADzvYAEI5WCi/JeItjG4nG9ySgOo7hFDK2jfJC3o9vxBRr/e0pcThK4jWXXtRA
+KTWt59Db3A+qBcd9ejUC7PI6akctlGOiru4+5E6ulJAFc5MYVQpYxfNfquYAUFKz
+X/DeWFddTmIICHOmtTxqbt3dp0olTSBH/b9VGe7i5eucZahhxHJH4+rOGLebC236
+SBkX7fiX2JVNTW6h3BQPrFSLj7ZkW9K/w0FaVtWYoySzqbNmEE0CPBTUFDWQ0Iim
+u23WffVXHa2ycjRNIaw79GmU7n11lV2Svws6oi9UUOERnJklEZIAKDrjO552aNOD
+xw78E9hzekdS0ualRp9b5pynfktsdipSW/Q9jHfPa4r9d+q8YiOly85SvC+BkNuM
+nqcuj9nS4QrvkXZd5IIWssGPW2/GXwUw4Ke1X2CWRk+ZWSTKQPNY5BlCf9T3Mn+U
+1If7/pxEcaTPm2eRWBQQ
+=7SGY
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-5.2.0-RC2-rev1682356/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-RC2-rev1682356/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-RC2-rev1682356/solr/maven/org/apache/solr/solr-solrj/5.2.0/solr-solrj-5.2.0-sources.jar.md5 Fri May 29 02:54:27 2015
@@ -0,0 +1 @@
+88f6a6b3bdddc04af740d44b64564ef8
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.2.0-RC2-rev1682356/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-RC2-rev1682356/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-RC2-rev1682356/solr/maven/org/apache/solr/solr-solrj/5.2.0/solr-solrj-5.2.0-sources.jar.sha1 Fri May 29 02:54:27 2015
@@ -0,0 +1 @@
+ecfedb6ec878f4273b88e70e64eec0d543c27eda
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.2.0-RC2-rev1682356/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-RC2-rev1682356/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-RC2-rev1682356/solr/maven/org/apache/solr/solr-solrj/5.2.0/solr-solrj-5.2.0.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-5.2.0-RC2-rev1682356/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-RC2-rev1682356/solr/maven/org/apache/solr/solr-solrj/5.2.0/solr-solrj-5.2.0.jar.asc Fri May 29 02:54:27 2015
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Comment: GPGTools - https://gpgtools.org
+
+iQIcBAABCgAGBQJVZ7sqAAoJEHWAUcyjoTp/Jz8P/jsR5H7W/e8KYfA/dYBS9yxu
+ohQuFeCSoeBG7opap8m4U0+AQJnYz6U11FPl7JCJ6v57MY1Nxtn13BOd7YZkzZV+
+iUpVb2HdlmSAwXEikGgKDgbkkr9b2E0g2q1dAfiyoILDw3THdfF0CAs0iQY/wlN7
+mZcddrPOh3BsMcXfo8JPMdsZu/X23YThJaYf8Poxo5XcENtAi2pA/0VePxtDan0a
+wsXZJMoK463ci8p23tLIi9dzvWQcKNceo5YSgMc1NwZjA/Ndp4uzQK3IT2jUligA
+cKBF02g5uiOL8DESpWL7kWYiUdnFxgI6M7JicM/bOpUioGVPW7llUI2ZbglkS+/y
+sD2t8bY2qzicAF1clMuGS4HiKCJvjIZcZH2bzxggDxr3ayoMObvVXN1EReUlSYmp
+QTKvYchG44f4E6ayYCn1IYoRcaLTBXwb7UWFVsMmqqS68I183aNO5MjOsfUlyseg
+eXby+Ja2OznWh5mE62M7a/VScY2yp5WHn0dIzqcxt3SEv56ja+XtsN+N3ROJF/w/
+rSv5/w97QJrdXJyCoI8OeM7ppQeCWkFkBUDSWPM6Q3Mh/3SysI0TwJiR3w9LultO
+3ieI3dbqjI3OVUvdwE6rOjIGwBi7tNqhmA+h/DUHdhqhdxBdEK4NN4J/ciNSmY3r
+jBBt1CmOuZVVdDo6rkMn
+=aoEG
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-5.2.0-RC2-rev1682356/solr/maven/org/apache/solr/solr-solrj/5.2.0/solr-solrj-5.2.0.jar.md5
==============================================================================
--- dev/lucene/lucene-solr-5.2.0-RC2-rev1682356/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-RC2-rev1682356/solr/maven/org/apache/solr/solr-solrj/5.2.0/solr-solrj-5.2.0.jar.md5 Fri May 29 02:54:27 2015
@@ -0,0 +1 @@
+321f4d9a73715d990fcfd2865fc7050f
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.2.0-RC2-rev1682356/solr/maven/org/apache/solr/solr-solrj/5.2.0/solr-solrj-5.2.0.jar.sha1
==============================================================================
--- dev/lucene/lucene-solr-5.2.0-RC2-rev1682356/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-RC2-rev1682356/solr/maven/org/apache/solr/solr-solrj/5.2.0/solr-solrj-5.2.0.jar.sha1 Fri May 29 02:54:27 2015
@@ -0,0 +1 @@
+03ff61765c894d7a93046224117291fdec967916
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.2.0-RC2-rev1682356/solr/maven/org/apache/solr/solr-solrj/5.2.0/solr-solrj-5.2.0.pom
==============================================================================
--- dev/lucene/lucene-solr-5.2.0-RC2-rev1682356/solr/maven/org/apache/solr/solr-solrj/5.2.0/solr-solrj-5.2.0.pom (added)
+++ dev/lucene/lucene-solr-5.2.0-RC2-rev1682356/solr/maven/org/apache/solr/solr-solrj/5.2.0/solr-solrj-5.2.0.pom Fri May 29 02:54:27 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-RC2-rev1682356/solr/maven/org/apache/solr/solr-solrj/5.2.0/solr-solrj-5.2.0.pom.asc
==============================================================================
--- dev/lucene/lucene-solr-5.2.0-RC2-rev1682356/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-RC2-rev1682356/solr/maven/org/apache/solr/solr-solrj/5.2.0/solr-solrj-5.2.0.pom.asc Fri May 29 02:54:27 2015
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Comment: GPGTools - https://gpgtools.org
+
+iQIcBAABCgAGBQJVZ7srAAoJEHWAUcyjoTp/o1MP/2G9i+LHY+ug098kyX0bFdip
+/KgPwaSHE5J6U99UY3998pBrI9hJWzOg57RoZOWkBFy3Hslqr2SMDDepQgdC8QTF
+LHD/RL5NsEIc01/IyN4cHmjLeDGWuoqkzjgxgfcg67ttlcbdduEiE03Eh42+QQFX
+V5XFzhp6Hwym1Wh0favt2nKw5TRCcrgYSehuO9yTbszjSvj5lfcX8x/4ep9bjlVI
+klS3xPX6CZn9OUperuNajBa7t5x89mdnFZYIVJCGcKe7MndjnGzHo45efg0Nc1+M
+n3VbW9ndQiwpE/pT+8U1HYbXXzLYDG5K8edyDRSZlMhgDNSYRdWwZyb/G+wfbjoD
+3nOw+i5yCEJMH2m1GLRBQWXctCFRN3aG3HTlKXNe4krh2SGLBfkFoKRDfFZNxYtS
+RwoyjwkQAwS+c7s7cM9338QVOYgyUBOFLmEcsoVwGgfFRoO4u87INzvxJ9LYqJLe
+ZiGbDJaBh/EKqQn1VJgyE44nkGOA+ThtbZZV34OkzJ3m7UzNcSaqXdSGdN83FEA2
+Xt0Pem+ZAZlgD0s5GSQCiGFZKj/Wvr/jjUXlWH8RCK4zxEfYyLN0kTt90sHVzxMP
+Ix5k1bqwtpPHRjcyms6cetkZV+5FpRmUehz5oZyRsIeyake+wRn68e3Q2qO3hg68
+zt3rGWsaV4WxWSX7o9d+
+=D7NY
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-5.2.0-RC2-rev1682356/solr/maven/org/apache/solr/solr-solrj/5.2.0/solr-solrj-5.2.0.pom.md5
==============================================================================
--- dev/lucene/lucene-solr-5.2.0-RC2-rev1682356/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-RC2-rev1682356/solr/maven/org/apache/solr/solr-solrj/5.2.0/solr-solrj-5.2.0.pom.md5 Fri May 29 02:54:27 2015
@@ -0,0 +1 @@
+8e05f10bd95a18f072b84b4dcde24bb8
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.2.0-RC2-rev1682356/solr/maven/org/apache/solr/solr-solrj/5.2.0/solr-solrj-5.2.0.pom.sha1
==============================================================================
--- dev/lucene/lucene-solr-5.2.0-RC2-rev1682356/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-RC2-rev1682356/solr/maven/org/apache/solr/solr-solrj/5.2.0/solr-solrj-5.2.0.pom.sha1 Fri May 29 02:54:27 2015
@@ -0,0 +1 @@
+7d6eb531416fea099ec2d371557ded108752ab7f
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.2.0-RC2-rev1682356/solr/maven/org/apache/solr/solr-solrj/maven-metadata.xml
==============================================================================
--- dev/lucene/lucene-solr-5.2.0-RC2-rev1682356/solr/maven/org/apache/solr/solr-solrj/maven-metadata.xml (added)
+++ dev/lucene/lucene-solr-5.2.0-RC2-rev1682356/solr/maven/org/apache/solr/solr-solrj/maven-metadata.xml Fri May 29 02:54:27 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>20150529010334</lastUpdated>
+  </versioning>
+</metadata>

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

Added: dev/lucene/lucene-solr-5.2.0-RC2-rev1682356/solr/maven/org/apache/solr/solr-solrj/maven-metadata.xml.md5
==============================================================================
--- dev/lucene/lucene-solr-5.2.0-RC2-rev1682356/solr/maven/org/apache/solr/solr-solrj/maven-metadata.xml.md5 (added)
+++ dev/lucene/lucene-solr-5.2.0-RC2-rev1682356/solr/maven/org/apache/solr/solr-solrj/maven-metadata.xml.md5 Fri May 29 02:54:27 2015
@@ -0,0 +1 @@
+f539c40bc52e90a8c47c11f56da0344c
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.2.0-RC2-rev1682356/solr/maven/org/apache/solr/solr-solrj/maven-metadata.xml.sha1
==============================================================================
--- dev/lucene/lucene-solr-5.2.0-RC2-rev1682356/solr/maven/org/apache/solr/solr-solrj/maven-metadata.xml.sha1 (added)
+++ dev/lucene/lucene-solr-5.2.0-RC2-rev1682356/solr/maven/org/apache/solr/solr-solrj/maven-metadata.xml.sha1 Fri May 29 02:54:27 2015
@@ -0,0 +1 @@
+76212e5b5e370114a8289c2c318a9f9979f5eb05
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.2.0-RC2-rev1682356/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-RC2-rev1682356/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-RC2-rev1682356/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-RC2-rev1682356/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-RC2-rev1682356/solr/maven/org/apache/solr/solr-test-framework/5.2.0/solr-test-framework-5.2.0-javadoc.jar.asc Fri May 29 02:54:27 2015
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Comment: GPGTools - https://gpgtools.org
+
+iQIcBAABCgAGBQJVZ7srAAoJEHWAUcyjoTp/PREP/1wL99LTs9wk7k+x8pd44rfH
+ReqFzM1jsIT+9oi93gxtoYbd9rI4gjvFK3DB+egCW/kETAQ0hv47PzSNzxihw8zr
+Kqz3NwdKIF2mXcYz2PBNkU6WdCNqFJmBHKPzBsDAHH0Cz2MccMkh3Qo+Faz8iG9H
+LJqkUeGKBxD8UHDJFCTRGDIeVdms6TG6JGkrA/YhVZfOgCXTEy2kZHddrgwTlC+5
+MSojwNp9wEaLN5FPfstW3/dYfAjwoZaiMu7qce07wjuuRC6b4KoSrOWqwhcKZylQ
+t54qdGEfk+zSPKW3uv5zZlW/I9d475H6A21CWdHuBjfdJCJdhZlAwXMc/uQuVoBr
+K5pGczguWsD8RqbJj6CV9drB2ge5hTvZOiZekwKkWD/vX9Fyp8EZ+YjYYn8FZb5G
+e3MZoH67XLmUyqB5SnL0mzsCxMwffYLHsMb3arnPXzKPsbAAbsEBYEEnDvJdWnZx
+FGYQJ29WXl7+CgCQVoWOjxUTNLOsek9NEL/3ncnaKXDpbSoMgh4pzHCS+LsPSVxM
+v8dB0NSFrmtnT+GKrFb5TLZHylpTQjkWkY0H4gngrB5Qo0E/vkQo6beGr0Ov0cDv
+W6vJQwn4ippzzsyk3cMRhycsaEmNO8ojX87YVqWN855JmY44gRKkCNFgfWXCfjRF
+ZmLYYwKslyJBSpJKcVS2
+=iIzb
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-5.2.0-RC2-rev1682356/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-RC2-rev1682356/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-RC2-rev1682356/solr/maven/org/apache/solr/solr-test-framework/5.2.0/solr-test-framework-5.2.0-javadoc.jar.md5 Fri May 29 02:54:27 2015
@@ -0,0 +1 @@
+895c51d873a7fc17e0aa00d9227efd1f
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.2.0-RC2-rev1682356/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-RC2-rev1682356/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-RC2-rev1682356/solr/maven/org/apache/solr/solr-test-framework/5.2.0/solr-test-framework-5.2.0-javadoc.jar.sha1 Fri May 29 02:54:27 2015
@@ -0,0 +1 @@
+91aad5f7000c4d2a2ff757b6e71220f582030419
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.2.0-RC2-rev1682356/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-RC2-rev1682356/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-RC2-rev1682356/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-RC2-rev1682356/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-RC2-rev1682356/solr/maven/org/apache/solr/solr-test-framework/5.2.0/solr-test-framework-5.2.0-sources.jar.asc Fri May 29 02:54:27 2015
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Comment: GPGTools - https://gpgtools.org
+
+iQIcBAABCgAGBQJVZ7ssAAoJEHWAUcyjoTp/TtQP/1raWIHbgvREim9puHSjdXG2
+e3lHPULNPvM0p+3wR/GKACuMICfVzWZ1bu8DKnGHWwhTC+2x2cFkQv8p5qzaJHXy
+aJDi7Ns0Gggti0ahoDY0eZnJjzZcxlfZYyLcVV5V9OBp7BSzz4T/7tahkWVCjDnj
+/7AtOj5rN2EuL/hAAulKIr4j1jcbUjT6eW93/ucvWUdQAYVy3kTepxxAQn79pJVj
+2d2nQtAYbfXGlycaP6MVagWiOm5MSBubrupaiOlcFz7dLgV4xvtFzF69pvqFuLBF
+y+mVoA9KCJ+g2CLaFoMBqGJ/abpRYvYRLDe+WkfWjj2UGUNCrN3ahPDvqM0noycG
+Y0xnNkoyd2fPoq54i9Z/Y6tbnsM2256i0Zhz0igPNusfMVqtI0ACSvbmWQmhoE/f
+lS0/AHiKlDTCqWi1TuOlXxxhFn2UGQEkiHEm0V0GqBnLKgf0fY34NiSUKUz88B/R
+u7Z0F572KzQjZB5htdKHoS09i9K5IDxZ66KLZ6C1+MMZD2afsqdvNg5hx54uKbqH
+zghtcorjqc+xdfK1UCKO2qgee6rQMWaK/S0upZegNNu6JutmwYkkPjdVOjSXwFs1
+KBWWiuvGVwVjhDrL2ssVVBe7NYW4chVYLRe2NFUuP56mrSmQMJbJldJsqcIC/tcP
+T+LBpigM3V4Ql5mEuKur
+=1FJ0
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-5.2.0-RC2-rev1682356/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-RC2-rev1682356/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-RC2-rev1682356/solr/maven/org/apache/solr/solr-test-framework/5.2.0/solr-test-framework-5.2.0-sources.jar.md5 Fri May 29 02:54:27 2015
@@ -0,0 +1 @@
+387a370ea0d22ac6a521e89f5cc1924b
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.2.0-RC2-rev1682356/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-RC2-rev1682356/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-RC2-rev1682356/solr/maven/org/apache/solr/solr-test-framework/5.2.0/solr-test-framework-5.2.0-sources.jar.sha1 Fri May 29 02:54:27 2015
@@ -0,0 +1 @@
+b6888c86537036da89c9c4405793f9be17d45d70
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.2.0-RC2-rev1682356/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-RC2-rev1682356/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-RC2-rev1682356/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-RC2-rev1682356/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-RC2-rev1682356/solr/maven/org/apache/solr/solr-test-framework/5.2.0/solr-test-framework-5.2.0.jar.asc Fri May 29 02:54:27 2015
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Comment: GPGTools - https://gpgtools.org
+
+iQIcBAABCgAGBQJVZ7stAAoJEHWAUcyjoTp/e1sP+wYP3BXdeggFKnz9XeNOaQ8d
+fkTjDTcp1vTR5Fv0ZIDwqkGHAHu92DDdDiwJSCTw+KT3AOPEkWedbRb1iD7ci1pO
+EeGoFmNMMpP2sy9LfnzQpAhfT5gfmckwAFWppPhnZeft4+ySFN464CLlsCbrADY9
+dDRlMQoYCP/iohA/9zbRFzrRoYZhbAJNDhofB4AEnOKMWMSXH5PqE6Rn2wXu8l45
+PpyIlnM0MzpniPkVrb9jAoPzOqRzQ1CM1YBtkLD8XS0TWdhj2+d83FUtJQVSs2Ws
+1n7VQ7nYSRrWLowfsu9a3/t2N05YsHfXjoUzbGZSGgV8ykonX2cx4xJFt+7bYx8A
+UpG5xJd2z8UEh4C9trBO0FdkgUgZprPtAiYC6680gnrkbHTJKj9lsCfw59wlIn4K
+xXFc/LSwTjbz2K3fy9ieqSZlZqoYwYAg6UkdGZLf/Omfn5JoaF4cV2iYo+EzvXDR
+yf9Jit8cHHLpB1p3n1r4aNi9eE2IHh4mmg8rK/Hn03/0KQyTwVZ5MQW7VTnBf0vw
+/tbzGHeobSzo+N/3Vngg0xE85bZ3opi94Aiwb7QE7hloIxfikwRp03lwri1LqdXW
+KtljCrbamyhMQONX6oocrfD2DirXBwzYoFiGGy0HS2H5CMkq0bU3rfvGMpd2Sn5B
+fpcFzYSq5AYPrLlV7QCE
+=0SF7
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-5.2.0-RC2-rev1682356/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-RC2-rev1682356/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-RC2-rev1682356/solr/maven/org/apache/solr/solr-test-framework/5.2.0/solr-test-framework-5.2.0.jar.md5 Fri May 29 02:54:27 2015
@@ -0,0 +1 @@
+1f29a45a73ff49a2da01264c5074918f
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.2.0-RC2-rev1682356/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-RC2-rev1682356/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-RC2-rev1682356/solr/maven/org/apache/solr/solr-test-framework/5.2.0/solr-test-framework-5.2.0.jar.sha1 Fri May 29 02:54:27 2015
@@ -0,0 +1 @@
+afa9e41114562c693ae69fff814835bb6ec8d477
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.2.0-RC2-rev1682356/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-RC2-rev1682356/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-RC2-rev1682356/solr/maven/org/apache/solr/solr-test-framework/5.2.0/solr-test-framework-5.2.0.pom Fri May 29 02:54:27 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-RC2-rev1682356/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-RC2-rev1682356/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-RC2-rev1682356/solr/maven/org/apache/solr/solr-test-framework/5.2.0/solr-test-framework-5.2.0.pom.asc Fri May 29 02:54:27 2015
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Comment: GPGTools - https://gpgtools.org
+
+iQIcBAABCgAGBQJVZ7stAAoJEHWAUcyjoTp/uOgP/2BMZaPXoLdBkzT/83AoCEou
+FZz6qhNhcWFrBgu7yQNlNL5IqIXmJ6B+fF7Nrue+HTqBei1J4bf9WdMV2wjdMTOT
+cVlj1bHCJ2i2wE6fHthjepMTnF/SczEABpXyMrYxuyqB6ZUUVEtT0FrGILIJCGGP
+bWlbHXkO6iyUQ94CltOIiMDOt+BXq5nqc66Vn2Jde0SIwm4koAeTYZt5/cpCuk7v
+YqcwgABDFH2Fe8zCzqqVpUj1rbUC5dmneBRyK8wmkqDYHFQod2iKw8fEf/4t+vom
+nWf0vHoFWcQtO5DNYmuNx5XOoCQze/0rAENW4FgqGGO7UaKfVlzmiUNUpCHdXrW7
+ZEyjB9PVK3Dv8P7sS+1svDZfwjI/sTTcBxITVUUqpFPIv7eRdA0dMMUYh0lQDmFp
+cBg8W6xeq7wwA20LGtSJTuiiyuXLP6OGYjeNCk3H48yL+ihXP0sqC8BkoWj4HX1H
+d25yiP2WdksXPOM/ukkBjVCGW2rVcoROz3rCZvdGVuILB1Q4rNEc09HZc5dQLNHI
+jafo7+hTrWYBaH6ZjQInKQDPXyGqfoVwkwn+X9yuqF3ItoDDILj8R0OKR+dHtf3s
++OcvaAA1KlTcquvA+ssJVmF0arTypBHOwm/sXbvxP2AZe6TXJJJrghgQ5c6WIefN
+46j4odBliJQKOQdYi4Ln
+=AiTs
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-5.2.0-RC2-rev1682356/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-RC2-rev1682356/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-RC2-rev1682356/solr/maven/org/apache/solr/solr-test-framework/5.2.0/solr-test-framework-5.2.0.pom.md5 Fri May 29 02:54:27 2015
@@ -0,0 +1 @@
+ee3b55a52aa906140d13d9827d09876e
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.2.0-RC2-rev1682356/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-RC2-rev1682356/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-RC2-rev1682356/solr/maven/org/apache/solr/solr-test-framework/5.2.0/solr-test-framework-5.2.0.pom.sha1 Fri May 29 02:54:27 2015
@@ -0,0 +1 @@
+230bcafbcefc26782f2c6cbe29c6837abd23cb47
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.2.0-RC2-rev1682356/solr/maven/org/apache/solr/solr-test-framework/maven-metadata.xml
==============================================================================
--- dev/lucene/lucene-solr-5.2.0-RC2-rev1682356/solr/maven/org/apache/solr/solr-test-framework/maven-metadata.xml (added)
+++ dev/lucene/lucene-solr-5.2.0-RC2-rev1682356/solr/maven/org/apache/solr/solr-test-framework/maven-metadata.xml Fri May 29 02:54:27 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>20150529010336</lastUpdated>
+  </versioning>
+</metadata>

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

Added: dev/lucene/lucene-solr-5.2.0-RC2-rev1682356/solr/maven/org/apache/solr/solr-test-framework/maven-metadata.xml.md5
==============================================================================
--- dev/lucene/lucene-solr-5.2.0-RC2-rev1682356/solr/maven/org/apache/solr/solr-test-framework/maven-metadata.xml.md5 (added)
+++ dev/lucene/lucene-solr-5.2.0-RC2-rev1682356/solr/maven/org/apache/solr/solr-test-framework/maven-metadata.xml.md5 Fri May 29 02:54:27 2015
@@ -0,0 +1 @@
+dbb60a1d4c86a580c9f90703762b4723
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.2.0-RC2-rev1682356/solr/maven/org/apache/solr/solr-test-framework/maven-metadata.xml.sha1
==============================================================================
--- dev/lucene/lucene-solr-5.2.0-RC2-rev1682356/solr/maven/org/apache/solr/solr-test-framework/maven-metadata.xml.sha1 (added)
+++ dev/lucene/lucene-solr-5.2.0-RC2-rev1682356/solr/maven/org/apache/solr/solr-test-framework/maven-metadata.xml.sha1 Fri May 29 02:54:27 2015
@@ -0,0 +1 @@
+139dbc92b597d4a525aab7fc3983dceaa2790b04
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.2.0-RC2-rev1682356/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-RC2-rev1682356/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-RC2-rev1682356/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-RC2-rev1682356/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-RC2-rev1682356/solr/maven/org/apache/solr/solr-uima/5.2.0/solr-uima-5.2.0-javadoc.jar.asc Fri May 29 02:54:27 2015
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Comment: GPGTools - https://gpgtools.org
+
+iQIcBAABCgAGBQJVZ7suAAoJEHWAUcyjoTp/SiEP/AzVGhjvtxqcFwRG9RI9V/gg
+07fj3qAgEzZaD9mSBTbElLF5NW98B3Y6xGtg7A63m6uALCI81QhdEEchnc0D/WYJ
+vXVHe7YZu8XXyJZS129KwloJI81g5c2U/moliUmLOewTpKPrxk8AbKn0w6dohsbe
+Xs9fFI3wi4isA89tI+O29Iayt9Blb+GmRgEC/yfbPRWmzEZDxMCxrJraTJ37w94T
+BtG+uC9EC2a8E2MuBwjmoDIZsxK0wlVaIpJ2VfsduuXsuYjHYReDufnmhi9AcLYm
+4gVH3cFam4QKvGIb5dg5GMA081pNUVVhkKRDiDVgGbLq7ICeA06w97RouPFXAQjL
+hwKezqAZ7WenQU0C0vfmjZbG45GFqY6y46XLBbkdEa/TY96xqM7vWdgsc/k4qK5e
+bhMsvFe4PEGSDWIFxSR6F4yZbz0KzEFSKVxA/+UjbQB2NJ7WdyuojGue0ArHlDKr
+nou8hVUfjEaC9BUvMU9h/1wQSDYtIm88dBSm8q9f36EkFYvgBpTwWmaf3i4BFn2O
+AaNNewJUhOwGIlPXJofDrcibOzNrb22FlBXQ0/hTj1N0+dRxCFsOgxoK2wA8hSJK
+jsIIwLmyOpm21Fsunbkwjoq9dBSlw1c2vgiMiOJwXk04GvRz7Wurvwdd9Ub//LAN
+KbaIfrkNtXh7kcykj6Gw
+=5m1p
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-5.2.0-RC2-rev1682356/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-RC2-rev1682356/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-RC2-rev1682356/solr/maven/org/apache/solr/solr-uima/5.2.0/solr-uima-5.2.0-javadoc.jar.md5 Fri May 29 02:54:27 2015
@@ -0,0 +1 @@
+760d99e63a01a4b90c0a346a42b1bdcd
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.2.0-RC2-rev1682356/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-RC2-rev1682356/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-RC2-rev1682356/solr/maven/org/apache/solr/solr-uima/5.2.0/solr-uima-5.2.0-javadoc.jar.sha1 Fri May 29 02:54:27 2015
@@ -0,0 +1 @@
+d047a766527a441052a7fed4fc22ddbc90e94aed
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.2.0-RC2-rev1682356/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-RC2-rev1682356/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-RC2-rev1682356/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-RC2-rev1682356/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-RC2-rev1682356/solr/maven/org/apache/solr/solr-uima/5.2.0/solr-uima-5.2.0-sources.jar.asc Fri May 29 02:54:27 2015
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Comment: GPGTools - https://gpgtools.org
+
+iQIcBAABCgAGBQJVZ7suAAoJEHWAUcyjoTp/ODIQAMd84ivyGbUt+RNv1UZYWGFG
+7IuZ623q1YInT8kjaXqtIczWhUP/Ag3grghPNoT+W8kZdxSl9Q4WNSfMcyWZ2EbP
+mqTiv5qIpfkEWaDrORIXGg0HXk7yuZc4KAT6vo1QxsJb0OjCdj9MK59P/w9CpF/U
+X8oQ8BsYTv7jX0eVnUAP61Z7i/GBcjGkV0vI1OZqWbr8de9bkdotWEb785Yq+hXb
+gCdupgpbvC6xuahUJDx90g35d6kAFDwPKitPHQ9oW+hnEftt7RhFNQ9LIe1CeKXO
+1WDbOQVVhS5nNxFGtvJVHZ6IsXHYoI1nGsADiQrehLfHNMQDS5tZyn5Fomo8FpK7
+ahWoMh0LKF7lvytOnjqYUcSL0FN7dAJtc79BfWqaWfZvI6U7F7X0rwwf8erckjxE
+Q2dUvFXtlGB+LoDYoITnEgQdshunTk2weNJgK1nFX7ks/ntNF8kUHvQGpVRsAol2
+QPdWYQfmViI/i/rzMGNDAQYnTF98Ip5s7qMbMzGPYfLS+EdJDSVInh+rGlq6dhT1
+cnaE2mmFullLNpUh8Vj5JB6ijTYdYB3N43UTcvEuhB6Yu2tvDofsTadxh9bqaMGf
+DfMmgQCrNLcgt2o9axs1zawPshmD7jwC4RaL5na5HMe8hcfA3+fK8uCJLX4RhJae
+Gv0+MFAuzcdISufyo7Rj
+=s+mW
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-5.2.0-RC2-rev1682356/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-RC2-rev1682356/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-RC2-rev1682356/solr/maven/org/apache/solr/solr-uima/5.2.0/solr-uima-5.2.0-sources.jar.md5 Fri May 29 02:54:27 2015
@@ -0,0 +1 @@
+0a4f8c4956b686e9ec98f74f4e7010e4
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.2.0-RC2-rev1682356/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-RC2-rev1682356/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-RC2-rev1682356/solr/maven/org/apache/solr/solr-uima/5.2.0/solr-uima-5.2.0-sources.jar.sha1 Fri May 29 02:54:27 2015
@@ -0,0 +1 @@
+250698840d7aeb2c0ef0a17842686f8041be5896
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.2.0-RC2-rev1682356/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-RC2-rev1682356/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-RC2-rev1682356/solr/maven/org/apache/solr/solr-uima/5.2.0/solr-uima-5.2.0.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-5.2.0-RC2-rev1682356/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-RC2-rev1682356/solr/maven/org/apache/solr/solr-uima/5.2.0/solr-uima-5.2.0.jar.asc Fri May 29 02:54:27 2015
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Comment: GPGTools - https://gpgtools.org
+
+iQIcBAABCgAGBQJVZ7svAAoJEHWAUcyjoTp/IAAP/RNW3ZXcXmKvDtDQ1ND8XNVu
+/Rv0woQK3ZZ8Y8No6RGVNHtVxrk6fWPRCcDEx8+Ja74/DCSQx/Cxy3X9H+VGdm2d
+hJWVjrxasg+LGuxfzY9IqRTU0MCRyCS0bew3suxleuE+IosNro7d4995E+QzpPj7
+CXjAKyirPZ0083N8j3YVDXJ64k8LRMSaYIM+3pZYqQwrLQRc16kZEb1CNj/J2ofB
+OkNi6u1NGU5zZbBn39G5klbLjDGd8wzdcBo2HfUM7C/Z0qcFw+dZWbAZJq7UO3vO
+jbw8LVIocNETbkR3R6I6hciXAlXT8RtCR2HPHLuL0zCG8DFDJKPNGlG0FDrW7Tof
+HhlPz9BuseKDyPLRYDNCeJZoR5ROpZpjA0isUcIhyqpj8mLAZ51UyryNIuLRlnYV
+8qU/5/MWRcL+C2i8leNMFz5RoNvnG3BxuexNn4JOADOYjedJVtR6YLp3WjvKx7cX
+d8TTrvwTAG6PCQQoZ/zVE7v6DnDQkt6trYEkLAifGsuWIrP1B+Pa9LI9uitanNAP
+J8dSCE8rmf7vT5N7c2nNId+YpR1CI6i5+sBv3S9dLiJBqJllk54CrejJp79T7rUe
+cCfmcDXBynshOxOP88tvxKc7KFwBCbTO2IHXqv39Nhm6usem9Ir34CmVu5kclnne
+MsdUzqDt0LH4tuKl4otm
+=w/zm
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-5.2.0-RC2-rev1682356/solr/maven/org/apache/solr/solr-uima/5.2.0/solr-uima-5.2.0.jar.md5
==============================================================================
--- dev/lucene/lucene-solr-5.2.0-RC2-rev1682356/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-RC2-rev1682356/solr/maven/org/apache/solr/solr-uima/5.2.0/solr-uima-5.2.0.jar.md5 Fri May 29 02:54:27 2015
@@ -0,0 +1 @@
+643454dc445f813b1330830b3e4aeccb
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.2.0-RC2-rev1682356/solr/maven/org/apache/solr/solr-uima/5.2.0/solr-uima-5.2.0.jar.sha1
==============================================================================
--- dev/lucene/lucene-solr-5.2.0-RC2-rev1682356/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-RC2-rev1682356/solr/maven/org/apache/solr/solr-uima/5.2.0/solr-uima-5.2.0.jar.sha1 Fri May 29 02:54:27 2015
@@ -0,0 +1 @@
+d77a5b25f97874a25790878656ca54fdc5da814c
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.2.0-RC2-rev1682356/solr/maven/org/apache/solr/solr-uima/5.2.0/solr-uima-5.2.0.pom
==============================================================================
--- dev/lucene/lucene-solr-5.2.0-RC2-rev1682356/solr/maven/org/apache/solr/solr-uima/5.2.0/solr-uima-5.2.0.pom (added)
+++ dev/lucene/lucene-solr-5.2.0-RC2-rev1682356/solr/maven/org/apache/solr/solr-uima/5.2.0/solr-uima-5.2.0.pom Fri May 29 02:54:27 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-RC2-rev1682356/solr/maven/org/apache/solr/solr-uima/5.2.0/solr-uima-5.2.0.pom.asc
==============================================================================
--- dev/lucene/lucene-solr-5.2.0-RC2-rev1682356/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-RC2-rev1682356/solr/maven/org/apache/solr/solr-uima/5.2.0/solr-uima-5.2.0.pom.asc Fri May 29 02:54:27 2015
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Comment: GPGTools - https://gpgtools.org
+
+iQIcBAABCgAGBQJVZ7svAAoJEHWAUcyjoTp/w5wP+wQbEwdINiGH0gmfOHd1g4Yl
+h3Cot9g1FDUfHTJVNRU0+TeKNVvWPBanA0pIQzmfcWlz8Ij/eSQDrgyHkzTpceNS
+XyJya7JJFSQIbIYoYxaWee3enKRmvAq0JYUqzSyk0TvNqyFXj6urnvXOLSPz3Ead
+HLJUhMs9KFUEHCPBMwXbSqfkGaV7T5hVO6d7wqMhdIW0aoPv84Z83twJWAu22KWl
+5AqbpquLJmcWBLrzgDpMB55PsGiWGVcb2KZRSJdUqThyIm7AzB1kP9ODoOfVhhOG
+ug5yzZ1iIhCxjyDXQQf6ZwkckPGFL2GxVMpEls4l7fF7dZ2dRF3IYNRw9dbP7nJ6
+Sp+xnfhJT+1WXvEd3m4IMHpwvuxXTPTOh54sXM6kAoVV+OWpp8T/kEjE//C7YEJL
+rbRzZEkJ5XEuhf0rcy142+INHue8qvRAfqQfgTKerhcNb9oDhDsS6VoBcuIpoPAe
+lSLWSPohvlSOImHG2CO8SIH1CegDxkTlr32TTVUKuZWdhHz5ps2OtZuY4cjGK9c1
+a9SO6WDMkj1B74lf5ICsAKbSDWlA49tUH9pPjFF1gw5BzWLOT3ZsQcZ651Fe4sg2
+58a6DtQQCEO+lvGeiHq/JbFX8zYDoc531+fgHX5OPVIb5PJgbJdF+eMcefnv/aD1
+o6/IvVI53fhcxiBBFP9U
+=uocP
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-5.2.0-RC2-rev1682356/solr/maven/org/apache/solr/solr-uima/5.2.0/solr-uima-5.2.0.pom.md5
==============================================================================
--- dev/lucene/lucene-solr-5.2.0-RC2-rev1682356/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-RC2-rev1682356/solr/maven/org/apache/solr/solr-uima/5.2.0/solr-uima-5.2.0.pom.md5 Fri May 29 02:54:27 2015
@@ -0,0 +1 @@
+a1b4f1fbac058456e5bb65e372fdf605
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.2.0-RC2-rev1682356/solr/maven/org/apache/solr/solr-uima/5.2.0/solr-uima-5.2.0.pom.sha1
==============================================================================
--- dev/lucene/lucene-solr-5.2.0-RC2-rev1682356/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-RC2-rev1682356/solr/maven/org/apache/solr/solr-uima/5.2.0/solr-uima-5.2.0.pom.sha1 Fri May 29 02:54:27 2015
@@ -0,0 +1 @@
+6715f9ebe7024aee5ecd79e83bef25224ef46f89
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.2.0-RC2-rev1682356/solr/maven/org/apache/solr/solr-uima/maven-metadata.xml
==============================================================================
--- dev/lucene/lucene-solr-5.2.0-RC2-rev1682356/solr/maven/org/apache/solr/solr-uima/maven-metadata.xml (added)
+++ dev/lucene/lucene-solr-5.2.0-RC2-rev1682356/solr/maven/org/apache/solr/solr-uima/maven-metadata.xml Fri May 29 02:54:27 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>20150529010413</lastUpdated>
+  </versioning>
+</metadata>

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

Added: dev/lucene/lucene-solr-5.2.0-RC2-rev1682356/solr/maven/org/apache/solr/solr-uima/maven-metadata.xml.md5
==============================================================================
--- dev/lucene/lucene-solr-5.2.0-RC2-rev1682356/solr/maven/org/apache/solr/solr-uima/maven-metadata.xml.md5 (added)
+++ dev/lucene/lucene-solr-5.2.0-RC2-rev1682356/solr/maven/org/apache/solr/solr-uima/maven-metadata.xml.md5 Fri May 29 02:54:27 2015
@@ -0,0 +1 @@
+6213a2c5de08b8e014530c9ce2877337
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.2.0-RC2-rev1682356/solr/maven/org/apache/solr/solr-uima/maven-metadata.xml.sha1
==============================================================================
--- dev/lucene/lucene-solr-5.2.0-RC2-rev1682356/solr/maven/org/apache/solr/solr-uima/maven-metadata.xml.sha1 (added)
+++ dev/lucene/lucene-solr-5.2.0-RC2-rev1682356/solr/maven/org/apache/solr/solr-uima/maven-metadata.xml.sha1 Fri May 29 02:54:27 2015
@@ -0,0 +1 @@
+ba57ad024535788c385a3a6315e0beab0fcd3ce6
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.2.0-RC2-rev1682356/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-RC2-rev1682356/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-RC2-rev1682356/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-RC2-rev1682356/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-RC2-rev1682356/solr/maven/org/apache/solr/solr-velocity/5.2.0/solr-velocity-5.2.0-javadoc.jar.asc Fri May 29 02:54:27 2015
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Comment: GPGTools - https://gpgtools.org
+
+iQIcBAABCgAGBQJVZ7swAAoJEHWAUcyjoTp/FbIQAJ3OUC7qx6mhsdizBwcRxhwQ
+VrZAjcPgJ9eb0+A2YevoCW7C4v8b/i1bICJ8oPDXygzZvazputc12Y0bbEoajFy5
+UexMhOaLwuXMwz6DfmkCJvLg/xfRFVB1zN7n3ME68fftnFfNJW8G2F45XDPSlLrl
+5sgpgmpkEozZei4RM68EtIB9D0Y5QA3UhKUsGA/izY8qqRdG5vo92dI0LmBgoxoO
+5NiOkpMn4/FvX0WcOYYXpyOFik10Zi8nZKyB03LyF/Y8nD5V0Hz+TaryZVfxdpV1
+FQbHRJXNFPMYMIUv3LrFpkAnEMBWL8VOtMy7D3cGuaZ8TO0bwlaYF77Hlpgnu6o6
+MdfIEe+r7xqcrLMHDkrd+eu5z62gTK8+3rAWo2vro+qeEhvJ+kLsAqZ/aQ52eEJf
+dtqrhXn0+a67VkdKH6nCvsmoTsg/HaDyHcwI5HC8kkKV3K+6Ijvf1DKtq0S12Q67
+pkYgMgFp6nLgWq3HNWq0Axqu1sY0OaeG7E6SVH4Cu7/VIE6nbOE3EEqEZCEudqzV
+CSMGWydRfRPZ0xWNk7hdV1EZCwPxU3A83J1h3WeAAxqolZ6qe2CPB9NAMTLAXosO
+o9d3TnMaD3rGYiySV6CjT2gq7Ls9xGKVxdaa4jRmHNPwJo2Pnqs84JhKH4t3ZwE4
+gRSUW2XCq67PEeg28Ly9
+=Q3so
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-5.2.0-RC2-rev1682356/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-RC2-rev1682356/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-RC2-rev1682356/solr/maven/org/apache/solr/solr-velocity/5.2.0/solr-velocity-5.2.0-javadoc.jar.md5 Fri May 29 02:54:27 2015
@@ -0,0 +1 @@
+afbd0d9e464027b2c585b300c49408d2
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.2.0-RC2-rev1682356/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-RC2-rev1682356/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-RC2-rev1682356/solr/maven/org/apache/solr/solr-velocity/5.2.0/solr-velocity-5.2.0-javadoc.jar.sha1 Fri May 29 02:54:27 2015
@@ -0,0 +1 @@
+7c01bd0dfb490e77e78f5ff4b016e668c9fa9bf0
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.2.0-RC2-rev1682356/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-RC2-rev1682356/solr/maven/org/apache/solr/solr-velocity/5.2.0/solr-velocity-5.2.0-sources.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream