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/27 21:25:50 UTC

svn commit: r9151 [20/21] - in /dev/lucene/lucene-solr-5.2.0-RC1-rev1682085: ./ 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-RC1-rev1682085/solr/maven/org/apache/solr/solr-parent/5.2.0/solr-parent-5.2.0.pom
==============================================================================
--- dev/lucene/lucene-solr-5.2.0-RC1-rev1682085/solr/maven/org/apache/solr/solr-parent/5.2.0/solr-parent-5.2.0.pom (added)
+++ dev/lucene/lucene-solr-5.2.0-RC1-rev1682085/solr/maven/org/apache/solr/solr-parent/5.2.0/solr-parent-5.2.0.pom Wed May 27 19:25:47 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-RC1-rev1682085/solr/maven/org/apache/solr/solr-parent/5.2.0/solr-parent-5.2.0.pom.asc
==============================================================================
--- dev/lucene/lucene-solr-5.2.0-RC1-rev1682085/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-RC1-rev1682085/solr/maven/org/apache/solr/solr-parent/5.2.0/solr-parent-5.2.0.pom.asc Wed May 27 19:25:47 2015
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Comment: GPGTools - https://gpgtools.org
+
+iQIcBAABCgAGBQJVZgeEAAoJEHWAUcyjoTp/QikP/2y8WKSRLZKIyzmM6btVz6dK
+4MJ9WTe5CPx2Lg6De9tyDNv4HG87wgEP6NPm2PXCFC5cX1Z68NOoakR0K+rYYX5d
+IxLS5wPrxCgU3dofovFfiJAhWDptOrWnhQK5EO1fdV2M+3O8a5U9EpOBge3ZXoft
+SULsrYZRhC+swBINWf85+8qdT+IkPNgLb/+DH0nKbL5vp8YQU3S5ZidOtvf2Ofdy
+MbUBzL/pxYcAXr+tceAMtoWghfZLyRjtSxpHcqF8/kyFiOPDJjK0chNWAKmWmf5T
+AfqJmBV5rh9h4PkilkeiqHItbLa9+AzyXAkiZa9NX/N5vmR1fHOTbCN8npYVIi3E
+WiOLnQpJy991vsW9oeAjwq0uL3T/sKPwT8UoTET2KoKcmY6mpFxIsVbVhScDtI1k
+ERA2H6GxR15fTQ3qJo1QM1o9+qC8HOk8mvx0bkapgXbhls5Ew76iYJL0TnQx62Qd
+BoyXKfRlYuFu2gd2JoBjLDl5quwBJQfBpfTt75+N8fnfW3J5IRc9q3yFkhp50TCd
+irWTFOSsPQBy1CkplbRRW9eslLwyoMYvrgsPnl8mSYnsBvFWLMnUh+lM+qC32vXB
+6VeeRXisBvVdrufwDxPHUsJi/76BfxKgQLrS/IAZlAPPxckEVFsFQAHbTvY2Qf0C
+qqWZPNlNSjYubYxnGfOC
+=DlJn
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-5.2.0-RC1-rev1682085/solr/maven/org/apache/solr/solr-parent/5.2.0/solr-parent-5.2.0.pom.md5
==============================================================================
--- dev/lucene/lucene-solr-5.2.0-RC1-rev1682085/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-RC1-rev1682085/solr/maven/org/apache/solr/solr-parent/5.2.0/solr-parent-5.2.0.pom.md5 Wed May 27 19:25:47 2015
@@ -0,0 +1 @@
+e176897242af70056a4643e38c4b28f5
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.2.0-RC1-rev1682085/solr/maven/org/apache/solr/solr-parent/5.2.0/solr-parent-5.2.0.pom.sha1
==============================================================================
--- dev/lucene/lucene-solr-5.2.0-RC1-rev1682085/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-RC1-rev1682085/solr/maven/org/apache/solr/solr-parent/5.2.0/solr-parent-5.2.0.pom.sha1 Wed May 27 19:25:47 2015
@@ -0,0 +1 @@
+dca983b37d503be17520693c26c8469c96f8b55d
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.2.0-RC1-rev1682085/solr/maven/org/apache/solr/solr-parent/maven-metadata.xml
==============================================================================
--- dev/lucene/lucene-solr-5.2.0-RC1-rev1682085/solr/maven/org/apache/solr/solr-parent/maven-metadata.xml (added)
+++ dev/lucene/lucene-solr-5.2.0-RC1-rev1682085/solr/maven/org/apache/solr/solr-parent/maven-metadata.xml Wed May 27 19:25:47 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>20150527180448</lastUpdated>
+  </versioning>
+</metadata>

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

