You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by no...@apache.org on 2015/09/11 14:20:50 UTC

svn commit: r10467 [18/19] - in /dev/lucene/lucene-solr-5.3.1-RC1-rev1702389: ./ 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/ lu...

Added: dev/lucene/lucene-solr-5.3.1-RC1-rev1702389/solr/maven/org/apache/solr/solr-parent/5.3.1/solr-parent-5.3.1.pom
==============================================================================
--- dev/lucene/lucene-solr-5.3.1-RC1-rev1702389/solr/maven/org/apache/solr/solr-parent/5.3.1/solr-parent-5.3.1.pom (added)
+++ dev/lucene/lucene-solr-5.3.1-RC1-rev1702389/solr/maven/org/apache/solr/solr-parent/5.3.1/solr-parent-5.3.1.pom Fri Sep 11 12:20:48 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.3.1</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.3.1-RC1-rev1702389/solr/maven/org/apache/solr/solr-parent/5.3.1/solr-parent-5.3.1.pom.asc
==============================================================================
--- dev/lucene/lucene-solr-5.3.1-RC1-rev1702389/solr/maven/org/apache/solr/solr-parent/5.3.1/solr-parent-5.3.1.pom.asc (added)
+++ dev/lucene/lucene-solr-5.3.1-RC1-rev1702389/solr/maven/org/apache/solr/solr-parent/5.3.1/solr-parent-5.3.1.pom.asc Fri Sep 11 12:20:48 2015
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Comment: GPGTools - https://gpgtools.org
+
+iQIcBAABCgAGBQJV8p6cAAoJEMOP9ew/z9s+6ZoP/RpYh3a6jTUGtZqQmo0MC+S1
+/oFdGpfFMxgCKl9ELSi5xfiE+9+SU9GmugilJLvrr6wuo5vSv3XX/eUBSOEd9UYQ
++QTZiGDXwTlv5Akmk/40yJOyCr8Y+MBKWd/Wy2h8MtkUHwKjBJszIyCOcqK5Scry
+rhu4HuHsCey/8r+VW0WfTUzs/ztY56KJ0EGfeaSPkCzgNEXcltanV70PyENRtfK7
+W1SvW4H5+5sKfCouORYBkI5N0E6M5eqEjmkGa1GB+QO2acODDVEuSkfDQBhaHiqC
+vKM2KFRuutSGLjZfpAJQvqW97Wm/PeFfPefYo+r4vzUPgWDqsBX7xbyTWzuD58ku
+6ouTK6V6Fheg5y41YA0nKcXji170asmS1AaivtRqLr9hfv4gLt1jFvckYvIvHOXs
+epj44ed/Ae4GqJ46+nDWT2z5SANjcHMOlV7brWm00aH2PlQOPtrhGpKtr5h/ARhi
+88itvq5hEYLE4hZswuTPHSsMdmZn7D7F2St4Rwn7EAVdQ645rrWJYq4jrCUyFQRn
+Ggvse5Eye06fmPtlMrdDAdqqt7q4p0HOUwFZY6CRd37Ex8dYBU0sliHoVqUZLa+t
+XKqX7wi4ndPUOSsrjqQtIg8ehexkLr9r1QOzXQaVzAfjMVCxWNqZ0hrtkhuNQZOD
+vtY1NREpiUB97yxeX+n6
+=wVrV
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-5.3.1-RC1-rev1702389/solr/maven/org/apache/solr/solr-parent/5.3.1/solr-parent-5.3.1.pom.md5
==============================================================================
--- dev/lucene/lucene-solr-5.3.1-RC1-rev1702389/solr/maven/org/apache/solr/solr-parent/5.3.1/solr-parent-5.3.1.pom.md5 (added)
+++ dev/lucene/lucene-solr-5.3.1-RC1-rev1702389/solr/maven/org/apache/solr/solr-parent/5.3.1/solr-parent-5.3.1.pom.md5 Fri Sep 11 12:20:48 2015
@@ -0,0 +1 @@
+aeded871183d02e559f9339f4da359b7
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.3.1-RC1-rev1702389/solr/maven/org/apache/solr/solr-parent/5.3.1/solr-parent-5.3.1.pom.sha1
==============================================================================
--- dev/lucene/lucene-solr-5.3.1-RC1-rev1702389/solr/maven/org/apache/solr/solr-parent/5.3.1/solr-parent-5.3.1.pom.sha1 (added)
+++ dev/lucene/lucene-solr-5.3.1-RC1-rev1702389/solr/maven/org/apache/solr/solr-parent/5.3.1/solr-parent-5.3.1.pom.sha1 Fri Sep 11 12:20:48 2015
@@ -0,0 +1 @@
+b85d790400b6d9b4f7f5660f29ba7be494ef4c3e
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.3.1-RC1-rev1702389/solr/maven/org/apache/solr/solr-parent/maven-metadata.xml
==============================================================================
--- dev/lucene/lucene-solr-5.3.1-RC1-rev1702389/solr/maven/org/apache/solr/solr-parent/maven-metadata.xml (added)
+++ dev/lucene/lucene-solr-5.3.1-RC1-rev1702389/solr/maven/org/apache/solr/solr-parent/maven-metadata.xml Fri Sep 11 12:20:48 2015
@@ -0,0 +1,12 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<metadata>
+  <groupId>org.apache.solr</groupId>
+  <artifactId>solr-parent</artifactId>
+  <version>5.3.1</version>
+  <versioning>
+    <versions>
+      <version>5.3.1</version>
+    </versions>
+    <lastUpdated>20150911092637</lastUpdated>
+  </versioning>
+</metadata>

Added: dev/lucene/lucene-solr-5.3.1-RC1-rev1702389/solr/maven/org/apache/solr/solr-parent/maven-metadata.xml.md5
==============================================================================
--- dev/lucene/lucene-solr-5.3.1-RC1-rev1702389/solr/maven/org/apache/solr/solr-parent/maven-metadata.xml.md5 (added)
+++ dev/lucene/lucene-solr-5.3.1-RC1-rev1702389/solr/maven/org/apache/solr/solr-parent/maven-metadata.xml.md5 Fri Sep 11 12:20:48 2015
@@ -0,0 +1 @@
+8c56c617dcab02513e1dc8ab1c0e06e3
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.3.1-RC1-rev1702389/solr/maven/org/apache/solr/solr-parent/maven-metadata.xml.sha1
==============================================================================
--- dev/lucene/lucene-solr-5.3.1-RC1-rev1702389/solr/maven/org/apache/solr/solr-parent/maven-metadata.xml.sha1 (added)
+++ dev/lucene/lucene-solr-5.3.1-RC1-rev1702389/solr/maven/org/apache/solr/solr-parent/maven-metadata.xml.sha1 Fri Sep 11 12:20:48 2015
@@ -0,0 +1 @@
+050f15fbb3c56b7bc9ed4d53f0a2b56ec3315647
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.3.1-RC1-rev1702389/solr/maven/org/apache/solr/solr-solrj/5.3.1/solr-solrj-5.3.1-javadoc.jar
==============================================================================
Binary file - no diff available.

Propchange: dev/lucene/lucene-solr-5.3.1-RC1-rev1702389/solr/maven/org/apache/solr/solr-solrj/5.3.1/solr-solrj-5.3.1-javadoc.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: dev/lucene/lucene-solr-5.3.1-RC1-rev1702389/solr/maven/org/apache/solr/solr-solrj/5.3.1/solr-solrj-5.3.1-javadoc.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-5.3.1-RC1-rev1702389/solr/maven/org/apache/solr/solr-solrj/5.3.1/solr-solrj-5.3.1-javadoc.jar.asc (added)
+++ dev/lucene/lucene-solr-5.3.1-RC1-rev1702389/solr/maven/org/apache/solr/solr-solrj/5.3.1/solr-solrj-5.3.1-javadoc.jar.asc Fri Sep 11 12:20:48 2015
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Comment: GPGTools - https://gpgtools.org
+
+iQIcBAABCgAGBQJV8p6cAAoJEMOP9ew/z9s+o2YP/j414Aup2Fr/vc6oCvKT7/8Z
+1+uvdJOnER0z74E9ZG808zj0oAvvKpATvloBv66PoqT8cjyDI73UMO7mTA03zKSV
+FWQ7Jf3tBTKgbEdd3xtnolJwYeri+lfLuiqR3LRQWPDKIzmKVWrzsAA7NDKS1mfm
+YnWXSmcL0M4+fMmf9lAABSFQJqDgXen05VrWNMDLQzvEas6ogZC0ZHhO18OX6JWm
+BmFpgtR13SiGCXMLqnI8sxKYkbkcs35mC8+krMd8Bwk003XjyoCI+xWS461Zahe6
+FmlSjcqYUADK9OFgHkesJq2TB220eMzl1Jv5NEGYyWJGdJxs6yT1S5LlMFIPC7A1
+IOSZ+3+2WE8zd0f1rhdXvBd97mOw7Wqw67q0AA8UPEB7MJS7JGAtnrF0wLUftM4R
+6FOVVjq5UhM2y+4Vz+ipewOtdpdIZ2/IeENKPCIPmwq8CXzPYF6wmuhHYKxYGBTd
+Juz7yfA7x0Swlr9hxH6Pv1kXzh9PelyuauyguvPj1xoPcnL+z+/MIhRP7AGQcMdt
+f+QZ+3p8xmtXRsbxjZ9+9TjM+Umv3D8afeVeowWHCKa44/aSZ2OMMhQTzvN8mbcI
+SUdFWmTo5V1Eq/1K5Hh9YC3c9f13lwzgFxFUV5WU2Gcx/HGje9ywxDjXrXYfaxwd
+i+B6vzJX7g+TTpZz2eIk
+=Xzne
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-5.3.1-RC1-rev1702389/solr/maven/org/apache/solr/solr-solrj/5.3.1/solr-solrj-5.3.1-javadoc.jar.md5
==============================================================================
--- dev/lucene/lucene-solr-5.3.1-RC1-rev1702389/solr/maven/org/apache/solr/solr-solrj/5.3.1/solr-solrj-5.3.1-javadoc.jar.md5 (added)
+++ dev/lucene/lucene-solr-5.3.1-RC1-rev1702389/solr/maven/org/apache/solr/solr-solrj/5.3.1/solr-solrj-5.3.1-javadoc.jar.md5 Fri Sep 11 12:20:48 2015
@@ -0,0 +1 @@
+bc06c095b5a61c89f1c94e6db4092693
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.3.1-RC1-rev1702389/solr/maven/org/apache/solr/solr-solrj/5.3.1/solr-solrj-5.3.1-javadoc.jar.sha1
==============================================================================
--- dev/lucene/lucene-solr-5.3.1-RC1-rev1702389/solr/maven/org/apache/solr/solr-solrj/5.3.1/solr-solrj-5.3.1-javadoc.jar.sha1 (added)
+++ dev/lucene/lucene-solr-5.3.1-RC1-rev1702389/solr/maven/org/apache/solr/solr-solrj/5.3.1/solr-solrj-5.3.1-javadoc.jar.sha1 Fri Sep 11 12:20:48 2015
@@ -0,0 +1 @@
+4771ea4dbee9a9174ee17779c8d81d76f66ffae5
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.3.1-RC1-rev1702389/solr/maven/org/apache/solr/solr-solrj/5.3.1/solr-solrj-5.3.1-sources.jar
==============================================================================
Binary file - no diff available.

