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/08/17 14:16:39 UTC

svn commit: r10195 [18/19] - in /dev/lucene/lucene-solr-5.3.0-RC2-rev1696229: ./ 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.0-RC2-rev1696229/solr/maven/org/apache/solr/solr-parent/5.3.0/solr-parent-5.3.0.pom
==============================================================================
--- dev/lucene/lucene-solr-5.3.0-RC2-rev1696229/solr/maven/org/apache/solr/solr-parent/5.3.0/solr-parent-5.3.0.pom (added)
+++ dev/lucene/lucene-solr-5.3.0-RC2-rev1696229/solr/maven/org/apache/solr/solr-parent/5.3.0/solr-parent-5.3.0.pom Mon Aug 17 12:16:37 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.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.3.0-RC2-rev1696229/solr/maven/org/apache/solr/solr-parent/5.3.0/solr-parent-5.3.0.pom.asc
==============================================================================
--- dev/lucene/lucene-solr-5.3.0-RC2-rev1696229/solr/maven/org/apache/solr/solr-parent/5.3.0/solr-parent-5.3.0.pom.asc (added)
+++ dev/lucene/lucene-solr-5.3.0-RC2-rev1696229/solr/maven/org/apache/solr/solr-parent/5.3.0/solr-parent-5.3.0.pom.asc Mon Aug 17 12:16:37 2015
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Comment: GPGTools - https://gpgtools.org
+
+iQIcBAABCgAGBQJV0ckrAAoJEMOP9ew/z9s+mfQP/19Ww/vFpyK5FUMlxkqW2uVh
+XA0bWoVwLfIOzli4WVTeI4BOKuSpeUb488NEnQs2yrQfECGhZL4zVgtRnZbrGcTG
+G9wRIAqqXOagF53Pgj6u0kykPXkUp7CureVXmBfiEC+gnTb86nVDDG1ygTaAZ0lW
+hx+iPiOqVtBN2Y6hiI0zqq0LtPaJ1ByuxRYLInFhj0m3fIVpNp+CzDSxcIHieDvK
+2txlqwmBx1fBu89J2lqgrqXZuSmn2CDbr5/jXvxayTINXVR/9qtAd5LyTxbJcjKs
+uw3/A7ld7CH3rVF8kraI6BfpoW7LnW1Cc++OohCIeeXGCkgMgCId+Y5/56SVVYtG
+xAlayfHngrOZpfdSFg+0Y92cQaQ8KOw8MkT45aOaa+b7ruUGQFDTHh0folQMxSk1
+fvPFijpKeanqwwB6HeI5INaq2xxpsIyC/Umj+x5US3C5mEkP5wrC+DjoDn+0AOut
+1qLrMk1NsP3hZlS12kWSzryfhVdhLvAddDcui+RjkP+/na9/3khQ5HVOpYOWMC1K
+MRkb/hL6ZM7Nywkh2UC7a9uWvyMW62G8kjE75H2gm2Zz8X0Vd/u137+lVeCr0cSB
+k0UGGsVfr0ESl+c9EuTZnf3nbNIVN3i/BM/fExtY8H606FZrj2ynfFlpQR3VsMJt
+o7n4IguQF0nYO9jlPo1b
+=absF
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-5.3.0-RC2-rev1696229/solr/maven/org/apache/solr/solr-parent/5.3.0/solr-parent-5.3.0.pom.md5
==============================================================================
--- dev/lucene/lucene-solr-5.3.0-RC2-rev1696229/solr/maven/org/apache/solr/solr-parent/5.3.0/solr-parent-5.3.0.pom.md5 (added)
+++ dev/lucene/lucene-solr-5.3.0-RC2-rev1696229/solr/maven/org/apache/solr/solr-parent/5.3.0/solr-parent-5.3.0.pom.md5 Mon Aug 17 12:16:37 2015
@@ -0,0 +1 @@
+ced5b162b981db94c7f343c12c344cfa
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.3.0-RC2-rev1696229/solr/maven/org/apache/solr/solr-parent/5.3.0/solr-parent-5.3.0.pom.sha1
==============================================================================
--- dev/lucene/lucene-solr-5.3.0-RC2-rev1696229/solr/maven/org/apache/solr/solr-parent/5.3.0/solr-parent-5.3.0.pom.sha1 (added)
+++ dev/lucene/lucene-solr-5.3.0-RC2-rev1696229/solr/maven/org/apache/solr/solr-parent/5.3.0/solr-parent-5.3.0.pom.sha1 Mon Aug 17 12:16:37 2015
@@ -0,0 +1 @@
+696e6b293872aecefe72faf124495523e20a2ac4
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.3.0-RC2-rev1696229/solr/maven/org/apache/solr/solr-parent/maven-metadata.xml
==============================================================================
--- dev/lucene/lucene-solr-5.3.0-RC2-rev1696229/solr/maven/org/apache/solr/solr-parent/maven-metadata.xml (added)
+++ dev/lucene/lucene-solr-5.3.0-RC2-rev1696229/solr/maven/org/apache/solr/solr-parent/maven-metadata.xml Mon Aug 17 12:16:37 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.0</version>
+  <versioning>
+    <versions>
+      <version>5.3.0</version>
+    </versions>
+    <lastUpdated>20150817114321</lastUpdated>
+  </versioning>
+</metadata>

Added: dev/lucene/lucene-solr-5.3.0-RC2-rev1696229/solr/maven/org/apache/solr/solr-parent/maven-metadata.xml.md5
==============================================================================
--- dev/lucene/lucene-solr-5.3.0-RC2-rev1696229/solr/maven/org/apache/solr/solr-parent/maven-metadata.xml.md5 (added)
+++ dev/lucene/lucene-solr-5.3.0-RC2-rev1696229/solr/maven/org/apache/solr/solr-parent/maven-metadata.xml.md5 Mon Aug 17 12:16:37 2015
@@ -0,0 +1 @@
+3d079f2753aeb27dba992fff2f607425
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.3.0-RC2-rev1696229/solr/maven/org/apache/solr/solr-parent/maven-metadata.xml.sha1
==============================================================================
--- dev/lucene/lucene-solr-5.3.0-RC2-rev1696229/solr/maven/org/apache/solr/solr-parent/maven-metadata.xml.sha1 (added)
+++ dev/lucene/lucene-solr-5.3.0-RC2-rev1696229/solr/maven/org/apache/solr/solr-parent/maven-metadata.xml.sha1 Mon Aug 17 12:16:37 2015
@@ -0,0 +1 @@
+05f1c94072d8c8be4cdbb71b3959cee29dabc810
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.3.0-RC2-rev1696229/solr/maven/org/apache/solr/solr-solrj/5.3.0/solr-solrj-5.3.0-javadoc.jar
==============================================================================
Binary file - no diff available.

