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/12 21:03:46 UTC

svn commit: r10143 [9/19] - in /dev/lucene/lucene-solr-5.3.0-RC1-rev1695567: ./ 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-RC1-rev1695567/lucene/maven/org/apache/lucene/lucene-replicator/5.3.0/lucene-replicator-5.3.0.pom
==============================================================================
--- dev/lucene/lucene-solr-5.3.0-RC1-rev1695567/lucene/maven/org/apache/lucene/lucene-replicator/5.3.0/lucene-replicator-5.3.0.pom (added)
+++ dev/lucene/lucene-solr-5.3.0-RC1-rev1695567/lucene/maven/org/apache/lucene/lucene-replicator/5.3.0/lucene-replicator-5.3.0.pom Wed Aug 12 19:03:44 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-RC1-rev1695567/lucene/maven/org/apache/lucene/lucene-replicator/5.3.0/lucene-replicator-5.3.0.pom.asc
==============================================================================
--- dev/lucene/lucene-solr-5.3.0-RC1-rev1695567/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-RC1-rev1695567/lucene/maven/org/apache/lucene/lucene-replicator/5.3.0/lucene-replicator-5.3.0.pom.asc Wed Aug 12 19:03:44 2015
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Comment: GPGTools - https://gpgtools.org
+
+iQIcBAABCgAGBQJVy4N+AAoJEMOP9ew/z9s+YVEP+QFSWBCCuOemGa/y6nr68Xtc
+0pk1xDuFVz9ScaElIjdZPFz1wXslkRLoCMyACnl4BtE25HRpeh7VQvULp2MxYy8T
+cfNITYa4LdI2Rg1te25x7DqM5LVo++0XByeF6G1dM8WZO1V8AQ9b0i1TBo4MaxLD
+2Ns4jf/RgSVLEXGgyzsg1SJjrTIV3vWukJ68HRm4KDFxUytIwhrR1SgJ6hfKO7J+
+Q2ljmfdRgIp88CL1HUpM+7o/5MtuWNCBND5GSQM1cKIHGW2HiD85100NrLySlr13
+VSFSQ2VTG+sEnX+LphPLtGUVzRz06ZhC4PTWPECOH6MNUcJPJuURuMOImei+ohvX
+HBLtKfzBZoA/55nNHUlMCqHmSRt0zMyWCfPBLTs2AFbDetL8yQeB/KCs6sOsR91z
+CQsJTgUtW9Z7Xlkhc+pCxdontkeZGQ0Y9rIWRXuufqDHO8VLN6rar5GRsrOZ1kCo
+an2hXyumw5v2ydajw37QFWgwlUJBPbJhiRq6r6qbUypnig55LdvT0XTWSf5x6RuA
+wdiiJNHHINFTP08cWVkKzQQwHXl0z4UHy3jP5QHTlJJsXsRRWq0AEFehzNlv4D2G
+LUVRUfvKFvrhzg3HKd/G4O8A0ronl+mQaUERCbrk3NN8cXsFAjPNN0tqSi4YfxOh
+34FbfjC5T++duSSUjxdE
+=Z0xp
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-5.3.0-RC1-rev1695567/lucene/maven/org/apache/lucene/lucene-replicator/5.3.0/lucene-replicator-5.3.0.pom.md5
==============================================================================
--- dev/lucene/lucene-solr-5.3.0-RC1-rev1695567/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-RC1-rev1695567/lucene/maven/org/apache/lucene/lucene-replicator/5.3.0/lucene-replicator-5.3.0.pom.md5 Wed Aug 12 19:03:44 2015
@@ -0,0 +1 @@
+831cfac5e6e613b0ad7d1b4553d0d432
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.3.0-RC1-rev1695567/lucene/maven/org/apache/lucene/lucene-replicator/5.3.0/lucene-replicator-5.3.0.pom.sha1
==============================================================================
--- dev/lucene/lucene-solr-5.3.0-RC1-rev1695567/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-RC1-rev1695567/lucene/maven/org/apache/lucene/lucene-replicator/5.3.0/lucene-replicator-5.3.0.pom.sha1 Wed Aug 12 19:03:44 2015
@@ -0,0 +1 @@
+0957da7639c472771c77e3eaa56c4dfaa07213bf
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.3.0-RC1-rev1695567/lucene/maven/org/apache/lucene/lucene-replicator/maven-metadata.xml
==============================================================================
--- dev/lucene/lucene-solr-5.3.0-RC1-rev1695567/lucene/maven/org/apache/lucene/lucene-replicator/maven-metadata.xml (added)
+++ dev/lucene/lucene-solr-5.3.0-RC1-rev1695567/lucene/maven/org/apache/lucene/lucene-replicator/maven-metadata.xml Wed Aug 12 19:03:44 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>20150812173250</lastUpdated>
+  </versioning>
+</metadata>