Propchange: dev/lucene/lucene-solr-5.3.1-RC1-rev1702389/solr/maven/org/apache/solr/solr-solrj/5.3.1/solr-solrj-5.3.1-sources.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: dev/lucene/lucene-solr-5.3.1-RC1-rev1702389/solr/maven/org/apache/solr/solr-solrj/5.3.1/solr-solrj-5.3.1-sources.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-5.3.1-RC1-rev1702389/solr/maven/org/apache/solr/solr-solrj/5.3.1/solr-solrj-5.3.1-sources.jar.asc (added)
+++ dev/lucene/lucene-solr-5.3.1-RC1-rev1702389/solr/maven/org/apache/solr/solr-solrj/5.3.1/solr-solrj-5.3.1-sources.jar.asc Fri Sep 11 12:20:48 2015
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Comment: GPGTools - https://gpgtools.org
+
+iQIcBAABCgAGBQJV8p6dAAoJEMOP9ew/z9s+dkUP/jKT2KUYDhP/yHb0kTVuwq52
+f2qi/pev2XwtSFm8mopMabqnPk8wXVc4z4qb4qkU7T4H2wh+mwXjIgr92ssKj9uN
+ltIeG4hvTIOGEt3S7vDkEOZQeHStSbQ0NBP13rjkmypAZu5w2RP/bItfef3YNM+I
+fT/8XhRcMpaVUoUdf1U5/T6S/Yc1cY1UIii/HMOvjLezoORy+kuobTlZhHxqhhQB
+FGN/kbi9gcXWvLLi1uGrssyop9GSe7KyU9gJkIicLLZkPoKnFqjzFJURwUzJXZh2
+tXznaTDw0R73+TDVEXlsQTXsusAULUAIU3LER3I1j2UnTPLU+a0uVwLonAUmAcjx
+qO53rtY4w0h8AzqzRvIhn+of+rEV3hRM2ccSKvJuBp0LsPz1J04Tsd/qozlV6yDE
+SkzkqzI7qn4cey2TIE6CvAP/OR9PVcqohy/5oZUyjFFI1nlra5nF9QAj2odYQwOl
+wZX3WQZwkZNyG/MinYTSx1WJk/IzghxMGZLd7HtK59bViv1lchpohio3W2mGjRHM
+4fRZI+V9cUkoPk8+UpJgSpyVJ5IdYO88qyB65SCXpAonU0AOpjagI/0sHrW2b3un
+dggADqW4oGN7MDsTF9rvYB1GRdHGRn7R/bUmHbLvvIfhGtbO3POKZqbaqeguykQ+
+GB/JKcf0c66c4UndIbOy
+=LptJ
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-5.3.1-RC1-rev1702389/solr/maven/org/apache/solr/solr-solrj/5.3.1/solr-solrj-5.3.1-sources.jar.md5
==============================================================================
--- dev/lucene/lucene-solr-5.3.1-RC1-rev1702389/solr/maven/org/apache/solr/solr-solrj/5.3.1/solr-solrj-5.3.1-sources.jar.md5 (added)
+++ dev/lucene/lucene-solr-5.3.1-RC1-rev1702389/solr/maven/org/apache/solr/solr-solrj/5.3.1/solr-solrj-5.3.1-sources.jar.md5 Fri Sep 11 12:20:48 2015
@@ -0,0 +1 @@
+e9216754c8ce62fb3ee9d17ab1b6a78a
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.3.1-RC1-rev1702389/solr/maven/org/apache/solr/solr-solrj/5.3.1/solr-solrj-5.3.1-sources.jar.sha1
==============================================================================
--- dev/lucene/lucene-solr-5.3.1-RC1-rev1702389/solr/maven/org/apache/solr/solr-solrj/5.3.1/solr-solrj-5.3.1-sources.jar.sha1 (added)
+++ dev/lucene/lucene-solr-5.3.1-RC1-rev1702389/solr/maven/org/apache/solr/solr-solrj/5.3.1/solr-solrj-5.3.1-sources.jar.sha1 Fri Sep 11 12:20:48 2015
@@ -0,0 +1 @@
+d2f17688e881e5360234e1fc5985d510757db40f
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.3.1-RC1-rev1702389/solr/maven/org/apache/solr/solr-solrj/5.3.1/solr-solrj-5.3.1.jar
==============================================================================
Binary file - no diff available.