Added: dev/lucene/lucene-solr-5.2.0-RC1-rev1682085/solr/maven/org/apache/solr/solr-parent/maven-metadata.xml.md5
==============================================================================
--- dev/lucene/lucene-solr-5.2.0-RC1-rev1682085/solr/maven/org/apache/solr/solr-parent/maven-metadata.xml.md5 (added)
+++ dev/lucene/lucene-solr-5.2.0-RC1-rev1682085/solr/maven/org/apache/solr/solr-parent/maven-metadata.xml.md5 Wed May 27 19:25:47 2015
@@ -0,0 +1 @@
+2eb92af920afbfb95e20834dffd80d0d
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.2.0-RC1-rev1682085/solr/maven/org/apache/solr/solr-parent/maven-metadata.xml.sha1
==============================================================================
--- dev/lucene/lucene-solr-5.2.0-RC1-rev1682085/solr/maven/org/apache/solr/solr-parent/maven-metadata.xml.sha1 (added)
+++ dev/lucene/lucene-solr-5.2.0-RC1-rev1682085/solr/maven/org/apache/solr/solr-parent/maven-metadata.xml.sha1 Wed May 27 19:25:47 2015
@@ -0,0 +1 @@
+de1d491c3674517679c4d7d0d5883b4fd380e02a
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.2.0-RC1-rev1682085/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-RC1-rev1682085/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-RC1-rev1682085/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-RC1-rev1682085/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-RC1-rev1682085/solr/maven/org/apache/solr/solr-solrj/5.2.0/solr-solrj-5.2.0-javadoc.jar.asc Wed May 27 19:25:47 2015
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Comment: GPGTools - https://gpgtools.org
+
+iQIcBAABCgAGBQJVZgeEAAoJEHWAUcyjoTp/dQoQAMBaQWWiZx6QR2pqwOgnRkf2
+DsAPMYbfXS0CbakaCgcvZ7TCY/j7qIW1hRmI3fZmvPX6QBnUkYWtbcI/LpCtkDvB
+WY47qp2b6VMNfbhPzJLy7/Twf1tyw2/Xk4Geltr8rh9iq0aE+pJ/p8aTzhz0aybD
+QxkDOhzUVqx62Vi9hho4LLTJx1uxPNwQipJGFPgEIErMG/kBL5XdGSLNlFDssbeY
+T6MVHBlh5dy31nONPT8BXUlX76TeYptO+/StqLTqAbtDG4T/6dPPsfMPNLqiDJhr
+UKWoaQL4J7sqOpw0GviNxGtNJRg/1xXAYSB8IOYBQvX5bEOQ3qIbhID1pwr9Lf0o
+geJDGkdffqd20WlXkvTBRXKz1v3BGiTXqJEuXcl4+KpupC2O1bb3FSxRD7qu8vt9
+uGIp0j4Ex8NTyn/F/m/1sviXwtLb6ePb9OYiE8nzScA6aqqmoq7dho+kOs3yU0aK
+b1MBK6N01YXbUG3AzFMShKnPJSuALRkRRQdTzOK/0FRNEO1fzL8rqVkPJW7Nnjoe
+4ZvIujkWGK+4v+bgDvotDVFHxe94ETs8ohS5JAxwNU7ks/n+LxQOih8PnKjpihnW
+C8mGOJHtVU5ig18YVDllgrvzs30OUNDSRklOwIHFD5EIdJs1ZV+LnvPMCmJpxkfM
+KqxbcZ3j+9IVObftnFHY
+=eN9Z
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-5.2.0-RC1-rev1682085/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-RC1-rev1682085/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-RC1-rev1682085/solr/maven/org/apache/solr/solr-solrj/5.2.0/solr-solrj-5.2.0-javadoc.jar.md5 Wed May 27 19:25:47 2015
@@ -0,0 +1 @@
+681997e8445c7606f8b52d1a75afe50e
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.2.0-RC1-rev1682085/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-RC1-rev1682085/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-RC1-rev1682085/solr/maven/org/apache/solr/solr-solrj/5.2.0/solr-solrj-5.2.0-javadoc.jar.sha1 Wed May 27 19:25:47 2015
@@ -0,0 +1 @@
+86fa222ad0cadc9295477dfe17c30e5015a03e31
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.2.0-RC1-rev1682085/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-RC1-rev1682085/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-RC1-rev1682085/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-RC1-rev1682085/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-RC1-rev1682085/solr/maven/org/apache/solr/solr-solrj/5.2.0/solr-solrj-5.2.0-sources.jar.asc Wed May 27 19:25:47 2015
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Comment: GPGTools - https://gpgtools.org
+
+iQIcBAABCgAGBQJVZgeFAAoJEHWAUcyjoTp/7UMP/Rcv+FVfeHr7zSiWJ9n6lM73
+g8pRozFadEEjo4E7XTI8IIYx3JR7MTqCH/a7lCk3N+nZgyhvUK1ITPQ6BTyRdd2S
+d4BsRKbGXA0cdOwJV7HoQddb4BQEIbT3g8ky+okAOSWjN+njjMpO6iGDRi8XMaBG
+enVtMgwpYC0DkWQ+xgOsizWRvZrqxiPuSkj0zXN1AigTd1agHooL6m0+mo5ak9pj
+qgf9A14XmzErC7HDErW07xcvFXNwgNzaAsc2Zoy/iZrEizOjgSjLRLG8aHQBKzMY
+jkjm6LerAcnZv1v1bvKdnZ/RyRDu0tW1+Tt28EXrhZqpl8g9QHwz5ja21ilM1LIy
+iS1aAfPs7+zIUxl3AlR9w0FQd+Z/KAwyIPuXTODJx+0QPB4oOXMx8VFda4OBKI3i
+MvmjuXcF5q8Zzt0j5v80UKgm/KpFbkzxtV1bvH8GgSGYJtWIjz0tRwulUVdFbkvo
+dP/hdhPe91+hPpg0QvoCGeKiuWDmR3DzuKkUnnR0Xv2UmIfQvloJj3hdP1KuYqG4
+dxKAX5lLc1zH97qYEg+YIL41h40ecJ2gcpF2awjM4D8uHifVwSFLyPHASzKnNhSv
++W9asLyTS8xonvahWn3NYWy85vngq1QcBd9MWDDu/rTlMzLuMQ4kiIz/Rq+oCWBn
+/NQaPy3Ewa1B0u3yU0IS
+=ojSM
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-5.2.0-RC1-rev1682085/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-RC1-rev1682085/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-RC1-rev1682085/solr/maven/org/apache/solr/solr-solrj/5.2.0/solr-solrj-5.2.0-sources.jar.md5 Wed May 27 19:25:47 2015
@@ -0,0 +1 @@
+bd570bc54f8d3a8ab234c549e6fe971d
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.2.0-RC1-rev1682085/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-RC1-rev1682085/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-RC1-rev1682085/solr/maven/org/apache/solr/solr-solrj/5.2.0/solr-solrj-5.2.0-sources.jar.sha1 Wed May 27 19:25:47 2015
@@ -0,0 +1 @@
+874692e6010be39d1aa26bfa9fcbfd39a30335ec
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.2.0-RC1-rev1682085/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-RC1-rev1682085/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-RC1-rev1682085/solr/maven/org/apache/solr/solr-solrj/5.2.0/solr-solrj-5.2.0.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-5.2.0-RC1-rev1682085/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-RC1-rev1682085/solr/maven/org/apache/solr/solr-solrj/5.2.0/solr-solrj-5.2.0.jar.asc Wed May 27 19:25:47 2015
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Comment: GPGTools - https://gpgtools.org
+
+iQIcBAABCgAGBQJVZgeGAAoJEHWAUcyjoTp/kqQP/1T0m18cIXqSnxOp/HmMdCsL
+h/6/s1UxSYztfHFIC/Qzkml6+zZXQJ+FslWz0udRhV6IceEpj298kKJ2c1tdFh4c
+gwPO0vxqtV2XmpcwHTuHqcWMYQSTYg+/wCgMbfLFbLdy7+OE1/pEQiRZGXQo1y0k
+QWxLg1EXhqcSOU96Qlid5G+6umywu1K3NXzfbDDp+gkatlx4hIyZsLf5otbOp2TV
+B0hM/8Atu7cRP55MNpevoV2bNzaN92cqJf4z0A406x1GkN6nJ8uxgCFmXlOINZL4
+xgjAWgn2btGkJzsj9bzrH0dSDCLg+jyihSuZGoHwHFX6X8hhf2rVYgrkDo0/WQOK
+UZsjY655b3+O9rZ5GQou1TFnRw/jzFsbuo5Y1RHN/2/4DKK/pbEGurHgoTt3g1Uz
+VD19UrvAxPOo5IyycYtmSYilIYIGGCUXbgTWXUzlR+CNrDJ7+ZKDMogfXyUbwNW8
+UNuknYmZQZRCE9s06+K8EE3ZIL/peVFsEwJzcp/8OQPxLlmR0dDNot3oaC44NWJj
+ghw/uSnLxC+sA+/iidDhdCGA1ckIkCSVe5Strv9PIe8lLF1wphf89pchHCWZtNiw
+WdVs7deE3MVniAUVtnaR3ukAR3s7NzEhVxHgFqArS+X8qoY2I5nyjdvnR59yt1lL
+2eU+kmh4XMU3ATZoW5to
+=TohY
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-5.2.0-RC1-rev1682085/solr/maven/org/apache/solr/solr-solrj/5.2.0/solr-solrj-5.2.0.jar.md5
==============================================================================
--- dev/lucene/lucene-solr-5.2.0-RC1-rev1682085/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-RC1-rev1682085/solr/maven/org/apache/solr/solr-solrj/5.2.0/solr-solrj-5.2.0.jar.md5 Wed May 27 19:25:47 2015
@@ -0,0 +1 @@
+8e7c0ef1aa222466ffe075c67baed4ab
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.2.0-RC1-rev1682085/solr/maven/org/apache/solr/solr-solrj/5.2.0/solr-solrj-5.2.0.jar.sha1
==============================================================================
--- dev/lucene/lucene-solr-5.2.0-RC1-rev1682085/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-RC1-rev1682085/solr/maven/org/apache/solr/solr-solrj/5.2.0/solr-solrj-5.2.0.jar.sha1 Wed May 27 19:25:47 2015
@@ -0,0 +1 @@
+b2bf6617a9146d8a2cfd5e94e9abacd7cb777e57
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.2.0-RC1-rev1682085/solr/maven/org/apache/solr/solr-solrj/5.2.0/solr-solrj-5.2.0.pom
==============================================================================
--- dev/lucene/lucene-solr-5.2.0-RC1-rev1682085/solr/maven/org/apache/solr/solr-solrj/5.2.0/solr-solrj-5.2.0.pom (added)
+++ dev/lucene/lucene-solr-5.2.0-RC1-rev1682085/solr/maven/org/apache/solr/solr-solrj/5.2.0/solr-solrj-5.2.0.pom Wed May 27 19:25:47 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-RC1-rev1682085/solr/maven/org/apache/solr/solr-solrj/5.2.0/solr-solrj-5.2.0.pom.asc
==============================================================================
--- dev/lucene/lucene-solr-5.2.0-RC1-rev1682085/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-RC1-rev1682085/solr/maven/org/apache/solr/solr-solrj/5.2.0/solr-solrj-5.2.0.pom.asc Wed May 27 19:25:47 2015
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Comment: GPGTools - https://gpgtools.org
+
+iQIcBAABCgAGBQJVZgeGAAoJEHWAUcyjoTp/m9EQAMgnKuoeqiBEKKEg9LcvLSuU
+g3DkgtuyhQ5GdSHb48UGLJNLek5I9XpOJYYv7bCX2pMthv3pj+1nHdkJap69LvoH
+Aw6XD0N6+mELx+7njDsx0sPkcM2BCG5KJpwxP1G/gUyeCLY7WejzANFzt+Ng12kn
+Ufn0UmBllq+j5kdQTipTAgWZraEwE7CWoBbmQdjVmyOD6xCVQTfx0F5SgtmceGDD
+3CXfH+1AJltc1zaabfpJXLEfR/CWgwl2QJ8yADOhzj0lbYLZyDO4nVaoibDOKDD9
+6bjpno2wb9lSITZIBE8Y4lPM1r+UXQHlQLuFyao6kT9DSg58Ri3aJV5go1hvmL/B
+k4cYrT+YD35uNeOFSmtEZgotExgpMgeAWS+sQ1II7ufj4+9gTfGary3UaXhS7ihB
+uFd7QPHOpTBnxl9Q9ihGr0nHM99wdXSklS19+E0vE7ywthS70+ioe23akVqUnBkm
+Sl2a4xCUkQG88EcWwG1A4QzBnv/PUli+q7XMfPEPQqKqAF7+uaDkb7Kj0uP+oWWk
+i2r4rfmAnQTvWdHB+hlUXq07s+L8gJlsFU9RHzeRkbhCkMBJaia6INct/k5uBjzT
+3NDRXZ6FqQhyOXuQUCxM/C6yrO10Rt3JJydRQvooz27RxRxRC9rjd4uIkZhyqr64
+go/BDjBn6BFQ5K0CaAYx
+=R/c0
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-5.2.0-RC1-rev1682085/solr/maven/org/apache/solr/solr-solrj/5.2.0/solr-solrj-5.2.0.pom.md5
==============================================================================
--- dev/lucene/lucene-solr-5.2.0-RC1-rev1682085/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-RC1-rev1682085/solr/maven/org/apache/solr/solr-solrj/5.2.0/solr-solrj-5.2.0.pom.md5 Wed May 27 19:25:47 2015
@@ -0,0 +1 @@
+8e05f10bd95a18f072b84b4dcde24bb8
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.2.0-RC1-rev1682085/solr/maven/org/apache/solr/solr-solrj/5.2.0/solr-solrj-5.2.0.pom.sha1
==============================================================================
--- dev/lucene/lucene-solr-5.2.0-RC1-rev1682085/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-RC1-rev1682085/solr/maven/org/apache/solr/solr-solrj/5.2.0/solr-solrj-5.2.0.pom.sha1 Wed May 27 19:25:47 2015
@@ -0,0 +1 @@
+7d6eb531416fea099ec2d371557ded108752ab7f
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.2.0-RC1-rev1682085/solr/maven/org/apache/solr/solr-solrj/maven-metadata.xml
==============================================================================
--- dev/lucene/lucene-solr-5.2.0-RC1-rev1682085/solr/maven/org/apache/solr/solr-solrj/maven-metadata.xml (added)
+++ dev/lucene/lucene-solr-5.2.0-RC1-rev1682085/solr/maven/org/apache/solr/solr-solrj/maven-metadata.xml Wed May 27 19:25:47 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>20150527180451</lastUpdated>
+  </versioning>
+</metadata>

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