Propchange: dev/lucene/lucene-solr-5.3.0-RC2-rev1696229/solr/maven/org/apache/solr/solr-solrj/5.3.0/solr-solrj-5.3.0-javadoc.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: dev/lucene/lucene-solr-5.3.0-RC2-rev1696229/solr/maven/org/apache/solr/solr-solrj/5.3.0/solr-solrj-5.3.0-javadoc.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-5.3.0-RC2-rev1696229/solr/maven/org/apache/solr/solr-solrj/5.3.0/solr-solrj-5.3.0-javadoc.jar.asc (added)
+++ dev/lucene/lucene-solr-5.3.0-RC2-rev1696229/solr/maven/org/apache/solr/solr-solrj/5.3.0/solr-solrj-5.3.0-javadoc.jar.asc Mon Aug 17 12:16:37 2015
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Comment: GPGTools - https://gpgtools.org
+
+iQIcBAABCgAGBQJV0cksAAoJEMOP9ew/z9s+qukQAKyaNRo4LwyQjFgsRaKHeXCa
+MxxLC0uNnMuLheZ07kgACpfBbeAissf1nodGjbf4vcAbO7JpDD2cyzlX9gkvBxso
+vgYCg7+i8s+OJUGsAIsfZHcXDW7nk8diScWQjjjrwBNNtubWZfnZje1Juun3wHE1
+A7VEZg+gOteK6qgklWLCRbYLc+H1gtzN9wVKTB2iIgF74nimb9+tCETDefKIS1Zs
+KDBTB900OCZvlLM0ZYEyrH/c2JWCXGZsXwd6uVhH1Y9wKajw8S+dTSpPLfhbrOIN
+uwo9T7Z71JvcQPGDWvJQIKZMeSAS1G3dF+2TObDQObRteP1jXzqJUCHrAXc1bxDA
+los+8tSDT1+jWysMLOODI/crz6LSZkNtfyYUsS0UFbQKArN05RwwuzljCASELrgK
+wnQDtLNUdixKmFwX3P1sBSYHw+jkxaqwJl23O+MEEACBgeZ07BTPneJQ0s/58aQk
+9kKMvk90a0WGVkuJ/KflZ3nYNlEwVIbGEkd86pBeWnyzIRpuq8yl+hFPYrrZx24w
+dt6BmKtkNc9TFUnDBHu2DSEbIRchtLH2BhADftibeFCD6nPP2SYlZeAXZdQdfnCT
+/5ldzJWHhTtXuTNZwFPthHSGYTjieApjjWdj7dOcTMOKNJ+P1bwB0umwibCkFjij
+YzWhXrdSQUXGAB2LWPeD
+=wMDl
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-5.3.0-RC2-rev1696229/solr/maven/org/apache/solr/solr-solrj/5.3.0/solr-solrj-5.3.0-javadoc.jar.md5
==============================================================================
--- dev/lucene/lucene-solr-5.3.0-RC2-rev1696229/solr/maven/org/apache/solr/solr-solrj/5.3.0/solr-solrj-5.3.0-javadoc.jar.md5 (added)
+++ dev/lucene/lucene-solr-5.3.0-RC2-rev1696229/solr/maven/org/apache/solr/solr-solrj/5.3.0/solr-solrj-5.3.0-javadoc.jar.md5 Mon Aug 17 12:16:37 2015
@@ -0,0 +1 @@
+8b45ecbaf242dfbbc2efd597eb8ee564
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.3.0-RC2-rev1696229/solr/maven/org/apache/solr/solr-solrj/5.3.0/solr-solrj-5.3.0-javadoc.jar.sha1
==============================================================================
--- dev/lucene/lucene-solr-5.3.0-RC2-rev1696229/solr/maven/org/apache/solr/solr-solrj/5.3.0/solr-solrj-5.3.0-javadoc.jar.sha1 (added)
+++ dev/lucene/lucene-solr-5.3.0-RC2-rev1696229/solr/maven/org/apache/solr/solr-solrj/5.3.0/solr-solrj-5.3.0-javadoc.jar.sha1 Mon Aug 17 12:16:37 2015
@@ -0,0 +1 @@
+b3fb2bf4c6418d03bfc1a8bd9d73e5252808b1fa
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.3.0-RC2-rev1696229/solr/maven/org/apache/solr/solr-solrj/5.3.0/solr-solrj-5.3.0-sources.jar
==============================================================================
Binary file - no diff available.

Propchange: dev/lucene/lucene-solr-5.3.0-RC2-rev1696229/solr/maven/org/apache/solr/solr-solrj/5.3.0/solr-solrj-5.3.0-sources.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: dev/lucene/lucene-solr-5.3.0-RC2-rev1696229/solr/maven/org/apache/solr/solr-solrj/5.3.0/solr-solrj-5.3.0-sources.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-5.3.0-RC2-rev1696229/solr/maven/org/apache/solr/solr-solrj/5.3.0/solr-solrj-5.3.0-sources.jar.asc (added)
+++ dev/lucene/lucene-solr-5.3.0-RC2-rev1696229/solr/maven/org/apache/solr/solr-solrj/5.3.0/solr-solrj-5.3.0-sources.jar.asc Mon Aug 17 12:16:37 2015
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Comment: GPGTools - https://gpgtools.org
+
+iQIcBAABCgAGBQJV0cksAAoJEMOP9ew/z9s+nboP/jNWZPLUoxcsyXIZo6yLimyh
+UM2Awf9TBY2C13bcN9ZDzKdMKrslQYFOpOYiI0IsOgnHdp+XL7IpHRad0M2VckTD
+TcuDJa4JF+7UkAfKTd+7jnzIMRBpgqjNwSWaUedEvKTtTxLh5B0FPnkhtfbb298l
+4eIECpQkDGCyUgXCq1mQGNvdQuhq0+7J4V4pPalHeMxp+trwuZg42dznVHfYNCip
+0X0iw56wzsQdFoVf/lRC3xuD0VOCinvEu9I39nAynhUzWAVSjQbWO3UrM5lKS3TX
+01jRmAbRPkYVBFIeQ8hvtqE6gsG46ixwyrEfMkdWIOR1WHc0oLeXFe+exIycFcyB
+yO471fjtRZfKNH+o1iUlp0xrS8qQ5/uY/IdI5mwT1G3CSdSuU+s8GW3mhMmbDaQN
+ixvhV1O5b9wK3o79jMyb4aNPYxpzEn+aiFKxMt3/8wgvemeEt5RX1di9fZfZoxmG
+ZHOU+diBarFXjCOrxKxhwMA7yr2ZGId6HwDOsm5xKWiI63QGxNA4kpbr8piaAZE5
+SNYRcKOOzFMFZYHjFn2UIIeoPxCSJQgvbJrPgqI86H2wQ+t/Le2GGM32POhpgvC2
+Jfb1VDM87BTf8j6g35j00N4r6iCkVcLMi7tTXwIX7ratTFAXgB/0xloFlTnmwXF+
+E6eruwJrNQxIVyA5JlnL
+=1DOA
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-5.3.0-RC2-rev1696229/solr/maven/org/apache/solr/solr-solrj/5.3.0/solr-solrj-5.3.0-sources.jar.md5
==============================================================================
--- dev/lucene/lucene-solr-5.3.0-RC2-rev1696229/solr/maven/org/apache/solr/solr-solrj/5.3.0/solr-solrj-5.3.0-sources.jar.md5 (added)
+++ dev/lucene/lucene-solr-5.3.0-RC2-rev1696229/solr/maven/org/apache/solr/solr-solrj/5.3.0/solr-solrj-5.3.0-sources.jar.md5 Mon Aug 17 12:16:37 2015
@@ -0,0 +1 @@
+c85da697d167482312f844591f5236c0
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.3.0-RC2-rev1696229/solr/maven/org/apache/solr/solr-solrj/5.3.0/solr-solrj-5.3.0-sources.jar.sha1
==============================================================================
--- dev/lucene/lucene-solr-5.3.0-RC2-rev1696229/solr/maven/org/apache/solr/solr-solrj/5.3.0/solr-solrj-5.3.0-sources.jar.sha1 (added)
+++ dev/lucene/lucene-solr-5.3.0-RC2-rev1696229/solr/maven/org/apache/solr/solr-solrj/5.3.0/solr-solrj-5.3.0-sources.jar.sha1 Mon Aug 17 12:16:37 2015
@@ -0,0 +1 @@
+598d11a3eb409affca53904b76c1c8776d25957b
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.3.0-RC2-rev1696229/solr/maven/org/apache/solr/solr-solrj/5.3.0/solr-solrj-5.3.0.jar
==============================================================================
Binary file - no diff available.