Propchange: dev/lucene/lucene-solr-5.3.1-RC1-rev1702389/solr/maven/org/apache/solr/solr-solrj/5.3.1/solr-solrj-5.3.1.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: dev/lucene/lucene-solr-5.3.1-RC1-rev1702389/solr/maven/org/apache/solr/solr-solrj/5.3.1/solr-solrj-5.3.1.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-5.3.1-RC1-rev1702389/solr/maven/org/apache/solr/solr-solrj/5.3.1/solr-solrj-5.3.1.jar.asc (added)
+++ dev/lucene/lucene-solr-5.3.1-RC1-rev1702389/solr/maven/org/apache/solr/solr-solrj/5.3.1/solr-solrj-5.3.1.jar.asc Fri Sep 11 12:20:48 2015
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Comment: GPGTools - https://gpgtools.org
+
+iQIcBAABCgAGBQJV8p6dAAoJEMOP9ew/z9s+NYUP+gPsqr6B5+s9FiZ2RTl4nYSD
+TTHxjAyIi+UQrp2L5EN4m8RQeZ1pBDfSk/xgIToFusBhrT7KcdZquYTvRDKqgPey
+1PbmsBP5YvAxo3SNukn2EoZIciZp9Xfc01ExLf1cIKPsfKmxkwBN4rFRNwxfgKDc
+R9ojqwI4FjZ+bGRuTF41dZXENJbE+YFWNhXI4G6MJYVrXHVBERZZRESAoZXxXo0a
+H5sLL6SW5Vd8gVDkMHwaw7Jz0imLiKZ7GGQcVmDlDv9GZEQlz8kjzxUvbgozJzKE
+nT8B3Ozc8wdqUgM2Ca+n+LqnzLHWeOwIdynjU6rFle2u96NMs3fb93Ba+KU+fneE
+ADKbjjDj/QDs8N8P/8VrCFrRj2arD2eYmJKpyHqucij4AKWJ+0BylnArxZsJXAtG
+kpNeozc8XweRGzg0OnD9b6kDoikNzYScsNHinuXYv2JkLQNTG2kssag5BxPJPC8O
+e/s0swA42CiU/k+VrjX3iIuwb8uXIIEtVDhv+1XiQ+/vVXLqbjB1mqYptSo6Nkih
+xy+pG3+fU4WSyBrKk5j8ZdUgsKGt4snqVxEO6filUeDoTCMx346k4c4w4kymoFdS
+Sbw3qfYajdFuVw+KWNSnhqRqFLBmfdeku4pXM9bZH6kRHZz8YI+76vVfdX0PvwAR
+ncNxu4Tzajz2ROUTL4jU
+=5q4I
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-5.3.1-RC1-rev1702389/solr/maven/org/apache/solr/solr-solrj/5.3.1/solr-solrj-5.3.1.jar.md5
==============================================================================
--- dev/lucene/lucene-solr-5.3.1-RC1-rev1702389/solr/maven/org/apache/solr/solr-solrj/5.3.1/solr-solrj-5.3.1.jar.md5 (added)
+++ dev/lucene/lucene-solr-5.3.1-RC1-rev1702389/solr/maven/org/apache/solr/solr-solrj/5.3.1/solr-solrj-5.3.1.jar.md5 Fri Sep 11 12:20:48 2015
@@ -0,0 +1 @@
+9fc42fcda25f65a4a89711009415b46c
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.3.1-RC1-rev1702389/solr/maven/org/apache/solr/solr-solrj/5.3.1/solr-solrj-5.3.1.jar.sha1
==============================================================================
--- dev/lucene/lucene-solr-5.3.1-RC1-rev1702389/solr/maven/org/apache/solr/solr-solrj/5.3.1/solr-solrj-5.3.1.jar.sha1 (added)
+++ dev/lucene/lucene-solr-5.3.1-RC1-rev1702389/solr/maven/org/apache/solr/solr-solrj/5.3.1/solr-solrj-5.3.1.jar.sha1 Fri Sep 11 12:20:48 2015
@@ -0,0 +1 @@
+f6c145c0ef3ba5f2f5502b2d4d78bd224cc6c6b8
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.3.1-RC1-rev1702389/solr/maven/org/apache/solr/solr-solrj/5.3.1/solr-solrj-5.3.1.pom
==============================================================================
--- dev/lucene/lucene-solr-5.3.1-RC1-rev1702389/solr/maven/org/apache/solr/solr-solrj/5.3.1/solr-solrj-5.3.1.pom (added)
+++ dev/lucene/lucene-solr-5.3.1-RC1-rev1702389/solr/maven/org/apache/solr/solr-solrj/5.3.1/solr-solrj-5.3.1.pom Fri Sep 11 12:20:48 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.3.1</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.3.1-RC1-rev1702389/solr/maven/org/apache/solr/solr-solrj/5.3.1/solr-solrj-5.3.1.pom.asc
==============================================================================
--- dev/lucene/lucene-solr-5.3.1-RC1-rev1702389/solr/maven/org/apache/solr/solr-solrj/5.3.1/solr-solrj-5.3.1.pom.asc (added)
+++ dev/lucene/lucene-solr-5.3.1-RC1-rev1702389/solr/maven/org/apache/solr/solr-solrj/5.3.1/solr-solrj-5.3.1.pom.asc Fri Sep 11 12:20:48 2015
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Comment: GPGTools - https://gpgtools.org
+
+iQIcBAABCgAGBQJV8p6eAAoJEMOP9ew/z9s+Dr4P/2/gxtk4JP/9T085S+er8Rea
++wMeu9m2BrpPNWizLBj9uJTelKxWhqGStRFQw6EIDHJwuUbAMicp76NB82kWY284
+nxt+bMHy1kVtGQZO2EV3kptHBs32Zwpgx8xe1ZRc4eu4eSCSNGsz9VKFVQz5YUe9
+s8wvNPiwgkSuEUt5zOcopXKTvd2AcAqfv7z3HvjWMdtGPOgePjDOxKwQu83dhimQ
+HIYmtApIFBkt2xlJJZSD8Zp8n9Ug8lNhDHCVeEnV77CV7h7IC/dUx7ZOje9/rLIu
+jJ1yk/PI2XxzQnnegaYCs9q+i1cdlVyeQh1sD6mwomkDHAlHqA/3RFT59KbhWtL9
+Jln+XIan3eoM0MxZF+siLcYKqJRaipSw7VtWM3MIkwgDbmAsc/pJsr1FdeGoaowM
+DhhOCniLGR3nurCSyeyerqex8XsNpCAwNcz4wOLIGKUZqrknnN5Y1TvIlYgXIpA0
+ESOMgobqqHQnMrDs0DOxeOs7SNJyQcNI/Tfzp1LiLoPsiKeGEhLMWkUDO7uKi8rO
+NeC9YzX8hX3PZy50a9TjTYLRIO4EDrFTwI8/8uTEoJbcz/FcB1YqUBPV/EDap+JA
+Q9YX1B0vf4SwHDQlfP4Px+EhCx6t/FTQQQocgxm9LMht5DfelFI5MtW1bKPVzozA
+iQAxd0LGdQbmmJ8EJH2b
+=T2/W
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-5.3.1-RC1-rev1702389/solr/maven/org/apache/solr/solr-solrj/5.3.1/solr-solrj-5.3.1.pom.md5
==============================================================================
--- dev/lucene/lucene-solr-5.3.1-RC1-rev1702389/solr/maven/org/apache/solr/solr-solrj/5.3.1/solr-solrj-5.3.1.pom.md5 (added)
+++ dev/lucene/lucene-solr-5.3.1-RC1-rev1702389/solr/maven/org/apache/solr/solr-solrj/5.3.1/solr-solrj-5.3.1.pom.md5 Fri Sep 11 12:20:48 2015
@@ -0,0 +1 @@
+a01fca289a78b011f9f4fde7f937c0db
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.3.1-RC1-rev1702389/solr/maven/org/apache/solr/solr-solrj/5.3.1/solr-solrj-5.3.1.pom.sha1
==============================================================================
--- dev/lucene/lucene-solr-5.3.1-RC1-rev1702389/solr/maven/org/apache/solr/solr-solrj/5.3.1/solr-solrj-5.3.1.pom.sha1 (added)
+++ dev/lucene/lucene-solr-5.3.1-RC1-rev1702389/solr/maven/org/apache/solr/solr-solrj/5.3.1/solr-solrj-5.3.1.pom.sha1 Fri Sep 11 12:20:48 2015
@@ -0,0 +1 @@
+f483da3b02b86e2956bcbfedbaed1d7f06859f68
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.3.1-RC1-rev1702389/solr/maven/org/apache/solr/solr-solrj/maven-metadata.xml
==============================================================================
--- dev/lucene/lucene-solr-5.3.1-RC1-rev1702389/solr/maven/org/apache/solr/solr-solrj/maven-metadata.xml (added)
+++ dev/lucene/lucene-solr-5.3.1-RC1-rev1702389/solr/maven/org/apache/solr/solr-solrj/maven-metadata.xml Fri Sep 11 12:20:48 2015
@@ -0,0 +1,12 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<metadata>
+  <groupId>org.apache.solr</groupId>
+  <artifactId>solr-solrj</artifactId>
+  <version>5.3.1</version>
+  <versioning>
+    <versions>
+      <version>5.3.1</version>
+    </versions>
+    <lastUpdated>20150911092641</lastUpdated>
+  </versioning>
+</metadata>

Added: dev/lucene/lucene-solr-5.3.1-RC1-rev1702389/solr/maven/org/apache/solr/solr-solrj/maven-metadata.xml.md5
==============================================================================
--- dev/lucene/lucene-solr-5.3.1-RC1-rev1702389/solr/maven/org/apache/solr/solr-solrj/maven-metadata.xml.md5 (added)
+++ dev/lucene/lucene-solr-5.3.1-RC1-rev1702389/solr/maven/org/apache/solr/solr-solrj/maven-metadata.xml.md5 Fri Sep 11 12:20:48 2015
@@ -0,0 +1 @@
+9a9e9e0422c63a7590e3cc17d24fe842
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.3.1-RC1-rev1702389/solr/maven/org/apache/solr/solr-solrj/maven-metadata.xml.sha1
==============================================================================
--- dev/lucene/lucene-solr-5.3.1-RC1-rev1702389/solr/maven/org/apache/solr/solr-solrj/maven-metadata.xml.sha1 (added)
+++ dev/lucene/lucene-solr-5.3.1-RC1-rev1702389/solr/maven/org/apache/solr/solr-solrj/maven-metadata.xml.sha1 Fri Sep 11 12:20:48 2015
@@ -0,0 +1 @@
+ae03eaba88bb5f587f9dde0710b0d0ea0cdf8e33
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.3.1-RC1-rev1702389/solr/maven/org/apache/solr/solr-test-framework/5.3.1/solr-test-framework-5.3.1-javadoc.jar
==============================================================================
Binary file - no diff available.

Propchange: dev/lucene/lucene-solr-5.3.1-RC1-rev1702389/solr/maven/org/apache/solr/solr-test-framework/5.3.1/solr-test-framework-5.3.1-javadoc.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: dev/lucene/lucene-solr-5.3.1-RC1-rev1702389/solr/maven/org/apache/solr/solr-test-framework/5.3.1/solr-test-framework-5.3.1-javadoc.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-5.3.1-RC1-rev1702389/solr/maven/org/apache/solr/solr-test-framework/5.3.1/solr-test-framework-5.3.1-javadoc.jar.asc (added)
+++ dev/lucene/lucene-solr-5.3.1-RC1-rev1702389/solr/maven/org/apache/solr/solr-test-framework/5.3.1/solr-test-framework-5.3.1-javadoc.jar.asc Fri Sep 11 12:20:48 2015
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Comment: GPGTools - https://gpgtools.org
+
+iQIcBAABCgAGBQJV8p6eAAoJEMOP9ew/z9s+snMP/R+ihv/O1435p7xHJw78W5rT
+sL9QQ54ZJdsdlnqshaufcXGMSRTal2G//BpCe7P3q9adjJjvjlzt0aM5cW7bs9uK
+B/fAcScxDBBWY0EC6IS2D70mpEcal493l791+HsCi9PPapS7cPooR66ySPvnagNq
+MPFkYKRS83xLvo6Eb3hMs0ySJs8QSpJymfgnIPzILJ/5nQ9cVTefIHwWNNTARTuF
+NCuiVm2NzlCZaAnd8WwocGJnCbR0rWYQ+EbGKu3xSbPvCORY1Wev2ztvcbf0T47x
+zhH72vGxjr4L/kLgwnnH/l3zA9aP+MGSVmHUgV8OoujYq62iPBhNtMCEH7MpaHjT
+3EYJ23iuvz5vd0AcQxzJ+jaWmx8YLZ0PyTXVj12mBwRSBt2lJoxk5kln33Oo8vs6
+nPFlCqjEb4wdOr3cOqCJRy9AvdoMV45d9EZovDz98FuezhOlekhwhle17Aw9uX9m
+ml76PZhFhur1htuhPEmFp4AAE/yb02mdCk+ozmc58BmPFdl+nBLc9hIgKIoL/cwE
+3QmgVI7lUD60Jl7GdB3abT18K1dq51JP8z9rc13Z0hiTD11M8oqA3+Lu9LhVeK2C
+8lTINcG1BvXyeDMqRB7m99r5boKX2B5ymVoTKLzokiX5ovvsKujj/4GwgS7EankI
+Jcw0tdMKKoe4H+6zn23R
+=pHWo
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-5.3.1-RC1-rev1702389/solr/maven/org/apache/solr/solr-test-framework/5.3.1/solr-test-framework-5.3.1-javadoc.jar.md5
==============================================================================
--- dev/lucene/lucene-solr-5.3.1-RC1-rev1702389/solr/maven/org/apache/solr/solr-test-framework/5.3.1/solr-test-framework-5.3.1-javadoc.jar.md5 (added)
+++ dev/lucene/lucene-solr-5.3.1-RC1-rev1702389/solr/maven/org/apache/solr/solr-test-framework/5.3.1/solr-test-framework-5.3.1-javadoc.jar.md5 Fri Sep 11 12:20:48 2015
@@ -0,0 +1 @@
+d487e24a8889eebe7ea93ca65b4f7e1f
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.3.1-RC1-rev1702389/solr/maven/org/apache/solr/solr-test-framework/5.3.1/solr-test-framework-5.3.1-javadoc.jar.sha1
==============================================================================
--- dev/lucene/lucene-solr-5.3.1-RC1-rev1702389/solr/maven/org/apache/solr/solr-test-framework/5.3.1/solr-test-framework-5.3.1-javadoc.jar.sha1 (added)
+++ dev/lucene/lucene-solr-5.3.1-RC1-rev1702389/solr/maven/org/apache/solr/solr-test-framework/5.3.1/solr-test-framework-5.3.1-javadoc.jar.sha1 Fri Sep 11 12:20:48 2015
@@ -0,0 +1 @@
+fcaa4d607c94d32da25ce8568784eb2d1ad532bd
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.3.1-RC1-rev1702389/solr/maven/org/apache/solr/solr-test-framework/5.3.1/solr-test-framework-5.3.1-sources.jar
==============================================================================
Binary file - no diff available.