Added: dev/lucene/lucene-solr-5.2.0-RC1-rev1682085/solr/maven/org/apache/solr/solr-solrj/maven-metadata.xml.md5
==============================================================================
--- dev/lucene/lucene-solr-5.2.0-RC1-rev1682085/solr/maven/org/apache/solr/solr-solrj/maven-metadata.xml.md5 (added)
+++ dev/lucene/lucene-solr-5.2.0-RC1-rev1682085/solr/maven/org/apache/solr/solr-solrj/maven-metadata.xml.md5 Wed May 27 19:25:47 2015
@@ -0,0 +1 @@
+1e8630aa6b8639a9be06c64ee2c0b30e
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.2.0-RC1-rev1682085/solr/maven/org/apache/solr/solr-solrj/maven-metadata.xml.sha1
==============================================================================
--- dev/lucene/lucene-solr-5.2.0-RC1-rev1682085/solr/maven/org/apache/solr/solr-solrj/maven-metadata.xml.sha1 (added)
+++ dev/lucene/lucene-solr-5.2.0-RC1-rev1682085/solr/maven/org/apache/solr/solr-solrj/maven-metadata.xml.sha1 Wed May 27 19:25:47 2015
@@ -0,0 +1 @@
+874fed242d124676b668ed17a246de95b386a1fa
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.2.0-RC1-rev1682085/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-RC1-rev1682085/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-RC1-rev1682085/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-RC1-rev1682085/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-RC1-rev1682085/solr/maven/org/apache/solr/solr-test-framework/5.2.0/solr-test-framework-5.2.0-javadoc.jar.asc Wed May 27 19:25:47 2015
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Comment: GPGTools - https://gpgtools.org
+
+iQIcBAABCgAGBQJVZgeHAAoJEHWAUcyjoTp/Q1wQAJiIUI+2iFpTJmg2latl5Yzz
+u8S0Azy33Z0h+wGBrGE6628n8y0VW23MDcIjw/lePg1NWDrwHbia/tRZTMplQCex
+kStI9Gm84L3zCJwPuYr7xKJ3u+ir/Nnn9wy8fYctgHN46xUV+qBo8GcEkIeSQFtR
+hjCnFNtJ19fRO/xooE2T9av+iXuOHPD6DxqYxNtZ5DzbEHAd0Wj5MelEHxKqgf4H
+3D+SGwG2B/U9abfMgMy2LwQTZn3nJJSG76HyfjJ5YzsGyn56VdKz7UhoT/tQoKZg
+NHx8vGejBN6edoVeR2AJOXuoraGCZ1+VA/BGf7FX0xpIc+RZTfz1/zj5EviBu0i4
+5WI+x5JDeF0NwrJrmpTAoW+3N9XUZx+ZXXesFGXW6eMXfJPF4An5DHsXWBWQfMao
+LjdFNDmAg6zDKXftJKYPhioQZ3T7E6Iwr4imu/4B0MJxXT2p2BBNpIWjkHSu9rJ8
+PYy0svyamDr0lCPV5p+4NkeSqEDAlliXibcJBhFJxvqbclUupduRs6XNOT4zQ4ZZ
+CExgyujVJnaxn2BvN8voAG2a+fnFQNyM0fWssfGEngjkTWLfurQzd/VlV/DYmiej
+dJB/EKuGE6TNRKxHNFcEz0X43Gau7o3iqSEE7q5gXWAHk60TNtHGmrrwspci9MdD
+iRLL9XzoQ5UXeqCLnmx2
+=n4Tr
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-5.2.0-RC1-rev1682085/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-RC1-rev1682085/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-RC1-rev1682085/solr/maven/org/apache/solr/solr-test-framework/5.2.0/solr-test-framework-5.2.0-javadoc.jar.md5 Wed May 27 19:25:47 2015
@@ -0,0 +1 @@
+f402305d027aecb00e2b5468cfa6a778
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.2.0-RC1-rev1682085/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-RC1-rev1682085/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-RC1-rev1682085/solr/maven/org/apache/solr/solr-test-framework/5.2.0/solr-test-framework-5.2.0-javadoc.jar.sha1 Wed May 27 19:25:47 2015
@@ -0,0 +1 @@
+d71ae09c8cabf64f43878aa5d94eb4104937acb7
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.2.0-RC1-rev1682085/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-RC1-rev1682085/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-RC1-rev1682085/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-RC1-rev1682085/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-RC1-rev1682085/solr/maven/org/apache/solr/solr-test-framework/5.2.0/solr-test-framework-5.2.0-sources.jar.asc Wed May 27 19:25:47 2015
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Comment: GPGTools - https://gpgtools.org
+
+iQIcBAABCgAGBQJVZgeHAAoJEHWAUcyjoTp/vVcP/2GrpWroFjkJhiTOcQKMyliZ
+7KPll1mMWBtaypIUvLeiNsJo9QrhxYidbZ3alteS1tjWQHD5fVMbnTPTZRUsvKdS
+1RwpNTCBBqxhwFhHHgn6MShhwTCa4xA8yn1t35KPFOpU9bA75EJbkyW1oEUP/bhA
+K7MFwI72tKI+Q8s56qhtNq8g2XuZW9mg6FO8QDOOHhDkKEC2cY+PSflG5lzPgaSR
+yjXyNT4lnPaksLOA5yO/H3XwBN97xHhsmA0ByJnuURB9+xv4W/oGQnzqqT0/lUg7
+cG46oBGbs0MODOHc9l58T9Q4FDxVSsKzvRVGU0rZyPln+alJLyWw938DFNCkEwcz
+8z41yWr8uzz+ho++0VzThEZNiDlXxIf7LDrMbbZj0uEVTpTFdxTdYinUN19NL+Ny
+v1B6OnM/+v/Gxm9kSPg9RN3HXF7UOzICXqdtS+HkLWVW2SC/7f8GApQ08+y4CCV+
+SBHZJJJETR9Z8g1ub+1RLSgeIoGZzOXm9asAs/6Peh2TG2jG4HxP0mDkbYAtRBDy
+hxjwwpK0lJWnXgM3aFb5Vwnv4sQQdLn0rfnXLIA9cZmPlEoKAphok/URo5dIeWq0
+u0XpgHpgwRVomOHI/sJPV2CHbFtShwJuLt9XKIibAJeNWa8Au49IUNowjTy3oDqD
+gOMiD3sKq/aZggLmPOEG
+=WT3M
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-5.2.0-RC1-rev1682085/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-RC1-rev1682085/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-RC1-rev1682085/solr/maven/org/apache/solr/solr-test-framework/5.2.0/solr-test-framework-5.2.0-sources.jar.md5 Wed May 27 19:25:47 2015
@@ -0,0 +1 @@
+713148a9055c84e6499346db355ee384
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.2.0-RC1-rev1682085/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-RC1-rev1682085/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-RC1-rev1682085/solr/maven/org/apache/solr/solr-test-framework/5.2.0/solr-test-framework-5.2.0-sources.jar.sha1 Wed May 27 19:25:47 2015
@@ -0,0 +1 @@
+0f88df20a470242064a5ddd7b596a99a0c979252
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.2.0-RC1-rev1682085/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-RC1-rev1682085/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-RC1-rev1682085/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-RC1-rev1682085/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-RC1-rev1682085/solr/maven/org/apache/solr/solr-test-framework/5.2.0/solr-test-framework-5.2.0.jar.asc Wed May 27 19:25:47 2015
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Comment: GPGTools - https://gpgtools.org
+
+iQIcBAABCgAGBQJVZgeIAAoJEHWAUcyjoTp/7GgP+wWJPNN7OYrBhAqirxRE3znd
+6xk3yi29twXciE9bc94xTREz3J3qGDP8CU9SkaH4b7GvB1p+ZYnJ5JHMqfnZ0w8O
+WPrEDKAhyufKZDHzNOe8JDF57EBJzhqMt8HeOC8YIkjI0bdRyioW1XFN3uZuM8OB
+DVqGYc2yyrmZuJG23rI7I7vwOTN0DJmyl0cbvVfRnBupQo2nfzPwVHHv3329StiQ
+8XcAysEt4pDAbblVOaLZUYtWQZayLbq5RcydSHHoxXAcvaTO9X5sktIdC0ughxJa
+7tyN+ANNoIpSI3cj426pX3IG66H9sKlxW/tfUTvfzxkyYLLhl0vQP+5oogfmTAhi
+9DmxRdltsAwBuDfc/+ey/b535Oj5DXG/Sf6zp2DqdaaSsojJ7BbAZREIh3TwaG54
+CmyoEI8Bd+4cE/1c//v9ubRVejPZKgQrfXFvn0zPVh/A/lA9UzYRDZ5LMQwYNTTP
++TV+DjhvZ1/zjs8HaX0nNnlXrUAhm7AwziZxSYeQWTd1V6/+/PziB2NciU7FT2NA
+vugzOKOIsOBNnwX8UADX44SAUNjQFU9YZLp9DMBNMw6WNlN5fa19HymaxmmaKkOD
+nS6Rk+UpEVZNhgoXeo3hrVIdSV9gh41gEPJFL2NZ1zNXYDbS/Ii4EKv5jgMRw/Ji
+jCqRRqHSnyvzUmkECQPE
+=Bvn4
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-5.2.0-RC1-rev1682085/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-RC1-rev1682085/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-RC1-rev1682085/solr/maven/org/apache/solr/solr-test-framework/5.2.0/solr-test-framework-5.2.0.jar.md5 Wed May 27 19:25:47 2015
@@ -0,0 +1 @@
+7165240eefb28314d69aed53d67ba4f8
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.2.0-RC1-rev1682085/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-RC1-rev1682085/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-RC1-rev1682085/solr/maven/org/apache/solr/solr-test-framework/5.2.0/solr-test-framework-5.2.0.jar.sha1 Wed May 27 19:25:47 2015
@@ -0,0 +1 @@
+34221e90e76ab140944fc9c4f997655e3a68ec95
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.2.0-RC1-rev1682085/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-RC1-rev1682085/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-RC1-rev1682085/solr/maven/org/apache/solr/solr-test-framework/5.2.0/solr-test-framework-5.2.0.pom Wed May 27 19:25:47 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-RC1-rev1682085/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-RC1-rev1682085/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-RC1-rev1682085/solr/maven/org/apache/solr/solr-test-framework/5.2.0/solr-test-framework-5.2.0.pom.asc Wed May 27 19:25:47 2015
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Comment: GPGTools - https://gpgtools.org
+
+iQIcBAABCgAGBQJVZgeIAAoJEHWAUcyjoTp/5qEP/2w8ghEVslg2Q7LvfzCwP7Kn
+XrH4ISqRGvYXafdcxaJy7Q5lO26s/wE5cgmY3VJL3sMfVUv18MDFIMGp+jyaoVBN
+ddeU+8Uo/tXTdgr6QFbl4wMHfTojwcf3HzwMPVQGvw2vJCoBz50bxRv/zBGQVAal
+scnJuW+LAHDjjyafLXH/a+AqHaLF3bB2sMQmVhaE4Qh3w4RkkQ2X9ZLHlli4tPlV
+KayFZ6ExuZWXqDkJMPepby1n9Fw5RHOHvwOPil6qulocOAM6GiwuoZubDErJAyhG
+ANPY7L/vYkq464hCxJBWVaepyxAAY0/lTtAI9vvIck9256EUEKIHejoMqtXXFtsT
+5bxYlMy1yMiyVoOaPANyTKmLUcrA6a5xvVfHLmSMPz/Bk9wejLUrVAOHfjj6Beat
+29I1V8FSB3NdDKoon8HerUl1+2WHn5FD9IRPEj1lWGdR/e4S86srF6Gh201dtXaL
+Q/a6R28bIaTckM+1MQPFyEW2tMq/Kd4RaDbmqwXeFAXd8SZzy/fU8RnFrwteef79
+qnr4VUDnQlTX+E59dKmUWtwxpa/hTcuvzq5KvWkc2uqfuJ8r01ZHNTIflGve7vAm
+90XfyINrKhtsRyE/md6y0kozUu66ygSZXKGSxVlkaLnK1GmtPnd35dZuuE4jlHE+
+bHlb5uVt/frhU0Y8DIXV
+=lhVu
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-5.2.0-RC1-rev1682085/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-RC1-rev1682085/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-RC1-rev1682085/solr/maven/org/apache/solr/solr-test-framework/5.2.0/solr-test-framework-5.2.0.pom.md5 Wed May 27 19:25:47 2015
@@ -0,0 +1 @@
+ee3b55a52aa906140d13d9827d09876e
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.2.0-RC1-rev1682085/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-RC1-rev1682085/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-RC1-rev1682085/solr/maven/org/apache/solr/solr-test-framework/5.2.0/solr-test-framework-5.2.0.pom.sha1 Wed May 27 19:25:47 2015
@@ -0,0 +1 @@
+230bcafbcefc26782f2c6cbe29c6837abd23cb47
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.2.0-RC1-rev1682085/solr/maven/org/apache/solr/solr-test-framework/maven-metadata.xml
==============================================================================
--- dev/lucene/lucene-solr-5.2.0-RC1-rev1682085/solr/maven/org/apache/solr/solr-test-framework/maven-metadata.xml (added)
+++ dev/lucene/lucene-solr-5.2.0-RC1-rev1682085/solr/maven/org/apache/solr/solr-test-framework/maven-metadata.xml Wed May 27 19:25:47 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>20150527180453</lastUpdated>
+  </versioning>
+</metadata>

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

