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 [9/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/ luc...

Added: dev/lucene/lucene-solr-5.3.0-RC2-rev1696229/lucene/maven/org/apache/lucene/lucene-replicator/5.3.0/lucene-replicator-5.3.0.pom
==============================================================================
--- dev/lucene/lucene-solr-5.3.0-RC2-rev1696229/lucene/maven/org/apache/lucene/lucene-replicator/5.3.0/lucene-replicator-5.3.0.pom (added)
+++ dev/lucene/lucene-solr-5.3.0-RC2-rev1696229/lucene/maven/org/apache/lucene/lucene-replicator/5.3.0/lucene-replicator-5.3.0.pom Mon Aug 17 12:16:37 2015
@@ -0,0 +1,124 @@
+<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-parent</artifactId>
+    <version>5.3.0</version>
+    <relativePath>../pom.xml</relativePath>
+  </parent>
+  <groupId>org.apache.lucene</groupId>
+  <artifactId>lucene-replicator</artifactId>
+  <packaging>jar</packaging>
+  <name>Lucene Replicator</name>
+  <description>Lucene Replicator Module</description>
+  <properties>
+    <module-directory>lucene/replicator</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 -->
+      <groupId>org.apache.lucene</groupId>
+      <artifactId>lucene-test-framework</artifactId>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.lucene</groupId>
+      <artifactId>lucene-core</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.lucene</groupId>
+      <artifactId>lucene-facet</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>commons-logging</groupId>
+      <artifactId>commons-logging</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>javax.servlet</groupId>
+      <artifactId>javax.servlet-api</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.eclipse.jetty</groupId>
+      <artifactId>jetty-continuation</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-server</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.eclipse.jetty</groupId>
+      <artifactId>jetty-servlet</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.eclipse.jetty</groupId>
+      <artifactId>jetty-util</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.lucene</groupId>
+      <artifactId>lucene-codecs</artifactId>
+      <scope>test</scope>
+    </dependency>
+
+  </dependencies>
+  <build>
+    <sourceDirectory>${module-path}/src/java</sourceDirectory>
+    <testSourceDirectory>${module-path}/src/test</testSourceDirectory>
+    <testResources>
+      <testResource>
+        <directory>${project.build.testSourceDirectory}</directory>
+        <excludes>
+          <exclude>**/*.java</exclude>
+        </excludes>
+      </testResource>
+    </testResources>
+    <plugins>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-surefire-plugin</artifactId>
+      </plugin>
+    </plugins>
+  </build>
+</project>

Added: dev/lucene/lucene-solr-5.3.0-RC2-rev1696229/lucene/maven/org/apache/lucene/lucene-replicator/5.3.0/lucene-replicator-5.3.0.pom.asc
==============================================================================
--- dev/lucene/lucene-solr-5.3.0-RC2-rev1696229/lucene/maven/org/apache/lucene/lucene-replicator/5.3.0/lucene-replicator-5.3.0.pom.asc (added)
+++ dev/lucene/lucene-solr-5.3.0-RC2-rev1696229/lucene/maven/org/apache/lucene/lucene-replicator/5.3.0/lucene-replicator-5.3.0.pom.asc Mon Aug 17 12:16:37 2015
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Comment: GPGTools - https://gpgtools.org
+
+iQIcBAABCgAGBQJV0cc9AAoJEMOP9ew/z9s+wX4QAItF/8Y/I5S51f4pKtodXx7I
+wMYgtfa1x7scP6JvzBnGdgCB/z89+qxrut+tiAsoNNR81i9d0xDsYOcNCg0nbiSC
+F+ssVLITMiAu4Ce3owwMyvfZw6HYq89251ufEIGqcV0hDJYn/5jFsU46qR0TVw6c
+yFm2DF++ZZWIcbDjgH+PD/vsHlcjSKA9ojdfOhtXiK+kdXkxO4sX249QWBFqibeM
+pZlc+2FWXZvtpWZLQwjtvWGS15BrNdbbs8hkJY88Nzuj9GnJXabBe8tOfUWBPnZa
+Uca1Cx/lvLxiIk+3ZViYAsWbTRZ1Bpz7EoLebiMPXG3e68oXFJa7gI/togl4T/ba
+0AZ6Hh2ILnUBodgvkMuIz3ZqJuwPF8XX8HbzLTqrc3bJWjNL5G8aiCv+WSBm6VT0
++w9JQJRwkjQjWU5ZSpC3KN8IywCbl6q0oY5erGRzKcCaVXjk4HvF0ZiSAIBrH7OK
+Y/lmWmSqhofk+1/WSKDPWUcEPiydn14EexwbX4SLlgHox796qrMweBuoruNTZHyc
+ioYGgsltLmwqe6HWCbmTjecmI0cy5RZGG9Kmvf3ZPar1BMyKjiRVTlD8PO65jqu2
+7dSvH9EGlj1yZy0uziioOqTfRc34YMyl/0rzzmuip8l7ai/7QNn6ClDpr/FqttKx
+s2O1q3CK2LMYBRGPan+D
+=2XhT
+-----END PGP SIGNATURE-----

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

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

Added: dev/lucene/lucene-solr-5.3.0-RC2-rev1696229/lucene/maven/org/apache/lucene/lucene-replicator/maven-metadata.xml
==============================================================================
--- dev/lucene/lucene-solr-5.3.0-RC2-rev1696229/lucene/maven/org/apache/lucene/lucene-replicator/maven-metadata.xml (added)
+++ dev/lucene/lucene-solr-5.3.0-RC2-rev1696229/lucene/maven/org/apache/lucene/lucene-replicator/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.lucene</groupId>
+  <artifactId>lucene-replicator</artifactId>
+  <version>5.3.0</version>
+  <versioning>
+    <versions>
+      <version>5.3.0</version>
+    </versions>
+    <lastUpdated>20150817113530</lastUpdated>
+  </versioning>
+</metadata>

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

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

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

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

Added: dev/lucene/lucene-solr-5.3.0-RC2-rev1696229/lucene/maven/org/apache/lucene/lucene-sandbox/5.3.0/lucene-sandbox-5.3.0-javadoc.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-5.3.0-RC2-rev1696229/lucene/maven/org/apache/lucene/lucene-sandbox/5.3.0/lucene-sandbox-5.3.0-javadoc.jar.asc (added)
+++ dev/lucene/lucene-solr-5.3.0-RC2-rev1696229/lucene/maven/org/apache/lucene/lucene-sandbox/5.3.0/lucene-sandbox-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
+
+iQIcBAABCgAGBQJV0cc+AAoJEMOP9ew/z9s+4xUQAJU+HA504vFc+/tGcJ8ZYdfy
+VLRr89I2HDhCREmHRQR33xancmV4oyutM6vXxAG+617pfRNUI/V+4NHVLYHdlKD1
+wpTeU846M4+IK+2ih9t/WYZi2HP3IM4CFTnuQDioFjUEsj2OlpwsSBJ0Oozi9zu9
+ObPSpIeFYjsmz5sipkyNl8SwT8AeeVaYM1saplvxrtMm5Q3UBfuRyNbOS6rq0N4B
+2XRNLiRnM7867ToE2BFn7vHRTCcHr3o808gKPC0qkvOsnqJasRwWm6UreXii/Jw4
+bE3KZ5wBC16I0I2SHVdhlvaoNBGaXe1h5a/nBCntJI7GenbbrB4w7coQPZV7VLXK
+irrH1PDyP5k5Xfq8++nd0Hdz7jGL/6zS0anO448RS7Amd6q+IC4B6zcZZ/j3ZwEJ
+F3u4Xmu/HEBXUdogdP30qRT3AvVyu12Nov2AlY0PuNFSTHKowBfrZ2NK1msOdKfN
+CGW+/pA3RuN1lbgWMBoaxUOinrqvLc/mNkJhfiGFvxKRwXIhQ0Q12YPWpHQpkEyy
+h34CvzpVKGvd0bCtrxcjwIbRzLuMAtGh7t53w+tzccFGZrKdBPOnfwO+oz8Lyayr
+ICUhHjliE8+clRqPUYBkrSnoWwd81YjOyFrJrX1KimRLaeaPzMoBARn1PnzX1qKU
+y0KSph3hfVKPlUWuosqQ
+=nuqm
+-----END PGP SIGNATURE-----

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

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

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

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

Added: dev/lucene/lucene-solr-5.3.0-RC2-rev1696229/lucene/maven/org/apache/lucene/lucene-sandbox/5.3.0/lucene-sandbox-5.3.0-sources.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-5.3.0-RC2-rev1696229/lucene/maven/org/apache/lucene/lucene-sandbox/5.3.0/lucene-sandbox-5.3.0-sources.jar.asc (added)
+++ dev/lucene/lucene-solr-5.3.0-RC2-rev1696229/lucene/maven/org/apache/lucene/lucene-sandbox/5.3.0/lucene-sandbox-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
+
+iQIcBAABCgAGBQJV0cc+AAoJEMOP9ew/z9s+rxcP/RkA/doIevRluams7CQpiGV3
+prIHrTqqumUJ/AmdNTdKdkIAb90ycbUWWUzgvS85+hwimzyHJSvLZcCKf8E0+B+X
+13HtyX3HElzJkJG2dDfqsy8Yb10dFbC/LiZPOeCd8apXPhv49Pnmuj/PXTTwL0le
+TS2cDP69pNPdrhZmsWcd6xthLVaxiuQpo3kn/T5LqThNBkvguKV0hNbSOH58nFIu
+MTDLGKxcRnFQgRtaER22M9Nww6MD5CmlYmRES3+KPCyWS5NFV/48FYaMD3NPbevg
+WI5R1iHoalS0iUq9WikJZvbI14g2Q2NlbQg828pT5jCeSB9B09QM7S9smN8VrkYz
+wY6u+5gLdQa4blyfnm8gFII8wVtPLIzCMu1ndGZGqAHo8VCNnnWAOlZQ0Nv6DQXH
+59mrk8HiPYUemZPHSbbV8YyCma2zkuxldw+9p1ir1rPLZTJ1iN4KWQKIgj3TvmT4
+A/CWnLOo2Ia9lg8u/hc5/oyAixyfIFpgETfBx45mM0+I3WPsnHi2F7N3ULWJ/nC2
+j4GcVRT54LRIscUFg408tPr3fvrmCNQWRTjIzGS7dyOwHIGJ4UUuDHQMJLkDX4aJ
+b3f/htnqA06x6KQtkICcoLFnG6slQWjktE/UsrxUEwQB048oRPsZrN6jS5RdB/8G
+eJ4jdSL2sFQ0es9JaBqA
+=UcJL
+-----END PGP SIGNATURE-----

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

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

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

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

Added: dev/lucene/lucene-solr-5.3.0-RC2-rev1696229/lucene/maven/org/apache/lucene/lucene-sandbox/5.3.0/lucene-sandbox-5.3.0.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-5.3.0-RC2-rev1696229/lucene/maven/org/apache/lucene/lucene-sandbox/5.3.0/lucene-sandbox-5.3.0.jar.asc (added)
+++ dev/lucene/lucene-solr-5.3.0-RC2-rev1696229/lucene/maven/org/apache/lucene/lucene-sandbox/5.3.0/lucene-sandbox-5.3.0.jar.asc Mon Aug 17 12:16:37 2015
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Comment: GPGTools - https://gpgtools.org
+
+iQIcBAABCgAGBQJV0cc/AAoJEMOP9ew/z9s+xYwQAIgsmijWDYk6I61qWisjU3d3
+PZo9w+afUoGrkvwhdggArCjHep+K0Bp9g0mSo6BlCmTHXqgoUJEsV9KBHgzg8wpp
+CaP8lAvTl5nQdk/iu+yHVkfjckx2v7JtCsl2W6PY8o+IskASxRJ7SJoOY+gbH18I
+/lZwr0I6ozYyBS1eqCWIj8YL0smYqHj2vpOTHlLGZUTmXTLaAdNGbgz6CkycGPMr
+eLldPAO3flaRKOCmwjvUmhvcdmWEIMGob/BCZSOoFCAX3ecMGfzEOG6MGNTARX23
+F6DELwKbtjCeRc1/frHArUcuucnXGKJMvwqpuxGpkmJOYy5cI0Zmt1NjsXMEe1BA
+oJyqlliniDj3/4ueFQ27ioSOWse494RHCgGEdapsZ9urLRvnTnQZj8WgSD9INFkx
+66kp+s6BzPYnAzirX+K2FomrCoje12PRgqSCB7iyA5pnWBpwQtfwEOTmbAXkchCf
+2bKKr1t+oP0FmRyP0RmoQ80uBXQ8gDlhESRUTTOKdkTVpyeFpRGiCrSvGAs+n6AE
+vDbhTf2HxQ3CZ8CDkt+XpNKHtIztQl6TrMsPxyAyA70cxNdst9pUSJsO8ZH2J7Xz
+rRx5bOzxDA8DBxm2lXwyZpoA0mFXlu9d+IizYkqOjeJXQ/UY5cgU5WtOqKjyngfE
+4esee8c6CMhB1WdBDuca
+=gNHK
+-----END PGP SIGNATURE-----

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

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

Added: dev/lucene/lucene-solr-5.3.0-RC2-rev1696229/lucene/maven/org/apache/lucene/lucene-sandbox/5.3.0/lucene-sandbox-5.3.0.pom
==============================================================================
--- dev/lucene/lucene-solr-5.3.0-RC2-rev1696229/lucene/maven/org/apache/lucene/lucene-sandbox/5.3.0/lucene-sandbox-5.3.0.pom (added)
+++ dev/lucene/lucene-solr-5.3.0-RC2-rev1696229/lucene/maven/org/apache/lucene/lucene-sandbox/5.3.0/lucene-sandbox-5.3.0.pom Mon Aug 17 12:16:37 2015
@@ -0,0 +1,83 @@
+<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-parent</artifactId>
+    <version>5.3.0</version>
+    <relativePath>../pom.xml</relativePath>
+  </parent>
+  <groupId>org.apache.lucene</groupId>
+  <artifactId>lucene-sandbox</artifactId>
+  <packaging>jar</packaging>
+  <name>Lucene Sandbox</name>
+  <description>Lucene Sandbox</description>
+  <properties>
+    <module-directory>lucene/sandbox</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 -->
+      <groupId>org.apache.lucene</groupId>
+      <artifactId>lucene-test-framework</artifactId>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.lucene</groupId>
+      <artifactId>lucene-core</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>jakarta-regexp</groupId>
+      <artifactId>jakarta-regexp</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.lucene</groupId>
+      <artifactId>lucene-codecs</artifactId>
+      <scope>test</scope>
+    </dependency>
+
+  </dependencies>
+  <build>
+    <sourceDirectory>${module-path}/src/java</sourceDirectory>
+    <resources>
+      <resource>
+        <directory>${module-path}/src/resources</directory>
+      </resource>
+    </resources>
+    <testSourceDirectory>${module-path}/src/test</testSourceDirectory>
+    <testResources>
+      <testResource>
+        <directory>${project.build.testSourceDirectory}</directory>
+        <excludes>
+          <exclude>**/*.java</exclude>
+        </excludes>
+      </testResource>
+    </testResources>
+  </build>
+</project>

Added: dev/lucene/lucene-solr-5.3.0-RC2-rev1696229/lucene/maven/org/apache/lucene/lucene-sandbox/5.3.0/lucene-sandbox-5.3.0.pom.asc
==============================================================================
--- dev/lucene/lucene-solr-5.3.0-RC2-rev1696229/lucene/maven/org/apache/lucene/lucene-sandbox/5.3.0/lucene-sandbox-5.3.0.pom.asc (added)
+++ dev/lucene/lucene-solr-5.3.0-RC2-rev1696229/lucene/maven/org/apache/lucene/lucene-sandbox/5.3.0/lucene-sandbox-5.3.0.pom.asc Mon Aug 17 12:16:37 2015
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Comment: GPGTools - https://gpgtools.org
+
+iQIcBAABCgAGBQJV0cc/AAoJEMOP9ew/z9s+B5wP/jGmEzfDTD/zoVAuedFNqeTR
+BO3kPClMBfV6yS7BwWSWpT47k3QQeoRUN79DPP2KTGd71AsqHU1MdquGzRmGDVtT
+flOZbzBCliJpssOy0EgqVFCkGGFaSyYzgNKHEZMwfNveQOs+7ZoR/ZOMaYmVA2Q9
+upvzY2yx1m7XvHmP2+pEmTImTNwl/3RutP0lPdKk2ZSg74d5RCreFfhcTShhUN9H
+nUD2kH+4ibWsRLQd8lpr7If3ldqxoGuUYA4okOmtQV3nxNoHiwu7D+0h4q124bkt
+tUID6op4BQzjc30mXlPz4N1hZncebQDV+8cDuiC6dY1mHzueJM8zShVrsTSUr2py
+G96l+WYAEpP4/BXtHGsCEflE6YQkDEAehVuujJZWbgdZW/2n7ABJpxs18UCrSVtT
+i9T2Vj536RVn7qZyW9CG+TqnOgBZ3zGUMJLS6w7y6Venf9fIT0xf1ySteBbPir85
+eJYoU3IgpFI3tYMbWfodte3cJdUSYMxH8f3x0CTmDnvf08D71zNFYGmtFdrbYY2t
+X9IsbQwALYNRfQ8Uqtn0MdOmulTRSOy5p3a6B+JLdDF6JOVsEXC1kAT9oM+qo4RL
+oJPPYtQMvc2Egx75s6xnQr2SGM4K+Pvg5k7AhMpiOIPeB5F3cJ6jh5NGe1VurfI6
+z1McwMeOcqlSEuKm6J9Y
+=+iyR
+-----END PGP SIGNATURE-----

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

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

Added: dev/lucene/lucene-solr-5.3.0-RC2-rev1696229/lucene/maven/org/apache/lucene/lucene-sandbox/maven-metadata.xml
==============================================================================
--- dev/lucene/lucene-solr-5.3.0-RC2-rev1696229/lucene/maven/org/apache/lucene/lucene-sandbox/maven-metadata.xml (added)
+++ dev/lucene/lucene-solr-5.3.0-RC2-rev1696229/lucene/maven/org/apache/lucene/lucene-sandbox/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.lucene</groupId>
+  <artifactId>lucene-sandbox</artifactId>
+  <version>5.3.0</version>
+  <versioning>
+    <versions>
+      <version>5.3.0</version>
+    </versions>
+    <lastUpdated>20150817113531</lastUpdated>
+  </versioning>
+</metadata>

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

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