Propchange: dev/lucene/lucene-solr-5.3.1-RC1-rev1702389/solr/maven/org/apache/solr/solr-test-framework/5.3.1/solr-test-framework-5.3.1-sources.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: dev/lucene/lucene-solr-5.3.1-RC1-rev1702389/solr/maven/org/apache/solr/solr-test-framework/5.3.1/solr-test-framework-5.3.1-sources.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-5.3.1-RC1-rev1702389/solr/maven/org/apache/solr/solr-test-framework/5.3.1/solr-test-framework-5.3.1-sources.jar.asc (added)
+++ dev/lucene/lucene-solr-5.3.1-RC1-rev1702389/solr/maven/org/apache/solr/solr-test-framework/5.3.1/solr-test-framework-5.3.1-sources.jar.asc Fri Sep 11 12:20:48 2015
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Comment: GPGTools - https://gpgtools.org
+
+iQIcBAABCgAGBQJV8p6fAAoJEMOP9ew/z9s+SPkP+QEmkrrqiA1hu8fg09iqWq4I
+ErtrADD2J8XR4frWwM9EwfGBh5ZSecTaFmI4t25H1VnfdKcsktjGeZAGto8gRtYt
+VlfqrH7Tg/KPL8rt6dDQ1IKhiIUPm9NvyYzc/k3KKyBDGTKKpVwlMPBJjRj4Plwf
+GNHc0m2zaAIjo/u5u9krmS3VuBzqnO35GIDyNzYh39U/mUTYxh+2UFaz+5IiBtjA
+zt2PsLFNm1jaJKb7HWHWpFIrxDzEI14fM7BLsDlFuc+FuXCdy5xEzbs7WSiTs9ZZ
+rip48Zh2vaTVIYFBZ3FF1dmA504lKLnSuB709wnsXmbDi9/ShcH5TN6+XJwqRgzz
+5NhoUEDtL+4kjz+KPPlFdMLCtCyYhEjbpn/Li5FxM+cTpXRoxM4pJ2rV+nyKuDwR
+JWJk7XUEyPH7vU7tbKD3lRbqFveR6GaHA6y+RlvZJdbTc7zkZed5juRmPWdZ0OCy
+778TqmnQoDxWzAl2ms2GreQXYhX7rumEhgbwxUP/5p01CfZ4NuXQxn9zcXBGgEuX
+rV74z6vUwO+oiEAX2YK/9bGuohAwmM9elzQ9Zyt+oeGN0G+AaCbG82FyPta8Nnf0
+/R8u5tXjmT8UlZMriUzBsHVWnJ78U9uS6JK9QhpYx6ScXCDAfoizD+Z7cmO1bDAN
+mWN+UtdFMo70+dL/qciL
+=P94Q
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-5.3.1-RC1-rev1702389/solr/maven/org/apache/solr/solr-test-framework/5.3.1/solr-test-framework-5.3.1-sources.jar.md5
==============================================================================
--- dev/lucene/lucene-solr-5.3.1-RC1-rev1702389/solr/maven/org/apache/solr/solr-test-framework/5.3.1/solr-test-framework-5.3.1-sources.jar.md5 (added)
+++ dev/lucene/lucene-solr-5.3.1-RC1-rev1702389/solr/maven/org/apache/solr/solr-test-framework/5.3.1/solr-test-framework-5.3.1-sources.jar.md5 Fri Sep 11 12:20:48 2015
@@ -0,0 +1 @@
+52ff8f9e00415b4587398a0391c626ad
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.3.1-RC1-rev1702389/solr/maven/org/apache/solr/solr-test-framework/5.3.1/solr-test-framework-5.3.1-sources.jar.sha1
==============================================================================
--- dev/lucene/lucene-solr-5.3.1-RC1-rev1702389/solr/maven/org/apache/solr/solr-test-framework/5.3.1/solr-test-framework-5.3.1-sources.jar.sha1 (added)
+++ dev/lucene/lucene-solr-5.3.1-RC1-rev1702389/solr/maven/org/apache/solr/solr-test-framework/5.3.1/solr-test-framework-5.3.1-sources.jar.sha1 Fri Sep 11 12:20:48 2015
@@ -0,0 +1 @@
+4acb1e5e97a752b17cd4faadb5d1b441bcbfeb46
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.3.1-RC1-rev1702389/solr/maven/org/apache/solr/solr-test-framework/5.3.1/solr-test-framework-5.3.1.jar
==============================================================================
Binary file - no diff available.