Added: dev/lucene/lucene-solr-5.2.0-RC1-rev1682085/solr/maven/org/apache/solr/solr-test-framework/maven-metadata.xml.md5
==============================================================================
--- dev/lucene/lucene-solr-5.2.0-RC1-rev1682085/solr/maven/org/apache/solr/solr-test-framework/maven-metadata.xml.md5 (added)
+++ dev/lucene/lucene-solr-5.2.0-RC1-rev1682085/solr/maven/org/apache/solr/solr-test-framework/maven-metadata.xml.md5 Wed May 27 19:25:47 2015
@@ -0,0 +1 @@
+577b77265cd096f538d560c24689d5f1
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.2.0-RC1-rev1682085/solr/maven/org/apache/solr/solr-test-framework/maven-metadata.xml.sha1
==============================================================================
--- dev/lucene/lucene-solr-5.2.0-RC1-rev1682085/solr/maven/org/apache/solr/solr-test-framework/maven-metadata.xml.sha1 (added)
+++ dev/lucene/lucene-solr-5.2.0-RC1-rev1682085/solr/maven/org/apache/solr/solr-test-framework/maven-metadata.xml.sha1 Wed May 27 19:25:47 2015
@@ -0,0 +1 @@
+72e727cce56ef17777c2d2f856b9d079fe63babb
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.2.0-RC1-rev1682085/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-RC1-rev1682085/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-RC1-rev1682085/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-RC1-rev1682085/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-RC1-rev1682085/solr/maven/org/apache/solr/solr-uima/5.2.0/solr-uima-5.2.0-javadoc.jar.asc Wed May 27 19:25:47 2015
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Comment: GPGTools - https://gpgtools.org
+
+iQIcBAABCgAGBQJVZgeJAAoJEHWAUcyjoTp/XRwQAMVnbb6LMXfDfTkLEy8LCvv3
+/uirJLBUs1EG6cR9KbUtKazQAJ0d8N90f97czb+GeTRonO+rFgiS7vQeU3jS/ROQ
+cDTl+l4L6KpNG0eMMmRqfrGpKJYvuO6//s11GOYZ30hWhgxvyQZAOI8e5gJsuVFE
+/qJ3SQac5nv/rGIKb2Dv+TBpDtgfRpx9Drgz9i/9ipzzsY9622Sui7EKJGNd2W9A
+7y3hOARmpjE2y6D5L1FQWFa+MCbYqw2pIqZXnzEhEh+oe2V/QMl4o0L9KPpYVkeF
+dO2mJFI0ZAVkItJNQu9m7mVYAu8SxcEUT354C5t/iUDpEA5+UpEHWHUUtnVPRUyk
+MS2FQD0DP7cS28B4+eJvdjAzCqBtpIJH7Tw61QCpVn3xmMK8eb5Z3HhpTzHMkmX2
+OvseJR2sbsF/3JpF3tsi5xayJtuZI2S2XMih2pgJsAcr7L9o1743Xv8Z4lEg6JBP
+CSCKm6gv5+dfE6oNqeJNw+6Griu8GxiAeswYyfZGU3bp7Kno4nT4DRcp7vPXN6Rw
+f/yfo92DCI3PVzqrIW92B0j9Dr8vkH5nd2xlzmkQONEWer15TwiaXdOlsYxK+WTG
+fP63ImAx3aiE52P21iiAfwgq3MHPbcAquOrSEj5XXGxP1EYI+CMi8u2sPgO1JWGn
+1QgLpWc+kdvP65Zm8nrq
+=cmQs
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-5.2.0-RC1-rev1682085/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-RC1-rev1682085/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-RC1-rev1682085/solr/maven/org/apache/solr/solr-uima/5.2.0/solr-uima-5.2.0-javadoc.jar.md5 Wed May 27 19:25:47 2015
@@ -0,0 +1 @@
+5f345711701cf7d6fe7b6564d4270227
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.2.0-RC1-rev1682085/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-RC1-rev1682085/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-RC1-rev1682085/solr/maven/org/apache/solr/solr-uima/5.2.0/solr-uima-5.2.0-javadoc.jar.sha1 Wed May 27 19:25:47 2015
@@ -0,0 +1 @@
+a7d45f5be5a341716f88215fdd6e9f41ecdcc587
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.2.0-RC1-rev1682085/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-RC1-rev1682085/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-RC1-rev1682085/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-RC1-rev1682085/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-RC1-rev1682085/solr/maven/org/apache/solr/solr-uima/5.2.0/solr-uima-5.2.0-sources.jar.asc Wed May 27 19:25:47 2015
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Comment: GPGTools - https://gpgtools.org
+
+iQIcBAABCgAGBQJVZgeJAAoJEHWAUcyjoTp/HYMP/15SGqqCLzf21BytYQmype3y
+Qf3AANssv9O0n+/gr6gFZYKk6I/YDujCDmNow21gsxEtT+N7ix0Wre8QTLgCnq5a
+LK4vxQvAP7mU3IZi5ERtlg8oqDL40n3CsdCWE6dEhE83nPRDv5Ohg0M4fZbIYVMh
+Pzn9IBSd+tUBjOCUJmSiAAYBb0XVoGxDi8cCt9qL5nYIXlRoPmSG7w+wAgBn0pgG
+93wbVrcDdi0qqB5TiO3Larqna3e0W/pgAqQl8otKeFNdP3NYzUhcegT7t8OtrLX5
+R8esdbgfRBtPHEQdsyHE069CK1f6/VeeB+Dv6xN+1oyrphH89ODnQyJ4z4FZigCu
+RsC9UEkJHmoQPz95kDZ3U9/JGaTAnzPrOk/QmwzVkG/9S14ITQspekvph5nTE14g
+T0EPKpz/cob1w0yFJ1USq6rdqn7xqyH/Bx4oigMZu4BYhX0uNr+N2hnWE86sqvdK
+05p+sX5pApKVBteUPvbCztOAYinrP4AX11nMDF6o+UQzPpZoJMlU/uAwdWBQD487
+Ykf9l2IdQEkH6l0c25Bs5WUvmk+kK4jw6XdB81N5AfrboEFNmeUHSDE4sIsp9RBG
+WCRSm5+NYtj79WUceCDmtj3hWsfDdeVYSmOIQoCDw7vfVjeYH23hsRba4PdlS/H4
+x7pB2FMr0qP/29fWkxmO
+=jmtY
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-5.2.0-RC1-rev1682085/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-RC1-rev1682085/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-RC1-rev1682085/solr/maven/org/apache/solr/solr-uima/5.2.0/solr-uima-5.2.0-sources.jar.md5 Wed May 27 19:25:47 2015
@@ -0,0 +1 @@
+981eebb6a224412b6847a7da57a8f6da
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.2.0-RC1-rev1682085/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-RC1-rev1682085/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-RC1-rev1682085/solr/maven/org/apache/solr/solr-uima/5.2.0/solr-uima-5.2.0-sources.jar.sha1 Wed May 27 19:25:47 2015
@@ -0,0 +1 @@
+cbae4bb5b0acf9bcac2bb5177224d85d2053b123
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.2.0-RC1-rev1682085/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-RC1-rev1682085/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-RC1-rev1682085/solr/maven/org/apache/solr/solr-uima/5.2.0/solr-uima-5.2.0.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-5.2.0-RC1-rev1682085/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-RC1-rev1682085/solr/maven/org/apache/solr/solr-uima/5.2.0/solr-uima-5.2.0.jar.asc Wed May 27 19:25:47 2015
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Comment: GPGTools - https://gpgtools.org
+
+iQIcBAABCgAGBQJVZgeKAAoJEHWAUcyjoTp/nzMP/20rjTu2AQ4mAE8HMojlJexm
++GWj9dVqge1Jz0h+eOh0NqiUdLEDX4nxKmwKpiB1YsYQFhtGDiIx7G5Mby5qXyFl
+6nanGXlN30nmht2/GfEiFKL8PeBQqRxItgEMEd0svR3TAp/JEO0cWfuWVdVA1vUQ
+xWGzhhUhjvko0Am12nhKgCE3pAwjiiB/LTrQceGQ8hglCDch4TjVHI8oQkDeFS4e
+FLZEMaMOevlGsXsTYCjWSvfBWjVFsUGD072gGoBljRT6XXci2yMCbdNccTKoGINQ
+iw87ZzoQASlyrVF7XN8glb7R3ccoD3HcdoUvG9BUJbKVZG/Foj3q98TmBkE8Q/rm
+GrXQ+qQEDRs4YOBgqSq7XZYmy21MD/qLBRZ/Dfy9MdC0TN4rE04L4C+i8UL4W4EF
+6iwzUiGQ3XDh+y4FrWqT47xOAHke8JPHvuZavhQkp9dYlABzu+dpjEkg12VeZ+Ya
+LbNImSKns6+BZNVcXrYW1PJJkpNBeQ40xTCnIBOXyyPNBJoukVJS8QDrjzDGD0dp
+JYO0i260idOKvZwxSmbFxNgPOLSItC+35IMcn7AFsUjSQWIzuUCaQ665A3EFdIJG
+oaGFdgM4oRr/oS93tV/6wX6lN2R1jfRO+YyRUzSuddxaonuFuNq+erxvVheDU1c7
+lNs09GI7Jtf6noUinixt
+=wrPo
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-5.2.0-RC1-rev1682085/solr/maven/org/apache/solr/solr-uima/5.2.0/solr-uima-5.2.0.jar.md5
==============================================================================
--- dev/lucene/lucene-solr-5.2.0-RC1-rev1682085/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-RC1-rev1682085/solr/maven/org/apache/solr/solr-uima/5.2.0/solr-uima-5.2.0.jar.md5 Wed May 27 19:25:47 2015
@@ -0,0 +1 @@
+b8e2938d89fc00051d0e63e8dad63657
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.2.0-RC1-rev1682085/solr/maven/org/apache/solr/solr-uima/5.2.0/solr-uima-5.2.0.jar.sha1
==============================================================================
--- dev/lucene/lucene-solr-5.2.0-RC1-rev1682085/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-RC1-rev1682085/solr/maven/org/apache/solr/solr-uima/5.2.0/solr-uima-5.2.0.jar.sha1 Wed May 27 19:25:47 2015
@@ -0,0 +1 @@
+b0585ea2eb9b7bd3326dd195dd2349cbcdc6cc74
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.2.0-RC1-rev1682085/solr/maven/org/apache/solr/solr-uima/5.2.0/solr-uima-5.2.0.pom
==============================================================================
--- dev/lucene/lucene-solr-5.2.0-RC1-rev1682085/solr/maven/org/apache/solr/solr-uima/5.2.0/solr-uima-5.2.0.pom (added)
+++ dev/lucene/lucene-solr-5.2.0-RC1-rev1682085/solr/maven/org/apache/solr/solr-uima/5.2.0/solr-uima-5.2.0.pom Wed May 27 19:25:47 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-RC1-rev1682085/solr/maven/org/apache/solr/solr-uima/5.2.0/solr-uima-5.2.0.pom.asc
==============================================================================
--- dev/lucene/lucene-solr-5.2.0-RC1-rev1682085/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-RC1-rev1682085/solr/maven/org/apache/solr/solr-uima/5.2.0/solr-uima-5.2.0.pom.asc Wed May 27 19:25:47 2015
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Comment: GPGTools - https://gpgtools.org
+
+iQIcBAABCgAGBQJVZgeKAAoJEHWAUcyjoTp/p6EP/3q5+AxcRcRStIWJSTpeMZIK
+5NcukToMzf2Bz+dXDW/WEzdY2H1Fl0pFx98GAbQS2h8x1iWv2U/1QenYq6JNEuRo
+E0Py/cxl14x3NMK6jV8j5RMCQx5Y0T/Fjs/0OGjmW+cPsYyDcnwYJGHCPrfw8vb/
+SftrgkLro0RrUqzQy3V+z2GKMo3hzoOUTe1DaKMF9m8ljSrCJmJiCweu2+1DkSh1
+9PU39WRW4m5n15GBRLFqHWgIDlBJ1c6Mne3OZK3UrcdbmGSuEizCht9VOVEsWlUN
+3pjLI6lW5XHEELqDsRzG6tOvfQaHDqfhhl3Bfhm7gvhYYdP3edAp6Z1CvPtu6SaA
+7yi3RkS0M214Q9SwVzQK/cvvL29n8WeCbcvqCWDERX4UzLcEdF8m1pRRCELD4h/S
+h6UtwOV4p6oWYzwLBNLhDhoFVFIOM7fT/318vNZMfxmvZbHCSIDmGxWmEK+MisLX
+IPekPRkYwIILA5qLrk+ea6w6jKlm701HJ4+QqUfIqVYFGmhgWMrQ0UO0bQ1hpLGw
+VhXkI8V7BJ3aYS5qyf/iBDe5W4ZeD5GP+vggDr5H9g/o5LWKwSSdRrYd+9KbiQ+Q
+7gxRb4SN8EQC+UeM3gYf3RqAr2wtSGcC/ghMFKh2rGhPx+wjW893gwgsiNiAbHQO
+CT/GQnHy1Ou78XGh2KJA
+=k2tS
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-5.2.0-RC1-rev1682085/solr/maven/org/apache/solr/solr-uima/5.2.0/solr-uima-5.2.0.pom.md5
==============================================================================
--- dev/lucene/lucene-solr-5.2.0-RC1-rev1682085/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-RC1-rev1682085/solr/maven/org/apache/solr/solr-uima/5.2.0/solr-uima-5.2.0.pom.md5 Wed May 27 19:25:47 2015
@@ -0,0 +1 @@
+a1b4f1fbac058456e5bb65e372fdf605
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.2.0-RC1-rev1682085/solr/maven/org/apache/solr/solr-uima/5.2.0/solr-uima-5.2.0.pom.sha1
==============================================================================
--- dev/lucene/lucene-solr-5.2.0-RC1-rev1682085/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-RC1-rev1682085/solr/maven/org/apache/solr/solr-uima/5.2.0/solr-uima-5.2.0.pom.sha1 Wed May 27 19:25:47 2015
@@ -0,0 +1 @@
+6715f9ebe7024aee5ecd79e83bef25224ef46f89
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.2.0-RC1-rev1682085/solr/maven/org/apache/solr/solr-uima/maven-metadata.xml
==============================================================================
--- dev/lucene/lucene-solr-5.2.0-RC1-rev1682085/solr/maven/org/apache/solr/solr-uima/maven-metadata.xml (added)
+++ dev/lucene/lucene-solr-5.2.0-RC1-rev1682085/solr/maven/org/apache/solr/solr-uima/maven-metadata.xml Wed May 27 19:25:47 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>20150527180528</lastUpdated>
+  </versioning>
+</metadata>

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