Propchange: dev/lucene/lucene-solr-5.3.0-RC2-rev1696229/solr/maven/org/apache/solr/solr-solrj/5.3.0/solr-solrj-5.3.0.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: dev/lucene/lucene-solr-5.3.0-RC2-rev1696229/solr/maven/org/apache/solr/solr-solrj/5.3.0/solr-solrj-5.3.0.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-5.3.0-RC2-rev1696229/solr/maven/org/apache/solr/solr-solrj/5.3.0/solr-solrj-5.3.0.jar.asc (added)
+++ dev/lucene/lucene-solr-5.3.0-RC2-rev1696229/solr/maven/org/apache/solr/solr-solrj/5.3.0/solr-solrj-5.3.0.jar.asc Mon Aug 17 12:16:37 2015
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Comment: GPGTools - https://gpgtools.org
+
+iQIcBAABCgAGBQJV0cktAAoJEMOP9ew/z9s+J2sP/37qS3Iq4MQ0DW+GEVntar1F
+Mtrltn0UUQZlE+VD3XVrJ+S6ci/VChNGXM/LjHcbkBirTPot14FcA+shE/QoAIUv
+VjmNnahfZEaxWu4Xo5JqJuzg2yaBGUv8TTF3/9JORk3JE+5XFf6JVAiOXJB/5kng
+lNf2ABjFAstT0om9dU9N01Huza93o2voJBjI8SXHsOYJW64XzTko7stuxWb6AoI4
+RR2n0nwNRfvkir0q3P3ElUbi2NT+xh04upxJA1C33H675ILIxdm+afDv46BU17P9
+weX4RwC+3xVGMp+QtiFV1oW1cwVbsmEFp/NDVekcyGGmoOyV4y+xJLdSKOi2YvfH
+DK3nNnaiuZXcG5k+Zib3GTUdsrlWtTSDP80FN+qDcFbeeZ+bSZ9LcyF8CsTdF84U
+HFZR24Wx1KIjPiDDhez6erU2z5SzhqWMN1brKBg49mlQY3TClVL1BWBTjwfRTgnM
+XgEdzJNwN5tLGcVAllcBasT7RG4YAUHT6qE48IACdqo7TXbVUV1VrHLKmCkJb7qn
+SW5UT55dBHNy1TQuwi7sPRVbogbktGq0S+9tLfcsdMbKafREw3Cj0tm0iXDSrtSC
+K/PVdJaO+4qmjzNt62rHoyFYU8UZebrMusF85WEDPGqSI3sCFJcQZKxEn/mzbtFj
+Q4YqhmhctTNpsjdfmrCF
+=9JU8
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-5.3.0-RC2-rev1696229/solr/maven/org/apache/solr/solr-solrj/5.3.0/solr-solrj-5.3.0.jar.md5
==============================================================================
--- dev/lucene/lucene-solr-5.3.0-RC2-rev1696229/solr/maven/org/apache/solr/solr-solrj/5.3.0/solr-solrj-5.3.0.jar.md5 (added)
+++ dev/lucene/lucene-solr-5.3.0-RC2-rev1696229/solr/maven/org/apache/solr/solr-solrj/5.3.0/solr-solrj-5.3.0.jar.md5 Mon Aug 17 12:16:37 2015
@@ -0,0 +1 @@
+c51718d8e12b303cd7621d22d96ab514
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.3.0-RC2-rev1696229/solr/maven/org/apache/solr/solr-solrj/5.3.0/solr-solrj-5.3.0.jar.sha1
==============================================================================
--- dev/lucene/lucene-solr-5.3.0-RC2-rev1696229/solr/maven/org/apache/solr/solr-solrj/5.3.0/solr-solrj-5.3.0.jar.sha1 (added)
+++ dev/lucene/lucene-solr-5.3.0-RC2-rev1696229/solr/maven/org/apache/solr/solr-solrj/5.3.0/solr-solrj-5.3.0.jar.sha1 Mon Aug 17 12:16:37 2015
@@ -0,0 +1 @@
+efaa71fee7779a723ad02fdb26361b524a8b412d
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.3.0-RC2-rev1696229/solr/maven/org/apache/solr/solr-solrj/5.3.0/solr-solrj-5.3.0.pom
==============================================================================
--- dev/lucene/lucene-solr-5.3.0-RC2-rev1696229/solr/maven/org/apache/solr/solr-solrj/5.3.0/solr-solrj-5.3.0.pom (added)
+++ dev/lucene/lucene-solr-5.3.0-RC2-rev1696229/solr/maven/org/apache/solr/solr-solrj/5.3.0/solr-solrj-5.3.0.pom Mon Aug 17 12:16:37 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.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.3.0-RC2-rev1696229/solr/maven/org/apache/solr/solr-solrj/5.3.0/solr-solrj-5.3.0.pom.asc
==============================================================================
--- dev/lucene/lucene-solr-5.3.0-RC2-rev1696229/solr/maven/org/apache/solr/solr-solrj/5.3.0/solr-solrj-5.3.0.pom.asc (added)
+++ dev/lucene/lucene-solr-5.3.0-RC2-rev1696229/solr/maven/org/apache/solr/solr-solrj/5.3.0/solr-solrj-5.3.0.pom.asc Mon Aug 17 12:16:37 2015
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Comment: GPGTools - https://gpgtools.org
+
+iQIcBAABCgAGBQJV0cktAAoJEMOP9ew/z9s+re8P/AvSG6fgSkNIWDQXfYbwM5ke
+xtWojd9FhcFFfJ020HS/Q3eatu+41W2F5mFF0jSykYHi6XTXdblGOxZhS2PCHZgK
+qtAxm9j8I2L058ghir1jXRcT+ZBGf6iFa+lroEPe8hgekAFtIJcK6RZckxtSAvs0
+Th6GrGW8i8mhMl6JNOpS2RRNz+jMGeaXowI8l8F9ojbyyejLba1SJ4N0/tfn2nM8
+wbD3+XfOIpNf6IJsbB57C7KktdytPU6PYvzWEiyMM/6qNfnqk0bIN5SRKAvyb9y7
+cUdMqchlAN/TY69T6IyL3l4Fyk21SSGXFJEPSTOPB8V6LpyrqXVLjoGXlzwJ5xnf
+cC9mH3+2VxD+GHz5vWunH9c/hulBl/M4CmcwmF2yDhTm9YXUhM9LDbpthGgapwEE
+z4XpTv4kq89HR3KkzDHgRbm+FPdyej7/wH9/KB3f0mZfRTAiH47mF98mYLu8pj5H
+07f2ntxO1xnT5XFMBy+463itQm0f9y/Fs0Y6q29PT+fefflQu7H0wIzZjzFtRnVq
+jaIfFd3eCEqAjLWgl/ma8YCUmzHqbZYC0V3K/Xlea84piqnZM3EHJPPQaIwuYl8q
+p9Jn3aOtwIALxGiy+xTcvc5m6IuRJr+VRcEtvKFPWThJRY8s2reo8PmNKysqYoma
+Z4OZpstu3l99aSTpzVJH
+=njlQ
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-5.3.0-RC2-rev1696229/solr/maven/org/apache/solr/solr-solrj/5.3.0/solr-solrj-5.3.0.pom.md5
==============================================================================
--- dev/lucene/lucene-solr-5.3.0-RC2-rev1696229/solr/maven/org/apache/solr/solr-solrj/5.3.0/solr-solrj-5.3.0.pom.md5 (added)
+++ dev/lucene/lucene-solr-5.3.0-RC2-rev1696229/solr/maven/org/apache/solr/solr-solrj/5.3.0/solr-solrj-5.3.0.pom.md5 Mon Aug 17 12:16:37 2015
@@ -0,0 +1 @@
+50a827c65f7bea75ac8f0ee984595801
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.3.0-RC2-rev1696229/solr/maven/org/apache/solr/solr-solrj/5.3.0/solr-solrj-5.3.0.pom.sha1
==============================================================================
--- dev/lucene/lucene-solr-5.3.0-RC2-rev1696229/solr/maven/org/apache/solr/solr-solrj/5.3.0/solr-solrj-5.3.0.pom.sha1 (added)
+++ dev/lucene/lucene-solr-5.3.0-RC2-rev1696229/solr/maven/org/apache/solr/solr-solrj/5.3.0/solr-solrj-5.3.0.pom.sha1 Mon Aug 17 12:16:37 2015
@@ -0,0 +1 @@
+01738e26c8b1a9ed693f2e922587eb868fc1ce39
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.3.0-RC2-rev1696229/solr/maven/org/apache/solr/solr-solrj/maven-metadata.xml
==============================================================================
--- dev/lucene/lucene-solr-5.3.0-RC2-rev1696229/solr/maven/org/apache/solr/solr-solrj/maven-metadata.xml (added)
+++ dev/lucene/lucene-solr-5.3.0-RC2-rev1696229/solr/maven/org/apache/solr/solr-solrj/maven-metadata.xml Mon Aug 17 12:16:37 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.0</version>
+  <versioning>
+    <versions>
+      <version>5.3.0</version>
+    </versions>
+    <lastUpdated>20150817114326</lastUpdated>
+  </versioning>
+</metadata>

Added: dev/lucene/lucene-solr-5.3.0-RC2-rev1696229/solr/maven/org/apache/solr/solr-solrj/maven-metadata.xml.md5
==============================================================================
--- dev/lucene/lucene-solr-5.3.0-RC2-rev1696229/solr/maven/org/apache/solr/solr-solrj/maven-metadata.xml.md5 (added)
+++ dev/lucene/lucene-solr-5.3.0-RC2-rev1696229/solr/maven/org/apache/solr/solr-solrj/maven-metadata.xml.md5 Mon Aug 17 12:16:37 2015
@@ -0,0 +1 @@
+732d3ccb3db565a0e86114beedcd27f4
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.3.0-RC2-rev1696229/solr/maven/org/apache/solr/solr-solrj/maven-metadata.xml.sha1
==============================================================================
--- dev/lucene/lucene-solr-5.3.0-RC2-rev1696229/solr/maven/org/apache/solr/solr-solrj/maven-metadata.xml.sha1 (added)
+++ dev/lucene/lucene-solr-5.3.0-RC2-rev1696229/solr/maven/org/apache/solr/solr-solrj/maven-metadata.xml.sha1 Mon Aug 17 12:16:37 2015
@@ -0,0 +1 @@
+7bfd7df1dffffc956fc1d66f5581e90453673a12
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.3.0-RC2-rev1696229/solr/maven/org/apache/solr/solr-test-framework/5.3.0/solr-test-framework-5.3.0-javadoc.jar
==============================================================================
Binary file - no diff available.