Propchange: dev/lucene/lucene-solr-5.3.1-RC1-rev1702389/solr/maven/org/apache/solr/solr-test-framework/5.3.1/solr-test-framework-5.3.1.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: dev/lucene/lucene-solr-5.3.1-RC1-rev1702389/solr/maven/org/apache/solr/solr-test-framework/5.3.1/solr-test-framework-5.3.1.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-5.3.1-RC1-rev1702389/solr/maven/org/apache/solr/solr-test-framework/5.3.1/solr-test-framework-5.3.1.jar.asc (added)
+++ dev/lucene/lucene-solr-5.3.1-RC1-rev1702389/solr/maven/org/apache/solr/solr-test-framework/5.3.1/solr-test-framework-5.3.1.jar.asc Fri Sep 11 12:20:48 2015
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Comment: GPGTools - https://gpgtools.org
+
+iQIcBAABCgAGBQJV8p6fAAoJEMOP9ew/z9s+Q1YQAJlqCSjk4jFrpRz+6b4+8Lqf
+cfs96CfzWBrwsMQjAs2ITHB2c7TPEUCcphqxgXxcC7WG8mSbKoCiy8NMP4F+Zxgs
+pOlb64KKjF8Fvg13Nmz9bZEOK36xoW8g7PKdtrfQPomHmy+o0QB9goIffQY8WyCG
+65fYr7zvvZKbCTdSanF2QdZIBCsahQT23o1CAEW1V/liteOA2CuLJS3wcIhnGq9J
+kOsuMeGsadtZG6aZ/W8WxQPYx1jHxVpzivQDn+e2feO58H2wDxhfo2BMY38rtxtu
+892YyN6AagWfWcHUceNkSKErWq5VdKMGfJT7AjcT1sevzqNPhyeSWqzl2l5wMbO/
+txEFbT/qzD2ZaAbWbwY/pTr4k7mZVDK6QpVkZIh88QhjfoGMdUEa7b9n73HwQMnu
+39BaWrDDaxIPcqEOnVtH2Y4p/XljbrxjDindchX3sHogW+6aj0h5ouX4NGq122Xt
+4as53IHGx/xz+UZVSwRqTcM0zFvZcZlCY7q7iYvt5D42WWkrO/fKISJreLM8qpn4
+lCHJqojjtCJfhZ8OKaIG6zccNqA8Ek2J9U3Ss4cG1G/KNZvg1vnFhV5gqyHk6zao
+nWVMRDiMfoZ+63JvzerB+XpJMAtpWcx2jAH8yXa0CSCbJzGYM+At+QcLffTss6LL
+iLL42XWbJLYheoNPEgDa
+=OTE3
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-5.3.1-RC1-rev1702389/solr/maven/org/apache/solr/solr-test-framework/5.3.1/solr-test-framework-5.3.1.jar.md5
==============================================================================
--- dev/lucene/lucene-solr-5.3.1-RC1-rev1702389/solr/maven/org/apache/solr/solr-test-framework/5.3.1/solr-test-framework-5.3.1.jar.md5 (added)
+++ dev/lucene/lucene-solr-5.3.1-RC1-rev1702389/solr/maven/org/apache/solr/solr-test-framework/5.3.1/solr-test-framework-5.3.1.jar.md5 Fri Sep 11 12:20:48 2015
@@ -0,0 +1 @@
+ffe0208018e7bf1b61c613c2fb3a09f8
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.3.1-RC1-rev1702389/solr/maven/org/apache/solr/solr-test-framework/5.3.1/solr-test-framework-5.3.1.jar.sha1
==============================================================================
--- dev/lucene/lucene-solr-5.3.1-RC1-rev1702389/solr/maven/org/apache/solr/solr-test-framework/5.3.1/solr-test-framework-5.3.1.jar.sha1 (added)
+++ dev/lucene/lucene-solr-5.3.1-RC1-rev1702389/solr/maven/org/apache/solr/solr-test-framework/5.3.1/solr-test-framework-5.3.1.jar.sha1 Fri Sep 11 12:20:48 2015
@@ -0,0 +1 @@
+0ac4590069e15f7306f1314056a5111c630e8847
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.3.1-RC1-rev1702389/solr/maven/org/apache/solr/solr-test-framework/5.3.1/solr-test-framework-5.3.1.pom
==============================================================================
--- dev/lucene/lucene-solr-5.3.1-RC1-rev1702389/solr/maven/org/apache/solr/solr-test-framework/5.3.1/solr-test-framework-5.3.1.pom (added)
+++ dev/lucene/lucene-solr-5.3.1-RC1-rev1702389/solr/maven/org/apache/solr/solr-test-framework/5.3.1/solr-test-framework-5.3.1.pom Fri Sep 11 12:20:48 2015
@@ -0,0 +1,406 @@
+<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.3.1</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-sandbox</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.lucene</groupId>
+      <artifactId>lucene-spatial</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.lucene</groupId>
+      <artifactId>lucene-suggest</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.lucene</groupId>
+      <artifactId>lucene-test-framework</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.solr</groupId>
+      <artifactId>solr-core</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.solr</groupId>
+      <artifactId>solr-solrj</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.carrotsearch</groupId>
+      <artifactId>hppc</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.carrotsearch.randomizedtesting</groupId>
+      <artifactId>junit4-ant</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.carrotsearch.randomizedtesting</groupId>
+      <artifactId>randomizedtesting-runner</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.fasterxml.jackson.core</groupId>
+      <artifactId>jackson-core</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.fasterxml.jackson.dataformat</groupId>
+      <artifactId>jackson-dataformat-smile</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.google.guava</groupId>
+      <artifactId>guava</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.google.protobuf</groupId>
+      <artifactId>protobuf-java</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.googlecode.concurrentlinkedhashmap</groupId>
+      <artifactId>concurrentlinkedhashmap-lru</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.spatial4j</groupId>
+      <artifactId>spatial4j</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.tdunning</groupId>
+      <artifactId>t-digest</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>commons-cli</groupId>
+      <artifactId>commons-cli</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>commons-codec</groupId>
+      <artifactId>commons-codec</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>commons-collections</groupId>
+      <artifactId>commons-collections</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>commons-configuration</groupId>
+      <artifactId>commons-configuration</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>commons-fileupload</groupId>
+      <artifactId>commons-fileupload</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>commons-io</groupId>
+      <artifactId>commons-io</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>commons-lang</groupId>
+      <artifactId>commons-lang</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>dom4j</groupId>
+      <artifactId>dom4j</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>javax.servlet</groupId>
+      <artifactId>javax.servlet-api</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>joda-time</groupId>
+      <artifactId>joda-time</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>junit</groupId>
+      <artifactId>junit</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>log4j</groupId>
+      <artifactId>log4j</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.antlr</groupId>
+      <artifactId>antlr-runtime</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.ant</groupId>
+      <artifactId>ant</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.commons</groupId>
+      <artifactId>commons-exec</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.hadoop</groupId>
+      <artifactId>hadoop-annotations</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.hadoop</groupId>
+      <artifactId>hadoop-auth</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.hadoop</groupId>
+      <artifactId>hadoop-common</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.hadoop</groupId>
+      <artifactId>hadoop-hdfs</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.httpcomponents</groupId>
+      <artifactId>httpclient</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.httpcomponents</groupId>
+      <artifactId>httpcore</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.httpcomponents</groupId>
+      <artifactId>httpmime</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.zookeeper</groupId>
+      <artifactId>zookeeper</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.codehaus.woodstox</groupId>
+      <artifactId>stax2-api</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.codehaus.woodstox</groupId>
+      <artifactId>woodstox-core-asl</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.eclipse.jetty</groupId>
+      <artifactId>jetty-continuation</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.eclipse.jetty</groupId>
+      <artifactId>jetty-deploy</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.eclipse.jetty</groupId>
+      <artifactId>jetty-http</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.eclipse.jetty</groupId>
+      <artifactId>jetty-io</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.eclipse.jetty</groupId>
+      <artifactId>jetty-jmx</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.eclipse.jetty</groupId>
+      <artifactId>jetty-rewrite</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.eclipse.jetty</groupId>
+      <artifactId>jetty-security</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.eclipse.jetty</groupId>
+      <artifactId>jetty-server</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.eclipse.jetty</groupId>
+      <artifactId>jetty-servlet</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.eclipse.jetty</groupId>
+      <artifactId>jetty-servlets</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.eclipse.jetty</groupId>
+      <artifactId>jetty-util</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.eclipse.jetty</groupId>
+      <artifactId>jetty-webapp</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.eclipse.jetty</groupId>
+      <artifactId>jetty-xml</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.htrace</groupId>
+      <artifactId>htrace-core</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.noggit</groupId>
+      <artifactId>noggit</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.ow2.asm</groupId>
+      <artifactId>asm</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.ow2.asm</groupId>
+      <artifactId>asm-commons</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.restlet.jee</groupId>
+      <artifactId>org.restlet</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.restlet.jee</groupId>
+      <artifactId>org.restlet.ext.servlet</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.slf4j</groupId>
+      <artifactId>jcl-over-slf4j</artifactId>
+      <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.3.1-RC1-rev1702389/solr/maven/org/apache/solr/solr-test-framework/5.3.1/solr-test-framework-5.3.1.pom.asc
==============================================================================
--- dev/lucene/lucene-solr-5.3.1-RC1-rev1702389/solr/maven/org/apache/solr/solr-test-framework/5.3.1/solr-test-framework-5.3.1.pom.asc (added)
+++ dev/lucene/lucene-solr-5.3.1-RC1-rev1702389/solr/maven/org/apache/solr/solr-test-framework/5.3.1/solr-test-framework-5.3.1.pom.asc Fri Sep 11 12:20:48 2015
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Comment: GPGTools - https://gpgtools.org
+
+iQIcBAABCgAGBQJV8p6gAAoJEMOP9ew/z9s+c6cQAJ26+dvtc/L7Aylyvb1U5VHs
+QwNyjEMj9nElmK+hqJfNF06i5yWKNUvaWh+jvO6oYZcvH0sCR5hYKbikEeK8KKVx
+rgdDo1PWXyjhEgOPVwyc8LBoISfUV7rldjxfhTrE/jUzcM5SQjinLZAb9NPpnKC2
+0tYqAEnxzq3vv/gdZFVrgf1A7YWv61aReFXa10bVJ15Y9NA7hWtydyy6pdhnY+OL
+/tDBQI8d+TL0p8T3nIIbf4Wcsra3fzyQMNkUdpqjDBXAJu6P1SU9gBxXLaRRO+eK
+sPeMqUJaw2OoOIKjKGFKA+iadOFXNbSrs7aILK6iepo8HAtJ9JIRomh+xh/T0WMD
+WHpi6k89eI8h/I+awPY51Tw1x8BgQbGu9cZG54jyEJcQeljPtwlW7rHabjW6Po0e
+2iBl+3/RC3Zk9bgTH1bZky7ZvfDE9qACOJEpb+z1pMFWjuveq4Vtg+YT0qmMe28D
++K5pU6UdZBvBLOqqRUCc9i75Z4KrRkUK327hzzlId8wd6hhQvhf9ucYHacYGGv6x
+t76jJzPppYcKsCJYew9QcRDinIPGl4PdkpbuWIOGd5MvaUmz5LZLGzE0cUlwT9Ah
+PAxxFDhImxzpt3eO7cUbH87vICZIP1UM24RQcZuRpNkXzn6nvw+B8aKlzgjPNM+7
+YzmKAI2rIqPnIXyc5Ygb
+=4R9o
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-5.3.1-RC1-rev1702389/solr/maven/org/apache/solr/solr-test-framework/5.3.1/solr-test-framework-5.3.1.pom.md5
==============================================================================
--- dev/lucene/lucene-solr-5.3.1-RC1-rev1702389/solr/maven/org/apache/solr/solr-test-framework/5.3.1/solr-test-framework-5.3.1.pom.md5 (added)
+++ dev/lucene/lucene-solr-5.3.1-RC1-rev1702389/solr/maven/org/apache/solr/solr-test-framework/5.3.1/solr-test-framework-5.3.1.pom.md5 Fri Sep 11 12:20:48 2015
@@ -0,0 +1 @@
+9b53d8d1d7462e51b61ee15f425b99e0
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.3.1-RC1-rev1702389/solr/maven/org/apache/solr/solr-test-framework/5.3.1/solr-test-framework-5.3.1.pom.sha1
==============================================================================
--- dev/lucene/lucene-solr-5.3.1-RC1-rev1702389/solr/maven/org/apache/solr/solr-test-framework/5.3.1/solr-test-framework-5.3.1.pom.sha1 (added)
+++ dev/lucene/lucene-solr-5.3.1-RC1-rev1702389/solr/maven/org/apache/solr/solr-test-framework/5.3.1/solr-test-framework-5.3.1.pom.sha1 Fri Sep 11 12:20:48 2015
@@ -0,0 +1 @@
+b76fa70ad1682a4c10f406ac8720a7b18598d79f
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.3.1-RC1-rev1702389/solr/maven/org/apache/solr/solr-test-framework/maven-metadata.xml
==============================================================================
--- dev/lucene/lucene-solr-5.3.1-RC1-rev1702389/solr/maven/org/apache/solr/solr-test-framework/maven-metadata.xml (added)
+++ dev/lucene/lucene-solr-5.3.1-RC1-rev1702389/solr/maven/org/apache/solr/solr-test-framework/maven-metadata.xml Fri Sep 11 12:20:48 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.3.1</version>
+  <versioning>
+    <versions>
+      <version>5.3.1</version>
+    </versions>
+    <lastUpdated>20150911092643</lastUpdated>
+  </versioning>
+</metadata>