Added: dev/lucene/lucene-solr-5.2.0-RC1-rev1682085/solr/maven/org/apache/solr/solr-uima/maven-metadata.xml.md5
==============================================================================
--- dev/lucene/lucene-solr-5.2.0-RC1-rev1682085/solr/maven/org/apache/solr/solr-uima/maven-metadata.xml.md5 (added)
+++ dev/lucene/lucene-solr-5.2.0-RC1-rev1682085/solr/maven/org/apache/solr/solr-uima/maven-metadata.xml.md5 Wed May 27 19:25:47 2015
@@ -0,0 +1 @@
+50ec134d47243b90d9a371f24cae6383
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.2.0-RC1-rev1682085/solr/maven/org/apache/solr/solr-uima/maven-metadata.xml.sha1
==============================================================================
--- dev/lucene/lucene-solr-5.2.0-RC1-rev1682085/solr/maven/org/apache/solr/solr-uima/maven-metadata.xml.sha1 (added)
+++ dev/lucene/lucene-solr-5.2.0-RC1-rev1682085/solr/maven/org/apache/solr/solr-uima/maven-metadata.xml.sha1 Wed May 27 19:25:47 2015
@@ -0,0 +1 @@
+2c8b0179b75c6693696c23fca60db778f52ab56a
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.2.0-RC1-rev1682085/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-RC1-rev1682085/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-RC1-rev1682085/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-RC1-rev1682085/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-RC1-rev1682085/solr/maven/org/apache/solr/solr-velocity/5.2.0/solr-velocity-5.2.0-javadoc.jar.asc Wed May 27 19:25:47 2015
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Comment: GPGTools - https://gpgtools.org
+
+iQIcBAABCgAGBQJVZgeLAAoJEHWAUcyjoTp/mKYQAM/Ka0q1BCqXZrnU4q5S1xtW
+xIKX7Ce3h/Vj5VT+8VYdCsZVgXEBAlosrMvD6bPX84UlAMXh+lPNIjyHW4RB0VXj
+OrYUUZcYI7AlOKz3Ebi2/DOAf0LEHni8tEXZ8r/s6Eq681ncJzB3NVC9OULEyeW6
+U7ujarPb/vDglwZqSW3znRpUSrGxwDq1h30PQWlTAHnzGqBd36A2T4Tvj526s1L5
+7UJMUhzHSqgYNhODlzNIg5E9YPLyr8miy1oMbSdve5zgbNPSuz3bJzLhmOeLTHa8
+WJMsZWnXoQty9yRG6dKvBh7kDoKyMbdYcyTuuvj0+VK08U3goGuPnPQBBZaD9Yda
+AKyqwip6bsHRTAM8gFo+2DcVhSzzasQzOiEy0BUfhY08hDqhQah5a6hJU2A07sTo
+wmQTGR0XpEceMT7uKOczZuj7h7geUxQ/ufajA/zk2JJPUBb/6ejcljLy3m3/iZR2
+SuyAzAPLyEYenDqsPqVblTkZ3PEh7HFgCmivLhdqGLJxhVBtrTV3v+L/aG+sOBD9
+Wbo71mRANIcY0neR6Lu+mUYus/vE+bx3DtYzQT3IlkDhy6GfAvhLhNj2rMWBNrgf
+RaJE36lkTOSJteJoAJL9M8j6zhDSa0vNzqNYvkA5grMhZQHY0u6IcAeiU2oBr9me
+VTlohynN5MFOsV8DYWfB
+=xGgE
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-5.2.0-RC1-rev1682085/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-RC1-rev1682085/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-RC1-rev1682085/solr/maven/org/apache/solr/solr-velocity/5.2.0/solr-velocity-5.2.0-javadoc.jar.md5 Wed May 27 19:25:47 2015
@@ -0,0 +1 @@
+bc75ef3b0efc24f52055a2f31bdefa69
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.2.0-RC1-rev1682085/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-RC1-rev1682085/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-RC1-rev1682085/solr/maven/org/apache/solr/solr-velocity/5.2.0/solr-velocity-5.2.0-javadoc.jar.sha1 Wed May 27 19:25:47 2015
@@ -0,0 +1 @@
+594ac4266d0ebeebdeaabfe233de1303ac5909a9
\ No newline at end of file

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