Propchange: dev/lucene/lucene-solr-5.3.0-RC2-rev1696229/solr/maven/org/apache/solr/solr-test-framework/5.3.0/solr-test-framework-5.3.0-javadoc.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: dev/lucene/lucene-solr-5.3.0-RC2-rev1696229/solr/maven/org/apache/solr/solr-test-framework/5.3.0/solr-test-framework-5.3.0-javadoc.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-5.3.0-RC2-rev1696229/solr/maven/org/apache/solr/solr-test-framework/5.3.0/solr-test-framework-5.3.0-javadoc.jar.asc (added)
+++ dev/lucene/lucene-solr-5.3.0-RC2-rev1696229/solr/maven/org/apache/solr/solr-test-framework/5.3.0/solr-test-framework-5.3.0-javadoc.jar.asc Mon Aug 17 12:16:37 2015
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Comment: GPGTools - https://gpgtools.org
+
+iQIcBAABCgAGBQJV0ckuAAoJEMOP9ew/z9s+lcIQAIhN8mSvm4orHw3krk3zY2WC
+o7rxZq2Z3AdLosv3UOozAocAyuHJ0k76KEAANMi39p4DMRTGT+blQaXIeL/UaZdo
+jDVZNOwW7xJ9FDVPaDI30Q5I7aN28NP8tnPozB3BEZN2CE8UVfBeRvKUwMY74HQz
+lCgMXcVHjSONxm+njfs1WaPFbKlV9HEKOhSl4PnM+WV/Qvl0AFLPd3iODhl/23Vc
+PhH7XKAUqsHUGhqKPcG9161xbVXEFK9FPLtiYIML+YrGcOUlurPtB9YDI36AtXi0
+xymB0mhfq9M6m6jxHPqWAWg1IcGRPu53DjlWjWBprfCgMp4CP82IAgMQLMbsH8Yn
+yZ4HvBwv3tUgUTt1l1dP4lSGaNZfnk/3yzpDveg3k7HSWQmaAF5CgCmyruDYU8q7
+MyYkJesf+KbMPJeO1c6ilVbVkpn6GLUzi6G6TMEhW6rse2CPUDsNNNWYvlZvG4F7
+LqJnzlTskzaaoMdUL8C/4htoRfwn1mJB4OU8HY/dnQUmE7mC9fa3GvW8wQHFm7+b
+9DZ2ErbkaDoEUU0af4vVBWE73jqu7YiVcawFC/ygAncVPBRduoVJKxKuUtLeSDvt
+mrE5vfOG31Ol8JJRLIZhvn/yz/qnvtqRV/K/+F2dd43aFlaEm7egM/KCYYEJZlxN
+D1Vh4IZDv8WCSZRHlZdV
+=YiWZ
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-5.3.0-RC2-rev1696229/solr/maven/org/apache/solr/solr-test-framework/5.3.0/solr-test-framework-5.3.0-javadoc.jar.md5
==============================================================================
--- dev/lucene/lucene-solr-5.3.0-RC2-rev1696229/solr/maven/org/apache/solr/solr-test-framework/5.3.0/solr-test-framework-5.3.0-javadoc.jar.md5 (added)
+++ dev/lucene/lucene-solr-5.3.0-RC2-rev1696229/solr/maven/org/apache/solr/solr-test-framework/5.3.0/solr-test-framework-5.3.0-javadoc.jar.md5 Mon Aug 17 12:16:37 2015
@@ -0,0 +1 @@
+890ce8768c7a2a565b35cd005a761955
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.3.0-RC2-rev1696229/solr/maven/org/apache/solr/solr-test-framework/5.3.0/solr-test-framework-5.3.0-javadoc.jar.sha1
==============================================================================
--- dev/lucene/lucene-solr-5.3.0-RC2-rev1696229/solr/maven/org/apache/solr/solr-test-framework/5.3.0/solr-test-framework-5.3.0-javadoc.jar.sha1 (added)
+++ dev/lucene/lucene-solr-5.3.0-RC2-rev1696229/solr/maven/org/apache/solr/solr-test-framework/5.3.0/solr-test-framework-5.3.0-javadoc.jar.sha1 Mon Aug 17 12:16:37 2015
@@ -0,0 +1 @@
+3397602e0865ebeee25deb58b571ecefbbbd1760
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.3.0-RC2-rev1696229/solr/maven/org/apache/solr/solr-test-framework/5.3.0/solr-test-framework-5.3.0-sources.jar
==============================================================================
Binary file - no diff available.

Propchange: dev/lucene/lucene-solr-5.3.0-RC2-rev1696229/solr/maven/org/apache/solr/solr-test-framework/5.3.0/solr-test-framework-5.3.0-sources.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: dev/lucene/lucene-solr-5.3.0-RC2-rev1696229/solr/maven/org/apache/solr/solr-test-framework/5.3.0/solr-test-framework-5.3.0-sources.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-5.3.0-RC2-rev1696229/solr/maven/org/apache/solr/solr-test-framework/5.3.0/solr-test-framework-5.3.0-sources.jar.asc (added)
+++ dev/lucene/lucene-solr-5.3.0-RC2-rev1696229/solr/maven/org/apache/solr/solr-test-framework/5.3.0/solr-test-framework-5.3.0-sources.jar.asc Mon Aug 17 12:16:37 2015
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Comment: GPGTools - https://gpgtools.org
+
+iQIcBAABCgAGBQJV0ckuAAoJEMOP9ew/z9s+BkIP/3T6ml7Lo+96rNxiAXV4HR3N
+nEmg/29boYSAXTat0qQvKF6pvQ09Jlxv10rGOAgnLcpaD+uBWsMR9Gb4O49aKQMh
+geEP68zpRjy5LWuRJTyNWqWrNd669bIgwCoLQ5tTTW+YPqa764074dXU0lJ6glf8
+kXe31oPaYKx/X0XSLqpPAwfET09TYYd2BbhE+4tyzTufoYoP20i9uDgPo2rk+nIw
+XkTaF6utOC5XHpBDnuOFQxo4EiTN4VzrQ4sl4pGkqIKuR6kNEvJ4bbmpA59ok41f
+G4Xj3l0d+MrP3LySnVUXhpcv/ODgNDBL0VHBV/TzhdK19AK47ltxNKJCAASYeWFE
+sdW8YltPF5XZxYpDZF8N/5HmduYedgHjBQ/TpZicOye+/wnF+ugCxa0pu4l5TT0Q
+9UzmNunthibBBg3D1pjJ6xmXCMbvdRdS1dPuRpZNhZSLz8CKBSirpxHUdMClwSE7
+cKPFIb32vMv/fOnEMIDAaxOgjf4zj3dA4Em2qqS+Sjqb3273pSDP3eCyiDkhACcX
+MPjuWyRVAmW83YM6dS7L124JhMdMj9B7zOJ/vJUUsc//TLM7Vmd9Dpn02kHhOZ+L
+LTp7BLzG4InGJjczJ1+elFqkxM75H0l3qQFF5TH19N3iXelxU7Xu8oKTGxUyfMx8
+jF1h3LOhG+7tcQFsS4Ax
+=yG21
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-5.3.0-RC2-rev1696229/solr/maven/org/apache/solr/solr-test-framework/5.3.0/solr-test-framework-5.3.0-sources.jar.md5
==============================================================================
--- dev/lucene/lucene-solr-5.3.0-RC2-rev1696229/solr/maven/org/apache/solr/solr-test-framework/5.3.0/solr-test-framework-5.3.0-sources.jar.md5 (added)
+++ dev/lucene/lucene-solr-5.3.0-RC2-rev1696229/solr/maven/org/apache/solr/solr-test-framework/5.3.0/solr-test-framework-5.3.0-sources.jar.md5 Mon Aug 17 12:16:37 2015
@@ -0,0 +1 @@
+af2cab94e811c80e64321633f6e48a50
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.3.0-RC2-rev1696229/solr/maven/org/apache/solr/solr-test-framework/5.3.0/solr-test-framework-5.3.0-sources.jar.sha1
==============================================================================
--- dev/lucene/lucene-solr-5.3.0-RC2-rev1696229/solr/maven/org/apache/solr/solr-test-framework/5.3.0/solr-test-framework-5.3.0-sources.jar.sha1 (added)
+++ dev/lucene/lucene-solr-5.3.0-RC2-rev1696229/solr/maven/org/apache/solr/solr-test-framework/5.3.0/solr-test-framework-5.3.0-sources.jar.sha1 Mon Aug 17 12:16:37 2015
@@ -0,0 +1 @@
+38c728eef242e7d9020e02c9876e185654d6c76f
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.3.0-RC2-rev1696229/solr/maven/org/apache/solr/solr-test-framework/5.3.0/solr-test-framework-5.3.0.jar
==============================================================================
Binary file - no diff available.