Added: dev/lucene/lucene-solr-5.3.1-RC1-rev1702389/solr/maven/org/apache/solr/solr-test-framework/maven-metadata.xml.md5
==============================================================================
--- dev/lucene/lucene-solr-5.3.1-RC1-rev1702389/solr/maven/org/apache/solr/solr-test-framework/maven-metadata.xml.md5 (added)
+++ dev/lucene/lucene-solr-5.3.1-RC1-rev1702389/solr/maven/org/apache/solr/solr-test-framework/maven-metadata.xml.md5 Fri Sep 11 12:20:48 2015
@@ -0,0 +1 @@
+1bf03081400ca7284275db7cb1a32b4a
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.3.1-RC1-rev1702389/solr/maven/org/apache/solr/solr-test-framework/maven-metadata.xml.sha1
==============================================================================
--- dev/lucene/lucene-solr-5.3.1-RC1-rev1702389/solr/maven/org/apache/solr/solr-test-framework/maven-metadata.xml.sha1 (added)
+++ dev/lucene/lucene-solr-5.3.1-RC1-rev1702389/solr/maven/org/apache/solr/solr-test-framework/maven-metadata.xml.sha1 Fri Sep 11 12:20:48 2015
@@ -0,0 +1 @@
+9925667e3de679c3960a62d98b9c9493b95550b9
\ No newline at end of file

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

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

Added: dev/lucene/lucene-solr-5.3.1-RC1-rev1702389/solr/maven/org/apache/solr/solr-uima/5.3.1/solr-uima-5.3.1-javadoc.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-5.3.1-RC1-rev1702389/solr/maven/org/apache/solr/solr-uima/5.3.1/solr-uima-5.3.1-javadoc.jar.asc (added)
+++ dev/lucene/lucene-solr-5.3.1-RC1-rev1702389/solr/maven/org/apache/solr/solr-uima/5.3.1/solr-uima-5.3.1-javadoc.jar.asc Fri Sep 11 12:20:48 2015
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Comment: GPGTools - https://gpgtools.org
+
+iQIcBAABCgAGBQJV8p6hAAoJEMOP9ew/z9s+MtwP/1AzMdug8jC/IojEZSwubqhD
+NgA/Qh5uCy1oE1bn1QwanxlzmXN1bnuhRqYnW0oGQJ8UbPJ1S3kIX1JSFGPP3iyl
+kSTMyg7lunDltwqGOgflcsS9HO3OwAFYyCjKYl+DUy0+p+YHbBcyfXuqpuRIJBl0
+TrGOZv2nYiZkl9rBU7VupfAdeGK4y3O2HC6LUa5beeyPcLN/XC6f89Rmc+DXNPwb
+uDYbGdOJ/EQ6CLfTCBWGTHKyehKi3cDSk/k6FiU8XVpqGS0xiHhUxO0Q44iem1iI
+Vi/Tt1R5ObL0XEm96b/TiXrn0Bt3htToQvp4i76M2srVwPeaLGGNDMZ0Zj44Vyy4
+iAmwwq0THqH4myvRso9ubR0YhbFAnkrCyrxIIPA6ypnpEGbaQo3FOENhijXmH/iU
+85dU6hUVIFl/61tOgyjDnfkXPOJHw1lPDUmIS4OQPFx+vw4ou87hiCzVMUmMWxuM
+82FuBYhtRqBRxlix43YIdpUyICNN0eU5XCH3N42cISu6c5iysuZewfgIMTT027pN
+9wW5VNEEAVnkK0lhhfoOAk0FUPFKzxL/fN5l3E+619YCcQXepg09W+R2ox3wIDBM
+T8/FfrqQnfHeYknwEd/2PHFGpZhLdOyFuR+mVRBwBzA5hNzfXMBvMLpHmprJP7fU
+ChM5zudhLxB7F8JwuCOV
+=quFS
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-5.3.1-RC1-rev1702389/solr/maven/org/apache/solr/solr-uima/5.3.1/solr-uima-5.3.1-javadoc.jar.md5
==============================================================================
--- dev/lucene/lucene-solr-5.3.1-RC1-rev1702389/solr/maven/org/apache/solr/solr-uima/5.3.1/solr-uima-5.3.1-javadoc.jar.md5 (added)
+++ dev/lucene/lucene-solr-5.3.1-RC1-rev1702389/solr/maven/org/apache/solr/solr-uima/5.3.1/solr-uima-5.3.1-javadoc.jar.md5 Fri Sep 11 12:20:48 2015
@@ -0,0 +1 @@
+b69d318e000f0e69ac8d13f00b0f2041
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.3.1-RC1-rev1702389/solr/maven/org/apache/solr/solr-uima/5.3.1/solr-uima-5.3.1-javadoc.jar.sha1
==============================================================================
--- dev/lucene/lucene-solr-5.3.1-RC1-rev1702389/solr/maven/org/apache/solr/solr-uima/5.3.1/solr-uima-5.3.1-javadoc.jar.sha1 (added)
+++ dev/lucene/lucene-solr-5.3.1-RC1-rev1702389/solr/maven/org/apache/solr/solr-uima/5.3.1/solr-uima-5.3.1-javadoc.jar.sha1 Fri Sep 11 12:20:48 2015
@@ -0,0 +1 @@
+1e222fc331a1fe7f8627996186706a5c11da7e5e
\ No newline at end of file

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

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

Added: dev/lucene/lucene-solr-5.3.1-RC1-rev1702389/solr/maven/org/apache/solr/solr-uima/5.3.1/solr-uima-5.3.1-sources.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-5.3.1-RC1-rev1702389/solr/maven/org/apache/solr/solr-uima/5.3.1/solr-uima-5.3.1-sources.jar.asc (added)
+++ dev/lucene/lucene-solr-5.3.1-RC1-rev1702389/solr/maven/org/apache/solr/solr-uima/5.3.1/solr-uima-5.3.1-sources.jar.asc Fri Sep 11 12:20:48 2015
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Comment: GPGTools - https://gpgtools.org
+
+iQIcBAABCgAGBQJV8p6hAAoJEMOP9ew/z9s+6ewQAIhSqon7r+Fc69u6ELmYQlyS
+0wfrq07jBZwG1IgKbgobmQhXDerc+/R0059bshFZyHfFjjjSIKITIn0nJ7k8UjrN
+xJUwR1YzAnYFi00Ezjya8hXfKUi22A18gEH6xm48QsSMxg2g2SRGhEh2Q3q/mLCe
+m6vZF0kKKWTadX3G66Ld1ZbvfSsgc4b9wigKwhsEcXfVcuygbWi8K9qGZ5LEHBao
+8zkSbBzhu7LSFZBUQo+l2bLsKpFcvkmYJ2PLZjzVcdo9eEbMxG0nhT8LinhbvbYJ
+JKlqP8JMUiq0+VacKJX5HMgJ4kH7O1Euzm7fmF4rPUNWc8L9FW26CWE1Lui2zvoQ
+mt/AuN+ilh4FKrbwQ4Ykkv8q4P1aZY3V1xlsQidRHHgJ4ef2vKmWVZfII5gYBnjn
+9k9yKVaO4rM3shAYhMrtTGy/QlP7RfRwfKciO6RRnFZcM7J5UvS+aVl3iZFa7I/b
+T8MChSRTRbldhr3GBcqrEnadtCsA0xiTEljGGACD08KiwHzOF6rC1EIqFviR+Tw+
+l2PaZ6ICSDfKUEaUQ7gsQxISaRDdOT89QQZ0H3zOLZKkXQtugWg9RQn7XXdNBvKZ
+6Atwn6B9+EXB/Sa0RzHgzhOJNyirIewNYLl2W3dJRH0KsXOq6oM1tVQFtQzx6kfz
+sk/xgHmi+pmgxyyJRvln
+=DWF5
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-5.3.1-RC1-rev1702389/solr/maven/org/apache/solr/solr-uima/5.3.1/solr-uima-5.3.1-sources.jar.md5
==============================================================================
--- dev/lucene/lucene-solr-5.3.1-RC1-rev1702389/solr/maven/org/apache/solr/solr-uima/5.3.1/solr-uima-5.3.1-sources.jar.md5 (added)
+++ dev/lucene/lucene-solr-5.3.1-RC1-rev1702389/solr/maven/org/apache/solr/solr-uima/5.3.1/solr-uima-5.3.1-sources.jar.md5 Fri Sep 11 12:20:48 2015
@@ -0,0 +1 @@
+ac734513b9d8822dcff1282a8f743c7e
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.3.1-RC1-rev1702389/solr/maven/org/apache/solr/solr-uima/5.3.1/solr-uima-5.3.1-sources.jar.sha1
==============================================================================
--- dev/lucene/lucene-solr-5.3.1-RC1-rev1702389/solr/maven/org/apache/solr/solr-uima/5.3.1/solr-uima-5.3.1-sources.jar.sha1 (added)
+++ dev/lucene/lucene-solr-5.3.1-RC1-rev1702389/solr/maven/org/apache/solr/solr-uima/5.3.1/solr-uima-5.3.1-sources.jar.sha1 Fri Sep 11 12:20:48 2015
@@ -0,0 +1 @@
+a4d55e8496a1497d3928b7f059919bf5dc35cd55
\ No newline at end of file

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

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