Added: dev/lucene/lucene-solr-5.3.0-RC1-rev1695567/lucene/maven/org/apache/lucene/lucene-replicator/maven-metadata.xml.md5
==============================================================================
--- dev/lucene/lucene-solr-5.3.0-RC1-rev1695567/lucene/maven/org/apache/lucene/lucene-replicator/maven-metadata.xml.md5 (added)
+++ dev/lucene/lucene-solr-5.3.0-RC1-rev1695567/lucene/maven/org/apache/lucene/lucene-replicator/maven-metadata.xml.md5 Wed Aug 12 19:03:44 2015
@@ -0,0 +1 @@
+953836abea1006ee6542e1383508c809
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.3.0-RC1-rev1695567/lucene/maven/org/apache/lucene/lucene-replicator/maven-metadata.xml.sha1
==============================================================================
--- dev/lucene/lucene-solr-5.3.0-RC1-rev1695567/lucene/maven/org/apache/lucene/lucene-replicator/maven-metadata.xml.sha1 (added)
+++ dev/lucene/lucene-solr-5.3.0-RC1-rev1695567/lucene/maven/org/apache/lucene/lucene-replicator/maven-metadata.xml.sha1 Wed Aug 12 19:03:44 2015
@@ -0,0 +1 @@
+5d73571e507d2138fe2f36db0960045246d63de0
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.3.0-RC1-rev1695567/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-RC1-rev1695567/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-RC1-rev1695567/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-RC1-rev1695567/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-RC1-rev1695567/lucene/maven/org/apache/lucene/lucene-sandbox/5.3.0/lucene-sandbox-5.3.0-javadoc.jar.asc Wed Aug 12 19:03:44 2015
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Comment: GPGTools - https://gpgtools.org
+
+iQIcBAABCgAGBQJVy4N+AAoJEMOP9ew/z9s+8pgP/3ZpgRnXJGQlNctXi6shS1JW
+yk7zU9/fnFs6joVgapRgvpNf56vMuebQgSk75+fgCHohxKxJ6s5wRxoisEICEK43
+N4dcw0qrM6/Y+ia4WDR3hvYOOfesd3j7i0/OydO9X5CiUnP9g9kq0bBOLjWzOBD7
+z+dPXjAwQDISk9nQzwcL5/NTYcC2yqPi2z9oh3dlSi0aFfXF9XFxFZUYptw958R9
+P51DSUMvfB7lFQTXVqz2QOg/Uf9i2VcHYE6bQV/A6DemLD8K2XAhXRi18ISCU0eT
+4f3j+AOdbMETUVnrcPSaYeipGiJ2T9jECMmzzHkKz8Fu73dfkCfWwre3eg/MZaex
+36UqOkzO4IuT5dHhXefAGClKQ2pkWH8Bbp1VxmpIm8t3d8UJkrpQZ6HfMrC1UrDu
+DIxsz3QfdksB0FM+SNbMFT9KfVbFGCUSQWwvn5SzMf3C1aPF644XGMMLVuj/8/yo
+stqrHP9J5uBKNwpuL1Z6sLGoy8ziXbOOfPWrw7SbDnPKgwlxsZJEmqljtPBouw6H
+XeVktA1VGi8bTeJrCb0XMxMIL+uA9KfEvHH7N3doe+NeDvk+lwCtSJkU+qgmMFgB
+w+cb6aEhZ7tf47Cse3Ua8EMgy5QkkplvL8ayFbmk9QDGzKCYkZeaSONRBT6gmliX
+YCGvQeT6eBStGLf261/w
+=BYeu
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-5.3.0-RC1-rev1695567/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-RC1-rev1695567/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-RC1-rev1695567/lucene/maven/org/apache/lucene/lucene-sandbox/5.3.0/lucene-sandbox-5.3.0-javadoc.jar.md5 Wed Aug 12 19:03:44 2015
@@ -0,0 +1 @@
+256fa07667f6966d2b42ff2a5160675b
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.3.0-RC1-rev1695567/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-RC1-rev1695567/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-RC1-rev1695567/lucene/maven/org/apache/lucene/lucene-sandbox/5.3.0/lucene-sandbox-5.3.0-javadoc.jar.sha1 Wed Aug 12 19:03:44 2015
@@ -0,0 +1 @@
+9b865f5497f60cc82566bb82a62c63f430fa5105
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.3.0-RC1-rev1695567/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-RC1-rev1695567/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-RC1-rev1695567/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-RC1-rev1695567/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-RC1-rev1695567/lucene/maven/org/apache/lucene/lucene-sandbox/5.3.0/lucene-sandbox-5.3.0-sources.jar.asc Wed Aug 12 19:03:44 2015
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Comment: GPGTools - https://gpgtools.org
+
+iQIcBAABCgAGBQJVy4N/AAoJEMOP9ew/z9s+nDIP/0PNQmL527aAhZXqI4GMsE/f
+ru9mSS4NdiaHVX54typqwnrTOS9Qd1WcNdQH3LE1RNj8KR2jMLbK0O+Q9vjkkgiD
+ejjMkql6F+wHPSKDmd3Yh95ibTRH1hVZ4EzawEUhCPhO6HL2ND1FIzLndv7sLGuJ
+n5yhFJ/eKnmZpagfVCLoGKOmns1/v/Xqg15gl/m9DrHpGkxuvb4c6eiht2CsGfkk
+Ba1zfn/a6JalZeMqLvZsvJrqhXAhiTyJiwlJ6NZv2Nqvj4FjNZSb//WgEekxC+hf
+OUuQ3u5rtMGLpBhVPf285jq4Qvb1UZlbE+qYToK99Yz+W4zvxWjncx7PtQSMskJd
+g5MLGhrszAb4hJRC51jEriDZBmZFxtaUJuLUIXSIJvTociuT46TU0Soe3mTun9sN
+u6FRI+DN2iG16Qc6BauQuemBLX0JaSbKhs6l0K9cS56RQ1q4r3XEjtAwg0B0RVhP
+GQJPzsTzIWx2DLNdgIWlhUhouGSdNfY/HT3HyKgpiHws0IZvgIZqqKAV0KKv6MFb
+mJ2/2FhmgDX1MP86gwXPovnzWM94SitGRPEYTZQxeO1Gz6zMqT9tsarTSU65Ster
+gIXOvmbqc8qaBuuyGYL2TO+/YuYVVbkcnTkhwVNhfPnsTTj2Qx2txSKXytruAmB6
+32w8la8YqA5I+3BRaGnA
+=G6Z0
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-5.3.0-RC1-rev1695567/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-RC1-rev1695567/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-RC1-rev1695567/lucene/maven/org/apache/lucene/lucene-sandbox/5.3.0/lucene-sandbox-5.3.0-sources.jar.md5 Wed Aug 12 19:03:44 2015
@@ -0,0 +1 @@
+ba46505d89c3adc1f3ab36ca320302a4
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.3.0-RC1-rev1695567/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-RC1-rev1695567/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-RC1-rev1695567/lucene/maven/org/apache/lucene/lucene-sandbox/5.3.0/lucene-sandbox-5.3.0-sources.jar.sha1 Wed Aug 12 19:03:44 2015
@@ -0,0 +1 @@
+ff4f000320e04b0cc817a768e8b2c4ce9943ba95
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.3.0-RC1-rev1695567/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-RC1-rev1695567/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-RC1-rev1695567/lucene/maven/org/apache/lucene/lucene-sandbox/5.3.0/lucene-sandbox-5.3.0.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-5.3.0-RC1-rev1695567/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-RC1-rev1695567/lucene/maven/org/apache/lucene/lucene-sandbox/5.3.0/lucene-sandbox-5.3.0.jar.asc Wed Aug 12 19:03:44 2015
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Comment: GPGTools - https://gpgtools.org
+
+iQIcBAABCgAGBQJVy4OAAAoJEMOP9ew/z9s+h+oP/2u91ZmxXF6BF6TnHMpW+L8U
+n1TXeZdJ+e2Onr/A1UhLl5ZL2UfzyeaJS+nq1U3yzEbpd1+VVnLMHnYVIvxVoMG+
+E6GaarRLZy6VckuQntZO958Ab044ApNIwcow6cWlTc4+1sqd1wZRfSxrMpBvwwwe
+rr2rc5myAD0eiFUV5Y8EyKoagAJBr7XAaJNUK/5//Z5wDjeQKjd0PPrqrcs1GDMA
+hGEUEVapHTqEgxhrfoFBJ1Bius7p0noLRpw2Eoxm+aDuP9K1Xt0XW5VYNjuAEeWH
+6GAaX5KbGUVzo1aEwDNy12m6AUje9Djeq89LNTFpuGlscSsEy51Wynrqk6a7jP2T
+Kf3w+i74CLok7kYs9VpDMo4S+p4Wxo9OTDBLlROrHL2ibancKiZMQYUOWCbmo1IK
+NnHryl8e8JWveZ+GSXnRM5zx1DmRW5kSVTkd4VbiE7xyylSG5bhS6xcc/2DoJ4+n
+KBex49aAqvuEP9M8Xbifmnuyt9qgm5K1nuD4+uCvIjkJ4zSTsxy1UteZJSJ/pXqw
+E/F8OS2xNroB7YNeE8/dr1Ck4cx0fF3p0A+GmrgyMjTPNhDr05MUsCkRBMwSxLqi
+BPgvy3yFOfy2ZuYeW+zYe0InOia+lWLL7KXcSCcVtKh7hNc9kkGck0fhlbs8qkX4
+cw1LAhCJcus5c+AWy2aS
+=mkYM
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-5.3.0-RC1-rev1695567/lucene/maven/org/apache/lucene/lucene-sandbox/5.3.0/lucene-sandbox-5.3.0.jar.md5
==============================================================================
--- dev/lucene/lucene-solr-5.3.0-RC1-rev1695567/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-RC1-rev1695567/lucene/maven/org/apache/lucene/lucene-sandbox/5.3.0/lucene-sandbox-5.3.0.jar.md5 Wed Aug 12 19:03:44 2015
@@ -0,0 +1 @@
+072104fc824062edb68c8a2bf204d42e
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.3.0-RC1-rev1695567/lucene/maven/org/apache/lucene/lucene-sandbox/5.3.0/lucene-sandbox-5.3.0.jar.sha1
==============================================================================
--- dev/lucene/lucene-solr-5.3.0-RC1-rev1695567/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-RC1-rev1695567/lucene/maven/org/apache/lucene/lucene-sandbox/5.3.0/lucene-sandbox-5.3.0.jar.sha1 Wed Aug 12 19:03:44 2015
@@ -0,0 +1 @@
+e9af8e10d07e17854962eb00f5bb9366ae6c0ce7
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.3.0-RC1-rev1695567/lucene/maven/org/apache/lucene/lucene-sandbox/5.3.0/lucene-sandbox-5.3.0.pom
==============================================================================
--- dev/lucene/lucene-solr-5.3.0-RC1-rev1695567/lucene/maven/org/apache/lucene/lucene-sandbox/5.3.0/lucene-sandbox-5.3.0.pom (added)
+++ dev/lucene/lucene-solr-5.3.0-RC1-rev1695567/lucene/maven/org/apache/lucene/lucene-sandbox/5.3.0/lucene-sandbox-5.3.0.pom Wed Aug 12 19:03:44 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-RC1-rev1695567/lucene/maven/org/apache/lucene/lucene-sandbox/5.3.0/lucene-sandbox-5.3.0.pom.asc
==============================================================================
--- dev/lucene/lucene-solr-5.3.0-RC1-rev1695567/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-RC1-rev1695567/lucene/maven/org/apache/lucene/lucene-sandbox/5.3.0/lucene-sandbox-5.3.0.pom.asc Wed Aug 12 19:03:44 2015
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Comment: GPGTools - https://gpgtools.org
+
+iQIcBAABCgAGBQJVy4OAAAoJEMOP9ew/z9s+HQAP/3v3xBj7uVs+qAq7l9hBWh15
+KizYEuQNa6orAPyfJk32H5O7k02tJuaYA9vxqk0JuwjyB8/uKOVxEb8g1Qnh9HdS
+0MIfBxDxbv5BghMVliRTA3A+n13ESV8UAWPlqDkU87H8I1oeBuUp+txfV9DeKobU
+wbiPhB+8ClNUnamnRIx8/f/VjiA/XhaYIb4R5APIZsYXtxo6WwTFy0TwXhCV9hws
+vlRRuRcknS3tpBTYNuaHVkVBtXYIHgk9HFAS/c7PmaQdFhkosVqf12/is7ooWSkQ
+jvm/KjbanargyHN67/664t1eTlOMez6pvdGmS9a1Qc0aH0oykehb73XvXX3Wy3wj
+oKItvurUNKabg5q8Ht6RMJu4Ie+hxsv2NzuCA5wmZ7S5O14oPd6WdkTjtXhbaXb/
+aGkXMAP/VqtqAmrY1ob7tIMpanOhSx48IMsZqCUq+RfigRRvuXYkHhDskzZqff7E
+zxs8rvOK9HPBPQq4Li/KRAABp22K3iLOgBiV5vjGv9ywhK7BoQA2Z31o11PdWvlM
+RS3lvM39GFzNJB4wZl6y0iZjG24SmBsYljR6gq5iXHfugxTpIG9ltMipLkLQDfYV
+SGSn1BcgxyDRTFAmb29bQCq/dcCDVYnlO+vsrMkr1L6hxz7roueYw94NYXyPyCzW
+mSc/89LHSfL3+R5C9VE4
+=ATFx
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-5.3.0-RC1-rev1695567/lucene/maven/org/apache/lucene/lucene-sandbox/5.3.0/lucene-sandbox-5.3.0.pom.md5
==============================================================================
--- dev/lucene/lucene-solr-5.3.0-RC1-rev1695567/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-RC1-rev1695567/lucene/maven/org/apache/lucene/lucene-sandbox/5.3.0/lucene-sandbox-5.3.0.pom.md5 Wed Aug 12 19:03:44 2015
@@ -0,0 +1 @@
+110a18d1500e6ec4606fc91e5ea806c3
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.3.0-RC1-rev1695567/lucene/maven/org/apache/lucene/lucene-sandbox/5.3.0/lucene-sandbox-5.3.0.pom.sha1
==============================================================================
--- dev/lucene/lucene-solr-5.3.0-RC1-rev1695567/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-RC1-rev1695567/lucene/maven/org/apache/lucene/lucene-sandbox/5.3.0/lucene-sandbox-5.3.0.pom.sha1 Wed Aug 12 19:03:44 2015
@@ -0,0 +1 @@
+1523edc7b11e142581bea6e88f4d26c831573902
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.3.0-RC1-rev1695567/lucene/maven/org/apache/lucene/lucene-sandbox/maven-metadata.xml
==============================================================================
--- dev/lucene/lucene-solr-5.3.0-RC1-rev1695567/lucene/maven/org/apache/lucene/lucene-sandbox/maven-metadata.xml (added)
+++ dev/lucene/lucene-solr-5.3.0-RC1-rev1695567/lucene/maven/org/apache/lucene/lucene-sandbox/maven-metadata.xml Wed Aug 12 19:03:44 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>20150812173251</lastUpdated>
+  </versioning>
+</metadata>