Propchange: dev/lucene/lucene-solr-5.3.0-RC2-rev1696229/solr/maven/org/apache/solr/solr-test-framework/5.3.0/solr-test-framework-5.3.0.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: dev/lucene/lucene-solr-5.3.0-RC2-rev1696229/solr/maven/org/apache/solr/solr-test-framework/5.3.0/solr-test-framework-5.3.0.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-5.3.0-RC2-rev1696229/solr/maven/org/apache/solr/solr-test-framework/5.3.0/solr-test-framework-5.3.0.jar.asc (added)
+++ dev/lucene/lucene-solr-5.3.0-RC2-rev1696229/solr/maven/org/apache/solr/solr-test-framework/5.3.0/solr-test-framework-5.3.0.jar.asc Mon Aug 17 12:16:37 2015
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Comment: GPGTools - https://gpgtools.org
+
+iQIcBAABCgAGBQJV0ckvAAoJEMOP9ew/z9s+rncP/0u0WdFaQzNWwbblkCRtYh+o
+U0RHZh00SiGiTuXRDhTIDmLrZRwVKJsa7kBtxzlTIgP+9Jyjk9LGfOok2VVUDRld
+uAFeTnndvoai1k6OpcoDX3+nhaY7O53dXaGrQWJC396WthWXCwQcCpejKHZN2DD1
+UlgJ7Rmru9H4VIsagTudSRs1WeJMqh8Ty7+uAHJmYLPeKZ7p6fPQ2SakHqhkzSx0
+rWwuk9bbNQAhQ7pum/EHrV1rbdKcN9xVGpCkX/T8BvoEa2jnEzA2CjqWJOy8OBL7
+TW+yWtpMohLx3czDfPnL96/d8grQXGZB+zZHu8eHjyWzFyIPz/S/Eb1ROovoLSzD
+sr9HS9b+zF8fJsieD4DcDch1m4zIaaqZ1S9j1M81q11YDYdP5mSq0FEqhxUfGhrL
+YvtezQsbnIb/n6J8sc8BsJQ59KUIpmD/87ZyPeBTa09Nc5jJYDURbUzZCry/Kv41
+q4gt00MsdG3MTSn3ydjiGU4cOBduuZFwz3Livt3lcVR95ss3dcuLzmFv58VxU9w8
+2RMz0lCZ4hrfanfK+m0DuZQwxatmnhLJGNbVJPL/MA1Fm320yzmXZpmJBe9stkRN
+pSRG1P3xHEhErUSsvqhaWRhpF7ureU1h4L0+NyNGEWsALl1Ge46iG5s9ygr6JuEX
+UmHduRrAz2nmp7B7ZLX4
+=HiBx
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-5.3.0-RC2-rev1696229/solr/maven/org/apache/solr/solr-test-framework/5.3.0/solr-test-framework-5.3.0.jar.md5
==============================================================================
--- dev/lucene/lucene-solr-5.3.0-RC2-rev1696229/solr/maven/org/apache/solr/solr-test-framework/5.3.0/solr-test-framework-5.3.0.jar.md5 (added)
+++ dev/lucene/lucene-solr-5.3.0-RC2-rev1696229/solr/maven/org/apache/solr/solr-test-framework/5.3.0/solr-test-framework-5.3.0.jar.md5 Mon Aug 17 12:16:37 2015
@@ -0,0 +1 @@
+6cfbef9df9814aaee322f51ea568d3a8
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.3.0-RC2-rev1696229/solr/maven/org/apache/solr/solr-test-framework/5.3.0/solr-test-framework-5.3.0.jar.sha1
==============================================================================
--- dev/lucene/lucene-solr-5.3.0-RC2-rev1696229/solr/maven/org/apache/solr/solr-test-framework/5.3.0/solr-test-framework-5.3.0.jar.sha1 (added)
+++ dev/lucene/lucene-solr-5.3.0-RC2-rev1696229/solr/maven/org/apache/solr/solr-test-framework/5.3.0/solr-test-framework-5.3.0.jar.sha1 Mon Aug 17 12:16:37 2015
@@ -0,0 +1 @@
+1b817c6189916cfb163c6e4726f5183582bd8304
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.3.0-RC2-rev1696229/solr/maven/org/apache/solr/solr-test-framework/5.3.0/solr-test-framework-5.3.0.pom
==============================================================================
--- dev/lucene/lucene-solr-5.3.0-RC2-rev1696229/solr/maven/org/apache/solr/solr-test-framework/5.3.0/solr-test-framework-5.3.0.pom (added)
+++ dev/lucene/lucene-solr-5.3.0-RC2-rev1696229/solr/maven/org/apache/solr/solr-test-framework/5.3.0/solr-test-framework-5.3.0.pom Mon Aug 17 12:16:37 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.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-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.0-RC2-rev1696229/solr/maven/org/apache/solr/solr-test-framework/5.3.0/solr-test-framework-5.3.0.pom.asc
==============================================================================
--- dev/lucene/lucene-solr-5.3.0-RC2-rev1696229/solr/maven/org/apache/solr/solr-test-framework/5.3.0/solr-test-framework-5.3.0.pom.asc (added)
+++ dev/lucene/lucene-solr-5.3.0-RC2-rev1696229/solr/maven/org/apache/solr/solr-test-framework/5.3.0/solr-test-framework-5.3.0.pom.asc Mon Aug 17 12:16:37 2015
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Comment: GPGTools - https://gpgtools.org
+
+iQIcBAABCgAGBQJV0ckvAAoJEMOP9ew/z9s+5m0P/1hfY9KJJuzax/KHzatIHfP3
+GFM30qlj5I03ONxomV3l4U2hTUrDUJ+HZBzyGLnMZcK0ZGJLg8G+BjaalfxfMTCO
+VqwLVzG7hy0thhlvHALjOwMv89PiBiKHD3DzxHI2aMw+S9D0DAc89aM0JAE8Ymeo
+UXbOi2n/3x4M8Sdi+mmOgZXnazyIllGIF9ec1uF5BY8OpiY7vJpeiXee51s2Ksw2
+tf9tSy91GlkZHR9gje8CcqwQV12Iy5lQ7f6SFYDE6bns9/YormIDitFOzgtKFkqw
+x0fxJTrC7AfRa2iO30al1N964Nj6QoTBKx3iokxBzF+s3tSvH0UNYlUVH+77nYIY
+NM4DkWjTDe5mjaeijnBjEdxpuZEN3QbXpKgYSg0KDQ8twpzufOTGCajlrVKA5gxH
+bq3jKwj0YlCDWcKDYB/NL1+A0MdK0/yqBFWoL1Tq3fxj4gtJUnXczpBOsd8L9Fmc
+mtx8cgHzibgyAtWBhBH1Ng99cWextG6rN8WqSxOjYVAe+4rSl5JdjLz/RtOo7HPa
+uSgl4EpNj6NCZcAd4l+TDN+72DpPD2u2NT7gYVClp0MhJHY9rn6uk0bfqQLBHKHs
+4S4pQs5kCd6pYUe2FM/PSNx0OKLqSNXBgTWyDTGZFw7fSLc3JRgG/NOx7Vql3dGI
+INkBMLdE672//xR3M8qC
+=MNsU
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-5.3.0-RC2-rev1696229/solr/maven/org/apache/solr/solr-test-framework/5.3.0/solr-test-framework-5.3.0.pom.md5
==============================================================================
--- dev/lucene/lucene-solr-5.3.0-RC2-rev1696229/solr/maven/org/apache/solr/solr-test-framework/5.3.0/solr-test-framework-5.3.0.pom.md5 (added)
+++ dev/lucene/lucene-solr-5.3.0-RC2-rev1696229/solr/maven/org/apache/solr/solr-test-framework/5.3.0/solr-test-framework-5.3.0.pom.md5 Mon Aug 17 12:16:37 2015
@@ -0,0 +1 @@
+0badb578f30a3c4a39e21674753ea3ae
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.3.0-RC2-rev1696229/solr/maven/org/apache/solr/solr-test-framework/5.3.0/solr-test-framework-5.3.0.pom.sha1
==============================================================================
--- dev/lucene/lucene-solr-5.3.0-RC2-rev1696229/solr/maven/org/apache/solr/solr-test-framework/5.3.0/solr-test-framework-5.3.0.pom.sha1 (added)
+++ dev/lucene/lucene-solr-5.3.0-RC2-rev1696229/solr/maven/org/apache/solr/solr-test-framework/5.3.0/solr-test-framework-5.3.0.pom.sha1 Mon Aug 17 12:16:37 2015
@@ -0,0 +1 @@
+23251f148c50c30735d5fab4df89e5a83bce5b2f
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.3.0-RC2-rev1696229/solr/maven/org/apache/solr/solr-test-framework/maven-metadata.xml
==============================================================================
--- dev/lucene/lucene-solr-5.3.0-RC2-rev1696229/solr/maven/org/apache/solr/solr-test-framework/maven-metadata.xml (added)
+++ dev/lucene/lucene-solr-5.3.0-RC2-rev1696229/solr/maven/org/apache/solr/solr-test-framework/maven-metadata.xml Mon Aug 17 12:16:37 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.0</version>
+  <versioning>
+    <versions>
+      <version>5.3.0</version>
+    </versions>
+    <lastUpdated>20150817114328</lastUpdated>
+  </versioning>
+</metadata>