Added: dev/lucene/lucene-solr-5.3.1-RC1-rev1702389/solr/maven/org/apache/solr/solr-uima/5.3.1/solr-uima-5.3.1.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-5.3.1-RC1-rev1702389/solr/maven/org/apache/solr/solr-uima/5.3.1/solr-uima-5.3.1.jar.asc (added)
+++ dev/lucene/lucene-solr-5.3.1-RC1-rev1702389/solr/maven/org/apache/solr/solr-uima/5.3.1/solr-uima-5.3.1.jar.asc Fri Sep 11 12:20:48 2015
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Comment: GPGTools - https://gpgtools.org
+
+iQIcBAABCgAGBQJV8p6iAAoJEMOP9ew/z9s+mWwP/2V66z9xCtkccx9e5TKFtW8U
+1m1/wmfYjGALzIl/QFc9P5PQ5Hyj+2vUmnxdRTY/53tOpLo7o+E5vaejUeUSY1k4
+9bcPArIDJUO+yU+Bzp2R65lk+R8+3vswWDNcsO9H2R/FIoD3dktK/K5ga9ngLHGo
+Efs58ZqwbpkQIzQiJUyn7ZUaodlTgItev497GGT03zWWXWa8LxI0G8Q6pbw/0OeE
+lD4yVAOShxmGcSZH/h6T8a4JfGyvhYWf0w6oLtazgiGqXjK5WijKDzaaqF3mHoE2
+lO/UyfzykgjFjCT2JvPhx3C+EgpU5gZ3icsHOIMrg5Vp3joJkugGyPqYoW3J+Tmh
+dWIK2GQwWWFhU7q3YYL+3C0u6gdJEfNwksb/YZGwlNT6IdVsMhYL1qmzYSnRodfm
+5Jga0uisqDbS8Nagxiz/kNvoNkm30+SOKS9CJG3uuN5YYikGyJyWJZtE52T6Jxgo
+e9qB1yaTzR9W0hhJHpKm8sgkT0BGQBkWih2nbbei1P5Rb1UArWxYiCsRTWbHCRt1
+JNOg/30FjAKgNISexMh7/o56YmkMG689IZKLGy1DbMI9iYlbRMqw/94lt3ATBMUa
+wJh2R+k3vWjfDNK8OPDBjiUVWt1ALfUPWB2VOUfcmAyS5RR/1CNyXTD6KUeClNK9
+RV2J2xuYmRvFKGe7q9WQ
+=jTgL
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-5.3.1-RC1-rev1702389/solr/maven/org/apache/solr/solr-uima/5.3.1/solr-uima-5.3.1.jar.md5
==============================================================================
--- dev/lucene/lucene-solr-5.3.1-RC1-rev1702389/solr/maven/org/apache/solr/solr-uima/5.3.1/solr-uima-5.3.1.jar.md5 (added)
+++ dev/lucene/lucene-solr-5.3.1-RC1-rev1702389/solr/maven/org/apache/solr/solr-uima/5.3.1/solr-uima-5.3.1.jar.md5 Fri Sep 11 12:20:48 2015
@@ -0,0 +1 @@
+4dc1bfa908a8415745db3e39d838067d
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.3.1-RC1-rev1702389/solr/maven/org/apache/solr/solr-uima/5.3.1/solr-uima-5.3.1.jar.sha1
==============================================================================
--- dev/lucene/lucene-solr-5.3.1-RC1-rev1702389/solr/maven/org/apache/solr/solr-uima/5.3.1/solr-uima-5.3.1.jar.sha1 (added)
+++ dev/lucene/lucene-solr-5.3.1-RC1-rev1702389/solr/maven/org/apache/solr/solr-uima/5.3.1/solr-uima-5.3.1.jar.sha1 Fri Sep 11 12:20:48 2015
@@ -0,0 +1 @@
+46859a4c5e4975d8fd1ad6603316e472239355dd
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.3.1-RC1-rev1702389/solr/maven/org/apache/solr/solr-uima/5.3.1/solr-uima-5.3.1.pom
==============================================================================
--- dev/lucene/lucene-solr-5.3.1-RC1-rev1702389/solr/maven/org/apache/solr/solr-uima/5.3.1/solr-uima-5.3.1.pom (added)
+++ dev/lucene/lucene-solr-5.3.1-RC1-rev1702389/solr/maven/org/apache/solr/solr-uima/5.3.1/solr-uima-5.3.1.pom Fri Sep 11 12:20:48 2015
@@ -0,0 +1,404 @@
+<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.3.1</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-sandbox</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.lucene</groupId>
+      <artifactId>lucene-spatial</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.lucene</groupId>
+      <artifactId>lucene-suggest</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.solr</groupId>
+      <artifactId>solr-core</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.solr</groupId>
+      <artifactId>solr-solrj</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.carrotsearch</groupId>
+      <artifactId>hppc</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.fasterxml.jackson.core</groupId>
+      <artifactId>jackson-core</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.fasterxml.jackson.dataformat</groupId>
+      <artifactId>jackson-dataformat-smile</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.google.guava</groupId>
+      <artifactId>guava</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.google.protobuf</groupId>
+      <artifactId>protobuf-java</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.googlecode.concurrentlinkedhashmap</groupId>
+      <artifactId>concurrentlinkedhashmap-lru</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.spatial4j</groupId>
+      <artifactId>spatial4j</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.tdunning</groupId>
+      <artifactId>t-digest</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>commons-cli</groupId>
+      <artifactId>commons-cli</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>commons-codec</groupId>
+      <artifactId>commons-codec</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>commons-collections</groupId>
+      <artifactId>commons-collections</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>commons-configuration</groupId>
+      <artifactId>commons-configuration</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>commons-digester</groupId>
+      <artifactId>commons-digester</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>commons-fileupload</groupId>
+      <artifactId>commons-fileupload</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>commons-io</groupId>
+      <artifactId>commons-io</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>commons-lang</groupId>
+      <artifactId>commons-lang</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>dom4j</groupId>
+      <artifactId>dom4j</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>javax.servlet</groupId>
+      <artifactId>javax.servlet-api</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>joda-time</groupId>
+      <artifactId>joda-time</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>log4j</groupId>
+      <artifactId>log4j</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.antlr</groupId>
+      <artifactId>antlr-runtime</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.commons</groupId>
+      <artifactId>commons-exec</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.hadoop</groupId>
+      <artifactId>hadoop-annotations</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.hadoop</groupId>
+      <artifactId>hadoop-auth</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.hadoop</groupId>
+      <artifactId>hadoop-common</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.hadoop</groupId>
+      <artifactId>hadoop-hdfs</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.httpcomponents</groupId>
+      <artifactId>httpclient</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.httpcomponents</groupId>
+      <artifactId>httpcore</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.httpcomponents</groupId>
+      <artifactId>httpmime</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.uima</groupId>
+      <artifactId>AlchemyAPIAnnotator</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.uima</groupId>
+      <artifactId>OpenCalaisAnnotator</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.uima</groupId>
+      <artifactId>Tagger</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.uima</groupId>
+      <artifactId>WhitespaceTokenizer</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.uima</groupId>
+      <artifactId>uimaj-core</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.zookeeper</groupId>
+      <artifactId>zookeeper</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.codehaus.woodstox</groupId>
+      <artifactId>stax2-api</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.codehaus.woodstox</groupId>
+      <artifactId>woodstox-core-asl</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.eclipse.jetty</groupId>
+      <artifactId>jetty-continuation</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.eclipse.jetty</groupId>
+      <artifactId>jetty-deploy</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.eclipse.jetty</groupId>
+      <artifactId>jetty-http</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.eclipse.jetty</groupId>
+      <artifactId>jetty-io</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.eclipse.jetty</groupId>
+      <artifactId>jetty-jmx</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.eclipse.jetty</groupId>
+      <artifactId>jetty-rewrite</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.eclipse.jetty</groupId>
+      <artifactId>jetty-security</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.eclipse.jetty</groupId>
+      <artifactId>jetty-server</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.eclipse.jetty</groupId>
+      <artifactId>jetty-servlet</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.eclipse.jetty</groupId>
+      <artifactId>jetty-servlets</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.eclipse.jetty</groupId>
+      <artifactId>jetty-util</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.eclipse.jetty</groupId>
+      <artifactId>jetty-webapp</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.eclipse.jetty</groupId>
+      <artifactId>jetty-xml</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.htrace</groupId>
+      <artifactId>htrace-core</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.noggit</groupId>
+      <artifactId>noggit</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.ow2.asm</groupId>
+      <artifactId>asm</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.ow2.asm</groupId>
+      <artifactId>asm-commons</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.restlet.jee</groupId>
+      <artifactId>org.restlet</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.restlet.jee</groupId>
+      <artifactId>org.restlet.ext.servlet</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.slf4j</groupId>
+      <artifactId>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.3.1-RC1-rev1702389/solr/maven/org/apache/solr/solr-uima/5.3.1/solr-uima-5.3.1.pom.asc
==============================================================================
--- dev/lucene/lucene-solr-5.3.1-RC1-rev1702389/solr/maven/org/apache/solr/solr-uima/5.3.1/solr-uima-5.3.1.pom.asc (added)
+++ dev/lucene/lucene-solr-5.3.1-RC1-rev1702389/solr/maven/org/apache/solr/solr-uima/5.3.1/solr-uima-5.3.1.pom.asc Fri Sep 11 12:20:48 2015
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Comment: GPGTools - https://gpgtools.org
+
+iQIcBAABCgAGBQJV8p6iAAoJEMOP9ew/z9s+tkEP/3T4pbVeq/7WdI6xdJtAV8Qn
+ev/t5RclsjpT7f0ls7Z0Q1FKGdf3SSrYyt9YRNYFxfFh3a+GfVPjamgXplSco9GD
+btndB9g9dLdoFdCoZrN5XXdygWb5GHJ1HwChbQhvmkUvVfAMoii1iQ925RCBluoH
+5Jw5C+WGf3RauRKRukaGFRvKDE53Fnp3vz71mAjvoqK5bzyHmjnmcAXGcpvvuHzv
+54+6W6GryrZZ2mQFMtfJdLCNJhhC5XWGhtLywfGnT/Dp1fUbmck9DEMy1V6jtCDr
+XECZ5xxntA4NjDqH9PZYcTv4lkOVrQdZA98XhCbQUrL191yk1COgKi9CoVSReZ1a
+N7sVcGEPmUhNW5YLkl53hloK4wgkB/5S/RklUecH4yA18SmWlFQ45huyiYVJszN6
+C4qq0uK+mM/glA1GfcJ0P7KjoJZUaxr52zgVYnyWFdminPoHDicz6EFlD1uuR4cI
+HtsMTCLKSS77bDTm8Ev+tuy7JDS2sQ+lOcfJCA+NAk3sNOZZRk4iHJbaVGoyH5Te
+J1LSyNpvPujhruPWm60WL3ExG6hmf8ZHq9ZN/61leyvKhJYW6WGLBEoVi7TU9kHn
+HLHfcTfAG54fdEScxl/+icWI/XpFaI5LfMoRyLzkA3gebHrZHZMGliFsmVWfPpEq
+vs6RGny6pxwpfdUxvzQ+
+=/aqd
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-5.3.1-RC1-rev1702389/solr/maven/org/apache/solr/solr-uima/5.3.1/solr-uima-5.3.1.pom.md5
==============================================================================
--- dev/lucene/lucene-solr-5.3.1-RC1-rev1702389/solr/maven/org/apache/solr/solr-uima/5.3.1/solr-uima-5.3.1.pom.md5 (added)
+++ dev/lucene/lucene-solr-5.3.1-RC1-rev1702389/solr/maven/org/apache/solr/solr-uima/5.3.1/solr-uima-5.3.1.pom.md5 Fri Sep 11 12:20:48 2015
@@ -0,0 +1 @@
+afdfdc072e89c1802109a9472e7194d5
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.3.1-RC1-rev1702389/solr/maven/org/apache/solr/solr-uima/5.3.1/solr-uima-5.3.1.pom.sha1
==============================================================================
--- dev/lucene/lucene-solr-5.3.1-RC1-rev1702389/solr/maven/org/apache/solr/solr-uima/5.3.1/solr-uima-5.3.1.pom.sha1 (added)
+++ dev/lucene/lucene-solr-5.3.1-RC1-rev1702389/solr/maven/org/apache/solr/solr-uima/5.3.1/solr-uima-5.3.1.pom.sha1 Fri Sep 11 12:20:48 2015
@@ -0,0 +1 @@
+53be3c62d4772cdf9a38611671a76155cd9952c1
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.3.1-RC1-rev1702389/solr/maven/org/apache/solr/solr-uima/maven-metadata.xml
==============================================================================
--- dev/lucene/lucene-solr-5.3.1-RC1-rev1702389/solr/maven/org/apache/solr/solr-uima/maven-metadata.xml (added)
+++ dev/lucene/lucene-solr-5.3.1-RC1-rev1702389/solr/maven/org/apache/solr/solr-uima/maven-metadata.xml Fri Sep 11 12:20:48 2015
@@ -0,0 +1,12 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<metadata>
+  <groupId>org.apache.solr</groupId>
+  <artifactId>solr-uima</artifactId>
+  <version>5.3.1</version>
+  <versioning>
+    <versions>
+      <version>5.3.1</version>
+    </versions>
+    <lastUpdated>20150911092727</lastUpdated>
+  </versioning>
+</metadata>