Added: dev/lucene/lucene-solr-5.3.0-RC1-rev1695567/lucene/maven/org/apache/lucene/lucene-sandbox/maven-metadata.xml.md5
==============================================================================
--- dev/lucene/lucene-solr-5.3.0-RC1-rev1695567/lucene/maven/org/apache/lucene/lucene-sandbox/maven-metadata.xml.md5 (added)
+++ dev/lucene/lucene-solr-5.3.0-RC1-rev1695567/lucene/maven/org/apache/lucene/lucene-sandbox/maven-metadata.xml.md5 Wed Aug 12 19:03:44 2015
@@ -0,0 +1 @@
+526429f0eb7a8842fb3d98a0c577347c
\ No newline at end of file

Added: dev/lucene/lucene-solr-5.3.0-RC1-rev1695567/lucene/maven/org/apache/lucene/lucene-sandbox/maven-metadata.xml.sha1
==============================================================================
--- dev/lucene/lucene-solr-5.3.0-RC1-rev1695567/lucene/maven/org/apache/lucene/lucene-sandbox/maven-metadata.xml.sha1 (added)
+++ dev/lucene/lucene-solr-5.3.0-RC1-rev1695567/lucene/maven/org/apache/lucene/lucene-sandbox/maven-metadata.xml.sha1 Wed Aug 12 19:03:44 2015
@@ -0,0 +1 @@
+4e463a6c3cbe2c76dc551fc716fee2abe96aca14
\ No newline at end of file