Added: dev/lucene/lucene-solr-5.3.0-RC2-rev1696229/solr/maven/org/apache/solr/solr-test-framework/maven-metadata.xml.md5
==============================================================================
--- dev/lucene/lucene-solr-5.3.0-RC2-rev1696229/solr/maven/org/apache/solr/solr-test-framework/maven-metadata.xml.md5 (added)
+++ dev/lucene/lucene-solr-5.3.0-RC2-rev1696229/solr/maven/org/apache/solr/solr-test-framework/maven-metadata.xml.md5 Mon Aug 17 12:16:37 2015
@@ -0,0 +1 @@
+85c6d401a0d7e7766bad90bc8b0bd7ca
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.3.0-RC2-rev1696229/solr/maven/org/apache/solr/solr-test-framework/maven-metadata.xml.sha1
==============================================================================
--- dev/lucene/lucene-solr-5.3.0-RC2-rev1696229/solr/maven/org/apache/solr/solr-test-framework/maven-metadata.xml.sha1 (added)
+++ dev/lucene/lucene-solr-5.3.0-RC2-rev1696229/solr/maven/org/apache/solr/solr-test-framework/maven-metadata.xml.sha1 Mon Aug 17 12:16:37 2015
@@ -0,0 +1 @@
+34f84b87c1422d500c7bc6f78b8b4dfa64f00748
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.3.0-RC2-rev1696229/solr/maven/org/apache/solr/solr-uima/5.3.0/solr-uima-5.3.0-javadoc.jar
==============================================================================
Binary file - no diff available.

Propchange: dev/lucene/lucene-solr-5.3.0-RC2-rev1696229/solr/maven/org/apache/solr/solr-uima/5.3.0/solr-uima-5.3.0-javadoc.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: dev/lucene/lucene-solr-5.3.0-RC2-rev1696229/solr/maven/org/apache/solr/solr-uima/5.3.0/solr-uima-5.3.0-javadoc.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-5.3.0-RC2-rev1696229/solr/maven/org/apache/solr/solr-uima/5.3.0/solr-uima-5.3.0-javadoc.jar.asc (added)
+++ dev/lucene/lucene-solr-5.3.0-RC2-rev1696229/solr/maven/org/apache/solr/solr-uima/5.3.0/solr-uima-5.3.0-javadoc.jar.asc Mon Aug 17 12:16:37 2015
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Comment: GPGTools - https://gpgtools.org
+
+iQIcBAABCgAGBQJV0ckwAAoJEMOP9ew/z9s+hUIP/1powSSkheKjlF3UWd1Gy7TW
+N9XYW3QA3EkAxHYMmeK4H10e2QSIr/UfcXSTm1OC/kXpExrNOJTooUpr41CXlCgZ
+VKN96dAOw1rfbFHc3wLbbnhuULVunw6d0qseMKNmJ2hgSFu940gTEe0AX7IC/fNe
+pwFuQqvIg35s/Jwk4lLTWwOS5nbnh22tul4VramCZhe89En5vZzZj+7Gr6QVHpMI
+j8hIImNHBWVH8k04ok8Jd/5CNv+1fUHFe8U+RdYGoayaVAymkp2DgowlAmuerBqo
+1079QPs4PcK8H2fN0j/5xCwcEsEe2o2T1ZuzYBT64IKS1txq5Vu5bzHArv1kN0eb
+UQ7sNGNHNr7X/nxImRvMcwU0ArK5eA3Unn6nCyKYweDbEiZQ61xEQJ9SH50echqO
+v7cxeLDTVl21T+hRYbnanin4L7Sb2q9h4WfYnJwPAB+/s5KsqpQMfBjPvtjvWEDT
+/3q/zk9aY78UwPuinLgj4qP1cBTDg1hCEK5kp8qhQL+Nyo9TrZc1mJsD20ead8RQ
+DWTxqsLnaORq15wQ7QeykSe5aMSJNZTjuVP9Ff3Q5XX2jXnkVOzEXUBz1aUrgocY
+T4ELf/bR6DgaDtpgf2gDibeF0a10AnJIqgA4ec8/eRpSTFzUigm4igfizns0WOES
+KUfNvBNLFYlL+Zrz2SWm
+=sm2f
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-5.3.0-RC2-rev1696229/solr/maven/org/apache/solr/solr-uima/5.3.0/solr-uima-5.3.0-javadoc.jar.md5
==============================================================================
--- dev/lucene/lucene-solr-5.3.0-RC2-rev1696229/solr/maven/org/apache/solr/solr-uima/5.3.0/solr-uima-5.3.0-javadoc.jar.md5 (added)
+++ dev/lucene/lucene-solr-5.3.0-RC2-rev1696229/solr/maven/org/apache/solr/solr-uima/5.3.0/solr-uima-5.3.0-javadoc.jar.md5 Mon Aug 17 12:16:37 2015
@@ -0,0 +1 @@
+356fc8877a6efcfcefcc73a248492605
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.3.0-RC2-rev1696229/solr/maven/org/apache/solr/solr-uima/5.3.0/solr-uima-5.3.0-javadoc.jar.sha1
==============================================================================
--- dev/lucene/lucene-solr-5.3.0-RC2-rev1696229/solr/maven/org/apache/solr/solr-uima/5.3.0/solr-uima-5.3.0-javadoc.jar.sha1 (added)
+++ dev/lucene/lucene-solr-5.3.0-RC2-rev1696229/solr/maven/org/apache/solr/solr-uima/5.3.0/solr-uima-5.3.0-javadoc.jar.sha1 Mon Aug 17 12:16:37 2015
@@ -0,0 +1 @@
+feef1a0bd78da54dcc59ef97137324fd61bd6d89
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.3.0-RC2-rev1696229/solr/maven/org/apache/solr/solr-uima/5.3.0/solr-uima-5.3.0-sources.jar
==============================================================================
Binary file - no diff available.