Added: dev/lucene/lucene-solr-5.3.1-RC1-rev1702389/solr/maven/org/apache/solr/solr-uima/maven-metadata.xml.md5
==============================================================================
--- dev/lucene/lucene-solr-5.3.1-RC1-rev1702389/solr/maven/org/apache/solr/solr-uima/maven-metadata.xml.md5 (added)
+++ dev/lucene/lucene-solr-5.3.1-RC1-rev1702389/solr/maven/org/apache/solr/solr-uima/maven-metadata.xml.md5 Fri Sep 11 12:20:48 2015
@@ -0,0 +1 @@
+a6ec063cf94a659cb435e5ea4b67ad0d
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.3.1-RC1-rev1702389/solr/maven/org/apache/solr/solr-uima/maven-metadata.xml.sha1
==============================================================================
--- dev/lucene/lucene-solr-5.3.1-RC1-rev1702389/solr/maven/org/apache/solr/solr-uima/maven-metadata.xml.sha1 (added)
+++ dev/lucene/lucene-solr-5.3.1-RC1-rev1702389/solr/maven/org/apache/solr/solr-uima/maven-metadata.xml.sha1 Fri Sep 11 12:20:48 2015
@@ -0,0 +1 @@
+abed19944e5287613658515323a3e904b2e27b9f
\ No newline at end of file

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

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

Added: dev/lucene/lucene-solr-5.3.1-RC1-rev1702389/solr/maven/org/apache/solr/solr-velocity/5.3.1/solr-velocity-5.3.1-javadoc.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-5.3.1-RC1-rev1702389/solr/maven/org/apache/solr/solr-velocity/5.3.1/solr-velocity-5.3.1-javadoc.jar.asc (added)
+++ dev/lucene/lucene-solr-5.3.1-RC1-rev1702389/solr/maven/org/apache/solr/solr-velocity/5.3.1/solr-velocity-5.3.1-javadoc.jar.asc Fri Sep 11 12:20:48 2015
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Comment: GPGTools - https://gpgtools.org
+
+iQIcBAABCgAGBQJV8p6jAAoJEMOP9ew/z9s+BuYQAKBditlgLrA5NHTm38zICMIw
+z9UZz7X9+5ajQUYdFNJvJN2jPw95yHXwO2bv8LrBZ1jvschBDZCtDPl0aqhQLNjV
+DlkMOpnKdg/U/pvLxk4FzcAQRJk/vwQrPe9OWO08WKhHVRWYiOSW1cnyrJgvvNXY
+4+Hq2IQFHplvFwJ8RzuTwI2DAJayz5fnkKe6bmcKDHxdo5TwKz3j+8xwp1M6O4qb
+NN+xLywIsYjmVToat6Woxv6uIZCfORbyzIJc+XPmj+gdiAQyYAXz3rD4Zkrn9vmg
+T9mUR1OA98azrdZB1UTbpTIYzKoB3BvF5qCBk26PR3HTGeAh0gMMDSWyWAmUiRCq
+usmvTXmNvt6ggncqbFBjpOcJKkv1T+z7sYZciib0fsiIOc9DdW17JCjvuhEDaJp3
+G2Ta3rFlAyvZ2j/1o8M2MzyG+QgpDh7huT1d67MSngQRtl0q9t2/k7R20gDumXcI
+QeBlEq2CSP1TnEoPz2Br4o4tDmkez0gELq2LoZYBZ9/2fLfyXyV+17a8TUGSmau0
+kHwEo2NGDdug3ETqq/ZKf4AzzIcpfRYNlOP5RSriYVnA52lhpgJM7+U3CRNB9x2w
+r3cmzjDf+2uRw0yV06kzlGT1ytJNS9qbPmM+bxnNtcrfq/wrLS2f55AiQFW4aPh7
+oDCU8RTahyHafBRjLw6c
+=Lk2q
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-5.3.1-RC1-rev1702389/solr/maven/org/apache/solr/solr-velocity/5.3.1/solr-velocity-5.3.1-javadoc.jar.md5
==============================================================================
--- dev/lucene/lucene-solr-5.3.1-RC1-rev1702389/solr/maven/org/apache/solr/solr-velocity/5.3.1/solr-velocity-5.3.1-javadoc.jar.md5 (added)
+++ dev/lucene/lucene-solr-5.3.1-RC1-rev1702389/solr/maven/org/apache/solr/solr-velocity/5.3.1/solr-velocity-5.3.1-javadoc.jar.md5 Fri Sep 11 12:20:48 2015
@@ -0,0 +1 @@
+e62f0b4fe284c26d4c562325bf30cbf0
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.3.1-RC1-rev1702389/solr/maven/org/apache/solr/solr-velocity/5.3.1/solr-velocity-5.3.1-javadoc.jar.sha1
==============================================================================
--- dev/lucene/lucene-solr-5.3.1-RC1-rev1702389/solr/maven/org/apache/solr/solr-velocity/5.3.1/solr-velocity-5.3.1-javadoc.jar.sha1 (added)
+++ dev/lucene/lucene-solr-5.3.1-RC1-rev1702389/solr/maven/org/apache/solr/solr-velocity/5.3.1/solr-velocity-5.3.1-javadoc.jar.sha1 Fri Sep 11 12:20:48 2015
@@ -0,0 +1 @@
+f649ecba8bd400df3088d6068d098eb21cee3e6a
\ No newline at end of file

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

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