Propchange: dev/lucene/lucene-solr-5.3.0-RC2-rev1696229/solr/maven/org/apache/solr/solr-uima/5.3.0/solr-uima-5.3.0-sources.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: dev/lucene/lucene-solr-5.3.0-RC2-rev1696229/solr/maven/org/apache/solr/solr-uima/5.3.0/solr-uima-5.3.0-sources.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-5.3.0-RC2-rev1696229/solr/maven/org/apache/solr/solr-uima/5.3.0/solr-uima-5.3.0-sources.jar.asc (added)
+++ dev/lucene/lucene-solr-5.3.0-RC2-rev1696229/solr/maven/org/apache/solr/solr-uima/5.3.0/solr-uima-5.3.0-sources.jar.asc Mon Aug 17 12:16:37 2015
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Comment: GPGTools - https://gpgtools.org
+
+iQIcBAABCgAGBQJV0ckwAAoJEMOP9ew/z9s+x68P/iJUyujYdEZLDRnmXdoIhuAf
+jqBWtyweNvXewoLC6lIpv3zgvkb8Kzz/sC8mA/HaqbkEUfRHw7rUVvk0EwJTl/G9
+I5no38f8nqbX9QwlAOX8nNpGfuVle0mqYy2p6OSGw/qFSp3QDMMY+F9UbRUGsVnZ
+VresWHQQtBtLuYXlx3NKSxCnWQqyYqSuffDiCct5L6n17HNhoPT+7iz6IefhLwH1
+HNy2LEKdlrIvSPFGpLLk30QQT9lzxXFbSbSEKScnkl45me4JlgPUAFosNxXV+HXX
+J3dGhBeKfQAJ6pgpBQUrQa9J8KiyyvpYgwq7dDDq8I4tLtKltu2keMf8fUSIjYTv
+gjQgSH/J+Ar6gxCANhIznM16kFqIjYA1ebV79VIVdfaIzl3luOzxUlb4rtBpEyS8
+lJygcevsHcrJeqvLwM6q8i7rdaQxEN3NAb05UlTPen0PdVRcTU0oMlrLSQZFdm0T
+hVEauK3KxX6X3Uoo22uYGYnsS+2m9Cj48naRWMU7YziFFjAVWV1vArWwhssYppWq
+TqQ6ZQCzy0d2Mbgrz9nbLJEmyeTCDsYApV1fX7a90ws/0USiw39o2PceyQsJzi0r
+C34rgOvrhJihcnEgVxrIYZobuVmUZF2m700u4fVzV8FvfTeHI1hJBNyg36hkUeTj
+MCxpcq9JtqgVvVHI7GnA
+=4ZOJ
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-5.3.0-RC2-rev1696229/solr/maven/org/apache/solr/solr-uima/5.3.0/solr-uima-5.3.0-sources.jar.md5
==============================================================================
--- dev/lucene/lucene-solr-5.3.0-RC2-rev1696229/solr/maven/org/apache/solr/solr-uima/5.3.0/solr-uima-5.3.0-sources.jar.md5 (added)
+++ dev/lucene/lucene-solr-5.3.0-RC2-rev1696229/solr/maven/org/apache/solr/solr-uima/5.3.0/solr-uima-5.3.0-sources.jar.md5 Mon Aug 17 12:16:37 2015
@@ -0,0 +1 @@
+a5462d7295808ca02e9f3cd4683abf9e
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.3.0-RC2-rev1696229/solr/maven/org/apache/solr/solr-uima/5.3.0/solr-uima-5.3.0-sources.jar.sha1
==============================================================================
--- dev/lucene/lucene-solr-5.3.0-RC2-rev1696229/solr/maven/org/apache/solr/solr-uima/5.3.0/solr-uima-5.3.0-sources.jar.sha1 (added)
+++ dev/lucene/lucene-solr-5.3.0-RC2-rev1696229/solr/maven/org/apache/solr/solr-uima/5.3.0/solr-uima-5.3.0-sources.jar.sha1 Mon Aug 17 12:16:37 2015
@@ -0,0 +1 @@
+ccb04380a7af47166aed4ce8c74de9c27836ad1c
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.3.0-RC2-rev1696229/solr/maven/org/apache/solr/solr-uima/5.3.0/solr-uima-5.3.0.jar
==============================================================================
Binary file - no diff available.

Propchange: dev/lucene/lucene-solr-5.3.0-RC2-rev1696229/solr/maven/org/apache/solr/solr-uima/5.3.0/solr-uima-5.3.0.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: dev/lucene/lucene-solr-5.3.0-RC2-rev1696229/solr/maven/org/apache/solr/solr-uima/5.3.0/solr-uima-5.3.0.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-5.3.0-RC2-rev1696229/solr/maven/org/apache/solr/solr-uima/5.3.0/solr-uima-5.3.0.jar.asc (added)
+++ dev/lucene/lucene-solr-5.3.0-RC2-rev1696229/solr/maven/org/apache/solr/solr-uima/5.3.0/solr-uima-5.3.0.jar.asc Mon Aug 17 12:16:37 2015
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Comment: GPGTools - https://gpgtools.org
+
+iQIcBAABCgAGBQJV0ckxAAoJEMOP9ew/z9s+bTIP/jWsNNHm46GE5hzyA6fmnn2S
+/gzThAyOeICrsQlyZ8Hm6CAHsxPYNyWvudQECCW8WBzC6MuzW4xucAGSIKdlVhRx
+g81B33sYcueJJgcmozzGrzWEL7kxl1Z5otuquPBvzPex+NsZxgjmiurF1OmB8Usg
+K1h+pnQlNuVR/pJTbpkeGKRNc9EFfXAQBCC8/qWyqFa1NjdoDE3frZAzlW+uHdTr
+gEBga39hmlLbIeG8hQ8bnCOGtj0YCp8zng0e8hlxXXg2nQ2EHDAuOb4JaqCsWji4
+uubr3ZV0IsK7MtctSE7YhPsiLnCRfRCOYqHaiWRS/1VLmgHKjir4tvL6pPMi+JzB
+39g/7VYPA/SXWa9NvzVTMQVCVX+vQa3E7vXOj1baZLDuxusR2mIzgomVuiiO1FXL
+JswYIFA8GVlFM5jic07DRdvYeu8DyPC+AiDX1rP9xUt27SNehv2Gm5LCC3U+CxpB
+ejmAjHiEhi6B2rLAoLTmu2IdNDPdiGs2aEt+BUJA3+IuPcZDbrLiaqaOfgDEQbVI
+46oxtyHqavC+U58Pdy0kN0VyyRu7SYQxiu+3k3FeVKfG3D+mWEbnOZ6cMPjlG/Gp
+RKrgMaG59b6CeNuizrQfbnmBX7h59jBm9pV9+pH2BuhhVpIOxtGM1tVmevI7SQKc
+OcRhv8QHtu8Y1XxFFUVK
+=QWeF
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-5.3.0-RC2-rev1696229/solr/maven/org/apache/solr/solr-uima/5.3.0/solr-uima-5.3.0.jar.md5
==============================================================================
--- dev/lucene/lucene-solr-5.3.0-RC2-rev1696229/solr/maven/org/apache/solr/solr-uima/5.3.0/solr-uima-5.3.0.jar.md5 (added)
+++ dev/lucene/lucene-solr-5.3.0-RC2-rev1696229/solr/maven/org/apache/solr/solr-uima/5.3.0/solr-uima-5.3.0.jar.md5 Mon Aug 17 12:16:37 2015
@@ -0,0 +1 @@
+d7567affec829a57f1b25a37d7ab2f04
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.3.0-RC2-rev1696229/solr/maven/org/apache/solr/solr-uima/5.3.0/solr-uima-5.3.0.jar.sha1
==============================================================================
--- dev/lucene/lucene-solr-5.3.0-RC2-rev1696229/solr/maven/org/apache/solr/solr-uima/5.3.0/solr-uima-5.3.0.jar.sha1 (added)
+++ dev/lucene/lucene-solr-5.3.0-RC2-rev1696229/solr/maven/org/apache/solr/solr-uima/5.3.0/solr-uima-5.3.0.jar.sha1 Mon Aug 17 12:16:37 2015
@@ -0,0 +1 @@
+4f32d4ed70c607aac34b8a264a01542caf6e1c4a
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.3.0-RC2-rev1696229/solr/maven/org/apache/solr/solr-uima/5.3.0/solr-uima-5.3.0.pom
==============================================================================
--- dev/lucene/lucene-solr-5.3.0-RC2-rev1696229/solr/maven/org/apache/solr/solr-uima/5.3.0/solr-uima-5.3.0.pom (added)
+++ dev/lucene/lucene-solr-5.3.0-RC2-rev1696229/solr/maven/org/apache/solr/solr-uima/5.3.0/solr-uima-5.3.0.pom Mon Aug 17 12:16:37 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.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-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.0-RC2-rev1696229/solr/maven/org/apache/solr/solr-uima/5.3.0/solr-uima-5.3.0.pom.asc
==============================================================================
--- dev/lucene/lucene-solr-5.3.0-RC2-rev1696229/solr/maven/org/apache/solr/solr-uima/5.3.0/solr-uima-5.3.0.pom.asc (added)
+++ dev/lucene/lucene-solr-5.3.0-RC2-rev1696229/solr/maven/org/apache/solr/solr-uima/5.3.0/solr-uima-5.3.0.pom.asc Mon Aug 17 12:16:37 2015
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Comment: GPGTools - https://gpgtools.org
+
+iQIcBAABCgAGBQJV0ckyAAoJEMOP9ew/z9s+t5oP/3q1oELj8wAGmJNfVEF8tUyk
+B38M/NOFSh6XjBm208a9kZ9bKDEBteq4srnKWMy1W5NndztASQVzx/Ae+zlzLbiF
+pLYgAFOzcc8Xtg/2B1ZhvEZ5t7zz8X+f5Ub5c//QTcjQj3ekmIvIkiyNbOwUlKa8
+VPVsWFELj1XpWXYmludEsIo62lfhsGoSfM2Xn8+lNdal3n6AtJwY277oWRXSYSKV
+jP2hDaMHP/34vwmC1VpgbncKPO6rXV+rlPrTBSrmosefClBkR/HAHxdOWO97FXJm
+anagNE81AqtwI3RdafbeNihTjivnXakht3GXw7NThu4T/VGZEJaHXd4tEcETT/fm
+oc3yvgwoGaWC8bcJhTHe8o4d4bcYXHzGGRxFdNkwPmpZ6cvYvVBEMcbqyOHv08Cv
+1g0zXWpyWx3oB6bORthyQSTVaXKy2hLGpHsBqXe71OLUuGM/d0QgXrBU3T7h3eZ6
+qQaAnrG9AjNcb7Z75313mBgDZzxMvsUd0tHSIOvU+1degYl3kZm1O6fzAvzYvCup
+9TAnbujO4NEp8GZBKVezst27j4I5CX9cmpbAEYOefwLVVXFkUY8jfYNzkK4BIg0w
+i6WcOvuTii5tQ2Vs3jWTUH+FXbjtwNQ8hCVZqdlA+cQsUJtCkgTE+zidMMlII1UC
+mPKJSOc08flJWTLBd3cm
+=SKnX
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-5.3.0-RC2-rev1696229/solr/maven/org/apache/solr/solr-uima/5.3.0/solr-uima-5.3.0.pom.md5
==============================================================================
--- dev/lucene/lucene-solr-5.3.0-RC2-rev1696229/solr/maven/org/apache/solr/solr-uima/5.3.0/solr-uima-5.3.0.pom.md5 (added)
+++ dev/lucene/lucene-solr-5.3.0-RC2-rev1696229/solr/maven/org/apache/solr/solr-uima/5.3.0/solr-uima-5.3.0.pom.md5 Mon Aug 17 12:16:37 2015
@@ -0,0 +1 @@
+81a2ca06235db7ce5b73fff1c49a5f56
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.3.0-RC2-rev1696229/solr/maven/org/apache/solr/solr-uima/5.3.0/solr-uima-5.3.0.pom.sha1
==============================================================================
--- dev/lucene/lucene-solr-5.3.0-RC2-rev1696229/solr/maven/org/apache/solr/solr-uima/5.3.0/solr-uima-5.3.0.pom.sha1 (added)
+++ dev/lucene/lucene-solr-5.3.0-RC2-rev1696229/solr/maven/org/apache/solr/solr-uima/5.3.0/solr-uima-5.3.0.pom.sha1 Mon Aug 17 12:16:37 2015
@@ -0,0 +1 @@
+c7f323365c6714e0652fcc60177fe62943a7fc97
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.3.0-RC2-rev1696229/solr/maven/org/apache/solr/solr-uima/maven-metadata.xml
==============================================================================
--- dev/lucene/lucene-solr-5.3.0-RC2-rev1696229/solr/maven/org/apache/solr/solr-uima/maven-metadata.xml (added)
+++ dev/lucene/lucene-solr-5.3.0-RC2-rev1696229/solr/maven/org/apache/solr/solr-uima/maven-metadata.xml Mon Aug 17 12:16:37 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.0</version>
+  <versioning>
+    <versions>
+      <version>5.3.0</version>
+    </versions>
+    <lastUpdated>20150817114415</lastUpdated>
+  </versioning>
+</metadata>

Added: dev/lucene/lucene-solr-5.3.0-RC2-rev1696229/solr/maven/org/apache/solr/solr-uima/maven-metadata.xml.md5
==============================================================================
--- dev/lucene/lucene-solr-5.3.0-RC2-rev1696229/solr/maven/org/apache/solr/solr-uima/maven-metadata.xml.md5 (added)
+++ dev/lucene/lucene-solr-5.3.0-RC2-rev1696229/solr/maven/org/apache/solr/solr-uima/maven-metadata.xml.md5 Mon Aug 17 12:16:37 2015
@@ -0,0 +1 @@
+c1354c48c468cc133c26e32518bf2475
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.3.0-RC2-rev1696229/solr/maven/org/apache/solr/solr-uima/maven-metadata.xml.sha1
==============================================================================
--- dev/lucene/lucene-solr-5.3.0-RC2-rev1696229/solr/maven/org/apache/solr/solr-uima/maven-metadata.xml.sha1 (added)
+++ dev/lucene/lucene-solr-5.3.0-RC2-rev1696229/solr/maven/org/apache/solr/solr-uima/maven-metadata.xml.sha1 Mon Aug 17 12:16:37 2015
@@ -0,0 +1 @@
+c084b70dbc821bc0d746ed68a2ec040b1261593a
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.3.0-RC2-rev1696229/solr/maven/org/apache/solr/solr-velocity/5.3.0/solr-velocity-5.3.0-javadoc.jar
==============================================================================
Binary file - no diff available.

Propchange: dev/lucene/lucene-solr-5.3.0-RC2-rev1696229/solr/maven/org/apache/solr/solr-velocity/5.3.0/solr-velocity-5.3.0-javadoc.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: dev/lucene/lucene-solr-5.3.0-RC2-rev1696229/solr/maven/org/apache/solr/solr-velocity/5.3.0/solr-velocity-5.3.0-javadoc.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-5.3.0-RC2-rev1696229/solr/maven/org/apache/solr/solr-velocity/5.3.0/solr-velocity-5.3.0-javadoc.jar.asc (added)
+++ dev/lucene/lucene-solr-5.3.0-RC2-rev1696229/solr/maven/org/apache/solr/solr-velocity/5.3.0/solr-velocity-5.3.0-javadoc.jar.asc Mon Aug 17 12:16:37 2015
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Comment: GPGTools - https://gpgtools.org
+
+iQIcBAABCgAGBQJV0ckyAAoJEMOP9ew/z9s+6bMP/RfPxl+9NOXRZ0gLt7/f2966
+qlE1gMhuCEOq5AAwhMt+mpOc5/ogXhOKvzrh3DrQd/RJFWcoVsxOnvT3d7/o1085
+dmCPSOSe56OZbkz4IthOr3cnEjCCl0CWEXfPF1FlFm6Q70Or7fg43AesxFmeWUGw
+cfEhA3rrdKiDoiNqT7hspYzvS14yYgPVC/zR8pAAWQxvXLQrI+sJj8a62Ay8q7L7
+xZvEwivlUL1cciRo9waSCj2DVeAWckg6Y9zE7NUvsFU8nWHkwr08fu3N3K55I+nG
+kcV2C4hirGjv7+ZmqXe+4kxX8utXkiFttn5K3eizfjsj77jOIm7PFyBglZx0If4O
+i/G56TjCPcTjo5R9CVfa5/YvMV9A+9oYmnsAcnyV0tpC4EKg0ESBeK4L9Mh9mNLl
+GwcO6+Usu4C/W3FzWxZwRNn4Mq7gWnBuP/9UbfRBWvYQq3inuqjE7nD+apv46tYc
+z4WMFvvhOnIetsqnS4XxDNNfsT4fFPFs1Ok4EkffQ6eIJvp/vfga6nWTODcGBmjF
+nXDSSg4waL8FET3cFsdT1RWtj2GToUnRBRfQMoW0n9h2tEuONIKzwsReXL9ssTDr
+jxhoJAP9EyB1hCdU4gkfBimjkMWawkf7jO2hj1+2s32TFvyBVV4Bw65JO5gm2opJ
+iBlI2QdrR12efsTZ9HcW
+=qpZ5
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-5.3.0-RC2-rev1696229/solr/maven/org/apache/solr/solr-velocity/5.3.0/solr-velocity-5.3.0-javadoc.jar.md5
==============================================================================
--- dev/lucene/lucene-solr-5.3.0-RC2-rev1696229/solr/maven/org/apache/solr/solr-velocity/5.3.0/solr-velocity-5.3.0-javadoc.jar.md5 (added)
+++ dev/lucene/lucene-solr-5.3.0-RC2-rev1696229/solr/maven/org/apache/solr/solr-velocity/5.3.0/solr-velocity-5.3.0-javadoc.jar.md5 Mon Aug 17 12:16:37 2015
@@ -0,0 +1 @@
+5efc3dfc7e63172307f283c194f8236b
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.3.0-RC2-rev1696229/solr/maven/org/apache/solr/solr-velocity/5.3.0/solr-velocity-5.3.0-javadoc.jar.sha1
==============================================================================
--- dev/lucene/lucene-solr-5.3.0-RC2-rev1696229/solr/maven/org/apache/solr/solr-velocity/5.3.0/solr-velocity-5.3.0-javadoc.jar.sha1 (added)
+++ dev/lucene/lucene-solr-5.3.0-RC2-rev1696229/solr/maven/org/apache/solr/solr-velocity/5.3.0/solr-velocity-5.3.0-javadoc.jar.sha1 Mon Aug 17 12:16:37 2015
@@ -0,0 +1 @@
+a445e28ce5fbf4d3e2e8939fe9729a83343f78d4
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.3.0-RC2-rev1696229/solr/maven/org/apache/solr/solr-velocity/5.3.0/solr-velocity-5.3.0-sources.jar
==============================================================================
Binary file - no diff available.

Propchange: dev/lucene/lucene-solr-5.3.0-RC2-rev1696229/solr/maven/org/apache/solr/solr-velocity/5.3.0/solr-velocity-5.3.0-sources.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream