You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by jp...@apache.org on 2016/06/13 09:06:13 UTC

svn commit: r13973 [18/22] - in /dev/lucene/lucene-solr-6.1.0-RC1-rev4726c5b2d2efa9ba160b608d46a977d0a6b83f94: ./ lucene/ lucene/changes/ lucene/maven/ lucene/maven/org/ lucene/maven/org/apache/ lucene/maven/org/apache/lucene/ lucene/maven/org/apache/l...

Added: dev/lucene/lucene-solr-6.1.0-RC1-rev4726c5b2d2efa9ba160b608d46a977d0a6b83f94/solr/maven/org/apache/solr/solr-cell/6.1.0/solr-cell-6.1.0.pom
==============================================================================
--- dev/lucene/lucene-solr-6.1.0-RC1-rev4726c5b2d2efa9ba160b608d46a977d0a6b83f94/solr/maven/org/apache/solr/solr-cell/6.1.0/solr-cell-6.1.0.pom (added)
+++ dev/lucene/lucene-solr-6.1.0-RC1-rev4726c5b2d2efa9ba160b608d46a977d0a6b83f94/solr/maven/org/apache/solr/solr-cell/6.1.0/solr-cell-6.1.0.pom Mon Jun 13 09:06:06 2016
@@ -0,0 +1,517 @@
+<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>6.1.0</version>
+    <relativePath>../../pom.xml</relativePath>
+  </parent>
+  <groupId>org.apache.solr</groupId>
+  <artifactId>solr-cell</artifactId>
+  <packaging>jar</packaging>
+  <name>Apache Solr Content Extraction Library</name>
+  <description>
+    Apache Solr Content Extraction Library integrates Apache Tika 
+    content extraction framework into Solr
+  </description>
+  <properties>
+    <module-directory>solr/contrib/extraction</module-directory>
+    <relative-top-level>../../../..</relative-top-level>
+    <module-path>${relative-top-level}/${module-directory}</module-path>
+  </properties>
+  <scm>
+    <connection>scm:git:${vc-anonymous-base-url}</connection>
+    <developerConnection>scm:git:${vc-dev-base-url}</developerConnection>
+    <url>${vc-browse-base-url};f=${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-backward-codecs</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.lucene</groupId>
+      <artifactId>lucene-classification</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-extras</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.adobe.xmp</groupId>
+      <artifactId>xmpcore</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.carrotsearch</groupId>
+      <artifactId>hppc</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.drewnoakes</groupId>
+      <artifactId>metadata-extractor</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.facebook.presto</groupId>
+      <artifactId>presto-parser</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.github.ben-manes.caffeine</groupId>
+      <artifactId>caffeine</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.juniversalchardet</groupId>
+      <artifactId>juniversalchardet</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.googlecode.mp4parser</groupId>
+      <artifactId>isoparser</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.ibm.icu</groupId>
+      <artifactId>icu4j</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.pff</groupId>
+      <artifactId>java-libpst</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>de.l3s.boilerpipe</groupId>
+      <artifactId>boilerpipe</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>dom4j</groupId>
+      <artifactId>dom4j</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>io.airlift</groupId>
+      <artifactId>slice</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>javax.servlet</groupId>
+      <artifactId>javax.servlet-api</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>jdom</groupId>
+      <artifactId>jdom</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>joda-time</groupId>
+      <artifactId>joda-time</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>log4j</groupId>
+      <artifactId>log4j</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>net.sourceforge.jmatio</groupId>
+      <artifactId>jmatio</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.antlr</groupId>
+      <artifactId>antlr4-runtime</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.commons</groupId>
+      <artifactId>commons-compress</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.james</groupId>
+      <artifactId>apache-mime4j-core</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.james</groupId>
+      <artifactId>apache-mime4j-dom</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.pdfbox</groupId>
+      <artifactId>fontbox</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.pdfbox</groupId>
+      <artifactId>jempbox</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.pdfbox</groupId>
+      <artifactId>pdfbox</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.poi</groupId>
+      <artifactId>poi</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.poi</groupId>
+      <artifactId>poi-ooxml</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.poi</groupId>
+      <artifactId>poi-ooxml-schemas</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.poi</groupId>
+      <artifactId>poi-scratchpad</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.tika</groupId>
+      <artifactId>tika-core</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.tika</groupId>
+      <artifactId>tika-java7</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.tika</groupId>
+      <artifactId>tika-parsers</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.tika</groupId>
+      <artifactId>tika-xmp</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.xmlbeans</groupId>
+      <artifactId>xmlbeans</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.zookeeper</groupId>
+      <artifactId>zookeeper</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.aspectj</groupId>
+      <artifactId>aspectjrt</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.bouncycastle</groupId>
+      <artifactId>bcmail-jdk15</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.bouncycastle</groupId>
+      <artifactId>bcprov-jdk15</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.ccil.cowan.tagsoup</groupId>
+      <artifactId>tagsoup</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.gagravarr</groupId>
+      <artifactId>vorbis-java-core</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.gagravarr</groupId>
+      <artifactId>vorbis-java-tika</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.htrace</groupId>
+      <artifactId>htrace-core</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.locationtech.spatial4j</groupId>
+      <artifactId>spatial4j</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>
+    </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.tukaani</groupId>
+      <artifactId>xz</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>rome</groupId>
+      <artifactId>rome</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>xerces</groupId>
+      <artifactId>xercesImpl</artifactId>
+    </dependency>
+
+
+  </dependencies>
+  <build>
+    <sourceDirectory>${module-path}/src/java</sourceDirectory>
+    <testSourceDirectory>${module-path}/src/test</testSourceDirectory>
+    <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>

Propchange: dev/lucene/lucene-solr-6.1.0-RC1-rev4726c5b2d2efa9ba160b608d46a977d0a6b83f94/solr/maven/org/apache/solr/solr-cell/6.1.0/solr-cell-6.1.0.pom
------------------------------------------------------------------------------
    svn:eol-style = native

Added: dev/lucene/lucene-solr-6.1.0-RC1-rev4726c5b2d2efa9ba160b608d46a977d0a6b83f94/solr/maven/org/apache/solr/solr-cell/6.1.0/solr-cell-6.1.0.pom.asc
==============================================================================
--- dev/lucene/lucene-solr-6.1.0-RC1-rev4726c5b2d2efa9ba160b608d46a977d0a6b83f94/solr/maven/org/apache/solr/solr-cell/6.1.0/solr-cell-6.1.0.pom.asc (added)
+++ dev/lucene/lucene-solr-6.1.0-RC1-rev4726c5b2d2efa9ba160b608d46a977d0a6b83f94/solr/maven/org/apache/solr/solr-cell/6.1.0/solr-cell-6.1.0.pom.asc Mon Jun 13 09:06:06 2016
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v1
+
+iQIcBAABAgAGBQJXXmWLAAoJEAUaD692vGUHS74QAL0QLwvEBDkIiOgD9ISpQG2M
+laEMgJJ9DsV1miAW8EZiCuOwXgDJHiPH7eQX/E7hMjPPTLUIsX/j7t6Di8j9p2l/
+gYF17ySocDbv00CCBVCYgywd4Ssq6Te/LuYQ92ZKQYSr/i3xcpT5/Rf5tPx6/8nd
+lntj2xT7/AUIZBhWcuT2vwBMZr3sZWKm67E+9n/iOyTprzna441730xFTlA3wELm
+ZtNj0HTD1fD8wRDZKUS5XVc1Cv4rdOcKd3TI7AwRLD87E9tsq2Ypwf862H1x+XRB
+vqRLc9MD+6F3ke3DITwIitccS9+BB34aFxjy8Ah0CqHCAbKzlukIUX6YPYG30kfF
+W9TKR5U8/AkPnOOOKpp1aXTw7IZKeXd3wx8u+NHNPezfRU1QnvqFDkaYB5RnSSJ8
+8hrbBi6baDdqLCjSa+tIy0llMCUpv0qTzDYJsG5jvLaK3K6R1PBdT7B30g72V/Vn
+zlzT++3aeQVE8ACIkaoxCCSGq8fE2ud7vhqCCMFLxmvC4F05jfLnwvgzfnDJE2D7
+eWAjHvsQtyTFvGhSJ+cvNxg9q5upWlkZR8vEGSxjorOPeeOZSdX3sSpdQDkkmFcc
+xwvH4K138PDRIL+WwMlJ8tM4BPrT7FqThu3kDfCIEWm+NjSeIO88lsmHtDWCrQ79
+sXTLM46SL8uVvixxE3vr
+=8+qk
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-6.1.0-RC1-rev4726c5b2d2efa9ba160b608d46a977d0a6b83f94/solr/maven/org/apache/solr/solr-cell/6.1.0/solr-cell-6.1.0.pom.md5
==============================================================================
--- dev/lucene/lucene-solr-6.1.0-RC1-rev4726c5b2d2efa9ba160b608d46a977d0a6b83f94/solr/maven/org/apache/solr/solr-cell/6.1.0/solr-cell-6.1.0.pom.md5 (added)
+++ dev/lucene/lucene-solr-6.1.0-RC1-rev4726c5b2d2efa9ba160b608d46a977d0a6b83f94/solr/maven/org/apache/solr/solr-cell/6.1.0/solr-cell-6.1.0.pom.md5 Mon Jun 13 09:06:06 2016
@@ -0,0 +1 @@
+75a916391dac4ba696c3e43d5e3a1314
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.1.0-RC1-rev4726c5b2d2efa9ba160b608d46a977d0a6b83f94/solr/maven/org/apache/solr/solr-cell/6.1.0/solr-cell-6.1.0.pom.sha1
==============================================================================
--- dev/lucene/lucene-solr-6.1.0-RC1-rev4726c5b2d2efa9ba160b608d46a977d0a6b83f94/solr/maven/org/apache/solr/solr-cell/6.1.0/solr-cell-6.1.0.pom.sha1 (added)
+++ dev/lucene/lucene-solr-6.1.0-RC1-rev4726c5b2d2efa9ba160b608d46a977d0a6b83f94/solr/maven/org/apache/solr/solr-cell/6.1.0/solr-cell-6.1.0.pom.sha1 Mon Jun 13 09:06:06 2016
@@ -0,0 +1 @@
+8177e541da6e441c32ad72d4159de365ef3870b6
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.1.0-RC1-rev4726c5b2d2efa9ba160b608d46a977d0a6b83f94/solr/maven/org/apache/solr/solr-cell/maven-metadata.xml
==============================================================================
--- dev/lucene/lucene-solr-6.1.0-RC1-rev4726c5b2d2efa9ba160b608d46a977d0a6b83f94/solr/maven/org/apache/solr/solr-cell/maven-metadata.xml (added)
+++ dev/lucene/lucene-solr-6.1.0-RC1-rev4726c5b2d2efa9ba160b608d46a977d0a6b83f94/solr/maven/org/apache/solr/solr-cell/maven-metadata.xml Mon Jun 13 09:06:06 2016
@@ -0,0 +1,12 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<metadata>
+  <groupId>org.apache.solr</groupId>
+  <artifactId>solr-cell</artifactId>
+  <version>6.1.0</version>
+  <versioning>
+    <versions>
+      <version>6.1.0</version>
+    </versions>
+    <lastUpdated>20160613074905</lastUpdated>
+  </versioning>
+</metadata>

Propchange: dev/lucene/lucene-solr-6.1.0-RC1-rev4726c5b2d2efa9ba160b608d46a977d0a6b83f94/solr/maven/org/apache/solr/solr-cell/maven-metadata.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Added: dev/lucene/lucene-solr-6.1.0-RC1-rev4726c5b2d2efa9ba160b608d46a977d0a6b83f94/solr/maven/org/apache/solr/solr-cell/maven-metadata.xml.md5
==============================================================================
--- dev/lucene/lucene-solr-6.1.0-RC1-rev4726c5b2d2efa9ba160b608d46a977d0a6b83f94/solr/maven/org/apache/solr/solr-cell/maven-metadata.xml.md5 (added)
+++ dev/lucene/lucene-solr-6.1.0-RC1-rev4726c5b2d2efa9ba160b608d46a977d0a6b83f94/solr/maven/org/apache/solr/solr-cell/maven-metadata.xml.md5 Mon Jun 13 09:06:06 2016
@@ -0,0 +1 @@
+b2e39f97815c650b62d89f42dbd5d19e
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.1.0-RC1-rev4726c5b2d2efa9ba160b608d46a977d0a6b83f94/solr/maven/org/apache/solr/solr-cell/maven-metadata.xml.sha1
==============================================================================
--- dev/lucene/lucene-solr-6.1.0-RC1-rev4726c5b2d2efa9ba160b608d46a977d0a6b83f94/solr/maven/org/apache/solr/solr-cell/maven-metadata.xml.sha1 (added)
+++ dev/lucene/lucene-solr-6.1.0-RC1-rev4726c5b2d2efa9ba160b608d46a977d0a6b83f94/solr/maven/org/apache/solr/solr-cell/maven-metadata.xml.sha1 Mon Jun 13 09:06:06 2016
@@ -0,0 +1 @@
+da6881dc2b8b07d56307eac3e91b63cf7c257ec3
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.1.0-RC1-rev4726c5b2d2efa9ba160b608d46a977d0a6b83f94/solr/maven/org/apache/solr/solr-clustering/6.1.0/solr-clustering-6.1.0-javadoc.jar
==============================================================================
Binary file - no diff available.

Propchange: dev/lucene/lucene-solr-6.1.0-RC1-rev4726c5b2d2efa9ba160b608d46a977d0a6b83f94/solr/maven/org/apache/solr/solr-clustering/6.1.0/solr-clustering-6.1.0-javadoc.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: dev/lucene/lucene-solr-6.1.0-RC1-rev4726c5b2d2efa9ba160b608d46a977d0a6b83f94/solr/maven/org/apache/solr/solr-clustering/6.1.0/solr-clustering-6.1.0-javadoc.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-6.1.0-RC1-rev4726c5b2d2efa9ba160b608d46a977d0a6b83f94/solr/maven/org/apache/solr/solr-clustering/6.1.0/solr-clustering-6.1.0-javadoc.jar.asc (added)
+++ dev/lucene/lucene-solr-6.1.0-RC1-rev4726c5b2d2efa9ba160b608d46a977d0a6b83f94/solr/maven/org/apache/solr/solr-clustering/6.1.0/solr-clustering-6.1.0-javadoc.jar.asc Mon Jun 13 09:06:06 2016
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v1
+
+iQIcBAABAgAGBQJXXmWLAAoJEAUaD692vGUHNDIP/iAWE56olrIOW9/sFkeSp65s
+TVDLa7oHI6KFy3/Argso19/btq832iYr4bAb1TgdutNpIf+uQdLpWTJDScOUG9ZI
++a52RaTb8gn/QhTv40uyT2WwULBc6hXeaKBUiTx9+txrv1oZURyDthO6JmaBPn5L
+EG2ZkbLz58C3LuDvSvtlhDf3vzlO1wWvDQ1E4g+38Hf2cgF0n+Wtvq+bfVU3B162
+VOYQS4pTcjbdZ8I3rOsmPRqL7Y6YnWaH8xYB7vl7bx201pLEZlbZMB5sMSAOK4GC
+KZMBA0QltvyHfqKdTVMBqg7ktOf75NpxKtTXvfY34cP3UtRb6O/XVcJB/pyaSmaQ
+qZYnXgFiJrz063+Fa84wfSrKCWhFI35n3wmcKTw+gbJw7Fp1lXhjnUMZzJh5yuWh
+vNorplSU+5zXT4Tn9v42GEWOoOfHWVXR1AESA4UGcQZ86YNMesOj+3R2va1KLToB
+cJpWWiIyZOqrY9m1oXVfPoqfywcoj493uywdTbM7qYI1Z7xV3+hRyOjmertkCBBY
+V3bmwvrMXpqyQMhLVcZ0bzuAfBn61bmMM/YQGjxta5GbTkZn9dvtAXowRV4JAKdp
+SaIUPODf87jl76bVPekivadjYxWgfvwV+Y3WR8DLOkBySSPMgGnpCyourubNTP+C
+pOyOfCbJceCZEaq9V85X
+=tdbp
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-6.1.0-RC1-rev4726c5b2d2efa9ba160b608d46a977d0a6b83f94/solr/maven/org/apache/solr/solr-clustering/6.1.0/solr-clustering-6.1.0-javadoc.jar.md5
==============================================================================
--- dev/lucene/lucene-solr-6.1.0-RC1-rev4726c5b2d2efa9ba160b608d46a977d0a6b83f94/solr/maven/org/apache/solr/solr-clustering/6.1.0/solr-clustering-6.1.0-javadoc.jar.md5 (added)
+++ dev/lucene/lucene-solr-6.1.0-RC1-rev4726c5b2d2efa9ba160b608d46a977d0a6b83f94/solr/maven/org/apache/solr/solr-clustering/6.1.0/solr-clustering-6.1.0-javadoc.jar.md5 Mon Jun 13 09:06:06 2016
@@ -0,0 +1 @@
+917cf447eaa86179fa8391aa1de5814d
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.1.0-RC1-rev4726c5b2d2efa9ba160b608d46a977d0a6b83f94/solr/maven/org/apache/solr/solr-clustering/6.1.0/solr-clustering-6.1.0-javadoc.jar.sha1
==============================================================================
--- dev/lucene/lucene-solr-6.1.0-RC1-rev4726c5b2d2efa9ba160b608d46a977d0a6b83f94/solr/maven/org/apache/solr/solr-clustering/6.1.0/solr-clustering-6.1.0-javadoc.jar.sha1 (added)
+++ dev/lucene/lucene-solr-6.1.0-RC1-rev4726c5b2d2efa9ba160b608d46a977d0a6b83f94/solr/maven/org/apache/solr/solr-clustering/6.1.0/solr-clustering-6.1.0-javadoc.jar.sha1 Mon Jun 13 09:06:06 2016
@@ -0,0 +1 @@
+842b69b60a03df119fe622cedade9b16e3246447
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.1.0-RC1-rev4726c5b2d2efa9ba160b608d46a977d0a6b83f94/solr/maven/org/apache/solr/solr-clustering/6.1.0/solr-clustering-6.1.0-sources.jar
==============================================================================
Binary file - no diff available.

Propchange: dev/lucene/lucene-solr-6.1.0-RC1-rev4726c5b2d2efa9ba160b608d46a977d0a6b83f94/solr/maven/org/apache/solr/solr-clustering/6.1.0/solr-clustering-6.1.0-sources.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: dev/lucene/lucene-solr-6.1.0-RC1-rev4726c5b2d2efa9ba160b608d46a977d0a6b83f94/solr/maven/org/apache/solr/solr-clustering/6.1.0/solr-clustering-6.1.0-sources.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-6.1.0-RC1-rev4726c5b2d2efa9ba160b608d46a977d0a6b83f94/solr/maven/org/apache/solr/solr-clustering/6.1.0/solr-clustering-6.1.0-sources.jar.asc (added)
+++ dev/lucene/lucene-solr-6.1.0-RC1-rev4726c5b2d2efa9ba160b608d46a977d0a6b83f94/solr/maven/org/apache/solr/solr-clustering/6.1.0/solr-clustering-6.1.0-sources.jar.asc Mon Jun 13 09:06:06 2016
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v1
+
+iQIcBAABAgAGBQJXXmWMAAoJEAUaD692vGUHzrUP/33L0acDiuClxdBRbBoBpp/w
+JzaoYXWHr1e3adjPPPeO4O3jDPGKK5GuXWCRUGKF6k97Fk90lgAIegaCv7lzP87Q
+5X8EcJwcblWoKgR2hwvd9XcwVWArVZELcyCumk3Gz1vTHoYh90KDE9VxFEL3bTpC
+au8MZ2owTaS2qhG/wpmOvKapm1wxA9C2Ee2ymcPsBQAPrGNqb5d6d6PWGF6pshcq
+8dBtIcr5bYE3w3eGKcYYH62poiTHa7rJz194EljoV6tXzM8GHpzVfEhVF41Po4By
+mEgDDKSXefzFMEOwQYg9HY2FRbHxFbyhKH+dpooeLQ9HmHTBBNho4Bc4AxY++kph
+fiB5mh95q6S9msKX35rDbQNusQ3sVO+F7jlz9ueNnLdDJ1BQ+Wkhx0p/iQD26uG5
+u+S6ywbIhCVqdXe94oFHmrvkxvNG7h/dwWjYPrT0tKAm/aleVNA7+Q58MTePgEGY
+3u4si2Qs4nFT93lwCCR1AoIvMmpTq/tPCDgYaa3m+O6bHSbfkwFxcjBmy3fuBhUw
+rgypTMRT9FsPWHKWLzS2s9gkvqHck9l+AYzuAiCqEWLV//NrHaWann99RxNMes5B
++Q/S/wZxRhXs4s8Zkt2On6EwmMUPEdbVXPalsnrk0I5hR/OWtJaPYQw/5bzbM6aS
+PcxX5oNwTUJTyjofr857
+=l5/S
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-6.1.0-RC1-rev4726c5b2d2efa9ba160b608d46a977d0a6b83f94/solr/maven/org/apache/solr/solr-clustering/6.1.0/solr-clustering-6.1.0-sources.jar.md5
==============================================================================
--- dev/lucene/lucene-solr-6.1.0-RC1-rev4726c5b2d2efa9ba160b608d46a977d0a6b83f94/solr/maven/org/apache/solr/solr-clustering/6.1.0/solr-clustering-6.1.0-sources.jar.md5 (added)
+++ dev/lucene/lucene-solr-6.1.0-RC1-rev4726c5b2d2efa9ba160b608d46a977d0a6b83f94/solr/maven/org/apache/solr/solr-clustering/6.1.0/solr-clustering-6.1.0-sources.jar.md5 Mon Jun 13 09:06:06 2016
@@ -0,0 +1 @@
+ff6721421f79734badd792d5232d5cde
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.1.0-RC1-rev4726c5b2d2efa9ba160b608d46a977d0a6b83f94/solr/maven/org/apache/solr/solr-clustering/6.1.0/solr-clustering-6.1.0-sources.jar.sha1
==============================================================================
--- dev/lucene/lucene-solr-6.1.0-RC1-rev4726c5b2d2efa9ba160b608d46a977d0a6b83f94/solr/maven/org/apache/solr/solr-clustering/6.1.0/solr-clustering-6.1.0-sources.jar.sha1 (added)
+++ dev/lucene/lucene-solr-6.1.0-RC1-rev4726c5b2d2efa9ba160b608d46a977d0a6b83f94/solr/maven/org/apache/solr/solr-clustering/6.1.0/solr-clustering-6.1.0-sources.jar.sha1 Mon Jun 13 09:06:06 2016
@@ -0,0 +1 @@
+507d760be3ce9af1128f6cae3c761ab7c23fa773
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.1.0-RC1-rev4726c5b2d2efa9ba160b608d46a977d0a6b83f94/solr/maven/org/apache/solr/solr-clustering/6.1.0/solr-clustering-6.1.0.jar
==============================================================================
Binary file - no diff available.

Propchange: dev/lucene/lucene-solr-6.1.0-RC1-rev4726c5b2d2efa9ba160b608d46a977d0a6b83f94/solr/maven/org/apache/solr/solr-clustering/6.1.0/solr-clustering-6.1.0.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: dev/lucene/lucene-solr-6.1.0-RC1-rev4726c5b2d2efa9ba160b608d46a977d0a6b83f94/solr/maven/org/apache/solr/solr-clustering/6.1.0/solr-clustering-6.1.0.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-6.1.0-RC1-rev4726c5b2d2efa9ba160b608d46a977d0a6b83f94/solr/maven/org/apache/solr/solr-clustering/6.1.0/solr-clustering-6.1.0.jar.asc (added)
+++ dev/lucene/lucene-solr-6.1.0-RC1-rev4726c5b2d2efa9ba160b608d46a977d0a6b83f94/solr/maven/org/apache/solr/solr-clustering/6.1.0/solr-clustering-6.1.0.jar.asc Mon Jun 13 09:06:06 2016
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v1
+
+iQIcBAABAgAGBQJXXmWMAAoJEAUaD692vGUHdCwQALsU8B15DPBpFIc8+Pd6D8mq
+DmQU+r/4ta1noW+eu9aBPrDLmZpUenNN9JCbsbatlDhaiLcmMXpdnY6oYYMisA25
+ocMgN8CmxoXEvP0Vvo5DkDijII87VhYpQF35PG0bNnX2GdNuvDwwsHTbwo3kXYrR
+OFf73ABCt8w/a2SFo77/EibicyEaseYaQ/p/pCKwjG7KNoolBi9WYm5ZSqcbnCO/
+yAl0NMYvD3BGHSXGPFG19cYTZLvcTzIxgX2sPl20qIzE5HgdisjQ9BVOMi/2OLAy
+61plNDnbSc+Dz+xdPY5Zalih8zj3D0xjy7Mh6uDy1zB/hF5+BD/iFBol9ZfJyXtY
+PemIPXHmVHRstnMr4YwX8QwJHf+H5WsfDB0FLG895k3VaRUlJ1ofOvbsWQ2GRnbd
+h/9UeKoQlYDkqTL4RbP5btnmzpafg95MRanDYTbXRnRkwZhFMJ8T3iJGu2kRAwiF
+nwkJJ3g2uUxW+IFPtmNQNE+1YEti4qLTuhsVfxAq0qIuaZWHH5kCRmf8x56YyB5E
+3p/TyHBceK+atoko60E5BnxEcVyfCYG2Vz1E0n/E/pHwoHKco1Y0DU5fKeOvex8w
+Fz8YE8Adyl/OVDi2ng/AvvkMEd0NuqjwrC0hWEODWOZeYko/K9xAz7vKWFIhF+xw
+zFNZ2/6voKji1DVJyYGh
+=LQ7a
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-6.1.0-RC1-rev4726c5b2d2efa9ba160b608d46a977d0a6b83f94/solr/maven/org/apache/solr/solr-clustering/6.1.0/solr-clustering-6.1.0.jar.md5
==============================================================================
--- dev/lucene/lucene-solr-6.1.0-RC1-rev4726c5b2d2efa9ba160b608d46a977d0a6b83f94/solr/maven/org/apache/solr/solr-clustering/6.1.0/solr-clustering-6.1.0.jar.md5 (added)
+++ dev/lucene/lucene-solr-6.1.0-RC1-rev4726c5b2d2efa9ba160b608d46a977d0a6b83f94/solr/maven/org/apache/solr/solr-clustering/6.1.0/solr-clustering-6.1.0.jar.md5 Mon Jun 13 09:06:06 2016
@@ -0,0 +1 @@
+0e9e60e5f68d18028a4b4aceeddee5ce
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.1.0-RC1-rev4726c5b2d2efa9ba160b608d46a977d0a6b83f94/solr/maven/org/apache/solr/solr-clustering/6.1.0/solr-clustering-6.1.0.jar.sha1
==============================================================================
--- dev/lucene/lucene-solr-6.1.0-RC1-rev4726c5b2d2efa9ba160b608d46a977d0a6b83f94/solr/maven/org/apache/solr/solr-clustering/6.1.0/solr-clustering-6.1.0.jar.sha1 (added)
+++ dev/lucene/lucene-solr-6.1.0-RC1-rev4726c5b2d2efa9ba160b608d46a977d0a6b83f94/solr/maven/org/apache/solr/solr-clustering/6.1.0/solr-clustering-6.1.0.jar.sha1 Mon Jun 13 09:06:06 2016
@@ -0,0 +1 @@
+dbc393d9c327f3e3b27e4b058f163be44bf997de
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.1.0-RC1-rev4726c5b2d2efa9ba160b608d46a977d0a6b83f94/solr/maven/org/apache/solr/solr-clustering/6.1.0/solr-clustering-6.1.0.pom
==============================================================================
--- dev/lucene/lucene-solr-6.1.0-RC1-rev4726c5b2d2efa9ba160b608d46a977d0a6b83f94/solr/maven/org/apache/solr/solr-clustering/6.1.0/solr-clustering-6.1.0.pom (added)
+++ dev/lucene/lucene-solr-6.1.0-RC1-rev4726c5b2d2efa9ba160b608d46a977d0a6b83f94/solr/maven/org/apache/solr/solr-clustering/6.1.0/solr-clustering-6.1.0.pom Mon Jun 13 09:06:06 2016
@@ -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>6.1.0</version>
+    <relativePath>../../pom.xml</relativePath>
+  </parent>
+  <groupId>org.apache.solr</groupId>
+  <artifactId>solr-clustering</artifactId>
+  <packaging>jar</packaging>
+  <name>Apache Solr Clustering</name>
+  <description>Apache Solr Clustering</description>
+  <properties>
+    <module-directory>solr/contrib/clustering</module-directory>
+    <relative-top-level>../../../..</relative-top-level>
+    <module-path>${relative-top-level}/${module-directory}</module-path>
+  </properties>
+  <scm>
+    <connection>scm:git:${vc-anonymous-base-url}</connection>
+    <developerConnection>scm:git:${vc-dev-base-url}</developerConnection>
+    <url>${vc-browse-base-url};f=${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-backward-codecs</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.lucene</groupId>
+      <artifactId>lucene-classification</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-extras</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.facebook.presto</groupId>
+      <artifactId>presto-parser</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.fasterxml.jackson.core</groupId>
+      <artifactId>jackson-annotations</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.fasterxml.jackson.core</groupId>
+      <artifactId>jackson-core</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.fasterxml.jackson.core</groupId>
+      <artifactId>jackson-databind</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.fasterxml.jackson.dataformat</groupId>
+      <artifactId>jackson-dataformat-smile</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.github.ben-manes.caffeine</groupId>
+      <artifactId>caffeine</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.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>io.airlift</groupId>
+      <artifactId>slice</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>antlr4-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.zookeeper</groupId>
+      <artifactId>zookeeper</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.carrot2</groupId>
+      <artifactId>carrot2-mini</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.carrot2.attributes</groupId>
+      <artifactId>attributes-binder</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.carrot2.shaded</groupId>
+      <artifactId>carrot2-guava</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.locationtech.spatial4j</groupId>
+      <artifactId>spatial4j</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.simpleframework</groupId>
+      <artifactId>simple-xml</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.slf4j</groupId>
+      <artifactId>jcl-over-slf4j</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>
+
+
+  </dependencies>
+  <build>
+    <sourceDirectory>${module-path}/src/java</sourceDirectory>
+    <testSourceDirectory>${module-path}/src/test</testSourceDirectory>
+    <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>

Propchange: dev/lucene/lucene-solr-6.1.0-RC1-rev4726c5b2d2efa9ba160b608d46a977d0a6b83f94/solr/maven/org/apache/solr/solr-clustering/6.1.0/solr-clustering-6.1.0.pom
------------------------------------------------------------------------------
    svn:eol-style = native

Added: dev/lucene/lucene-solr-6.1.0-RC1-rev4726c5b2d2efa9ba160b608d46a977d0a6b83f94/solr/maven/org/apache/solr/solr-clustering/6.1.0/solr-clustering-6.1.0.pom.asc
==============================================================================
--- dev/lucene/lucene-solr-6.1.0-RC1-rev4726c5b2d2efa9ba160b608d46a977d0a6b83f94/solr/maven/org/apache/solr/solr-clustering/6.1.0/solr-clustering-6.1.0.pom.asc (added)
+++ dev/lucene/lucene-solr-6.1.0-RC1-rev4726c5b2d2efa9ba160b608d46a977d0a6b83f94/solr/maven/org/apache/solr/solr-clustering/6.1.0/solr-clustering-6.1.0.pom.asc Mon Jun 13 09:06:06 2016
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v1
+
+iQIcBAABAgAGBQJXXmWNAAoJEAUaD692vGUHNDkP/jSffFgwbKtsBf7Z8j/ONxgn
+Hl94KNvs2gRtQNIrGEGhdheCGW4Sp1Rt/LJwYwv6G82hJMWh6ZGw4LWs+HWzig+2
+iCEQBUcwPaz1jLExbfq0mYLnrVjF0wTMaK43qhIW51g07A5fEyoRljmoJ9uXRlue
+xFZDpAMHuyOyb4R5fUdhSqsuPiNQsGcXrQdjL7+/oXf+2upQPRDG6SgX4zBl8LTo
+2KNCJ7Bcn6Ita1DGvPL4lVp3M2VNmxPZtQ6MNtMMU4hnARQBz9BDLrt7O/dnmuIJ
+PiaMOuzkY8Ugk8byFGtxYHiHiBkj2zzUIoCzvmv7Ze/Bq/BcyEdQxycGgDvrBSED
+iPTTfPpa/QbnWyTotRtG4e+ugx0OGmx+ky2GnjJfmu8WXwa9FLC7s/4wX/KZgh7X
+GEzcs0YMsU6pwEZsp2yLjPdhuaHehwpPOFRgv7BDIwigTubY97mw/hzHcey4YQ95
+NcutGOUI1ltuM+qae7XNNgywOz8NMAT7fXGiXVFsz3iVukkUGfD/V6JMZY5Dnnn1
+V9qczg4NB+QxTwtX75L1fvz6wsLRqgyMjzpePbSdxih+fytLDOwR1mumepIEBGzr
+C1Fa+k5/dwp2bdC6ErtRe/ms3lPu+j6mQlJMdQICdSeHvwGRl1E/5fftwQ3I3YjM
+2RP1EiJPJ2Xp6ImVOCXO
+=b4Sx
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-6.1.0-RC1-rev4726c5b2d2efa9ba160b608d46a977d0a6b83f94/solr/maven/org/apache/solr/solr-clustering/6.1.0/solr-clustering-6.1.0.pom.md5
==============================================================================
--- dev/lucene/lucene-solr-6.1.0-RC1-rev4726c5b2d2efa9ba160b608d46a977d0a6b83f94/solr/maven/org/apache/solr/solr-clustering/6.1.0/solr-clustering-6.1.0.pom.md5 (added)
+++ dev/lucene/lucene-solr-6.1.0-RC1-rev4726c5b2d2efa9ba160b608d46a977d0a6b83f94/solr/maven/org/apache/solr/solr-clustering/6.1.0/solr-clustering-6.1.0.pom.md5 Mon Jun 13 09:06:06 2016
@@ -0,0 +1 @@
+6d085df1c33ef75c44cb6064ade405a7
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.1.0-RC1-rev4726c5b2d2efa9ba160b608d46a977d0a6b83f94/solr/maven/org/apache/solr/solr-clustering/6.1.0/solr-clustering-6.1.0.pom.sha1
==============================================================================
--- dev/lucene/lucene-solr-6.1.0-RC1-rev4726c5b2d2efa9ba160b608d46a977d0a6b83f94/solr/maven/org/apache/solr/solr-clustering/6.1.0/solr-clustering-6.1.0.pom.sha1 (added)
+++ dev/lucene/lucene-solr-6.1.0-RC1-rev4726c5b2d2efa9ba160b608d46a977d0a6b83f94/solr/maven/org/apache/solr/solr-clustering/6.1.0/solr-clustering-6.1.0.pom.sha1 Mon Jun 13 09:06:06 2016
@@ -0,0 +1 @@
+c86cd027c22b67f96e6d5125ab3f5f8bff53f500
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.1.0-RC1-rev4726c5b2d2efa9ba160b608d46a977d0a6b83f94/solr/maven/org/apache/solr/solr-clustering/maven-metadata.xml
==============================================================================
--- dev/lucene/lucene-solr-6.1.0-RC1-rev4726c5b2d2efa9ba160b608d46a977d0a6b83f94/solr/maven/org/apache/solr/solr-clustering/maven-metadata.xml (added)
+++ dev/lucene/lucene-solr-6.1.0-RC1-rev4726c5b2d2efa9ba160b608d46a977d0a6b83f94/solr/maven/org/apache/solr/solr-clustering/maven-metadata.xml Mon Jun 13 09:06:06 2016
@@ -0,0 +1,12 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<metadata>
+  <groupId>org.apache.solr</groupId>
+  <artifactId>solr-clustering</artifactId>
+  <version>6.1.0</version>
+  <versioning>
+    <versions>
+      <version>6.1.0</version>
+    </versions>
+    <lastUpdated>20160613074858</lastUpdated>
+  </versioning>
+</metadata>

Propchange: dev/lucene/lucene-solr-6.1.0-RC1-rev4726c5b2d2efa9ba160b608d46a977d0a6b83f94/solr/maven/org/apache/solr/solr-clustering/maven-metadata.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Added: dev/lucene/lucene-solr-6.1.0-RC1-rev4726c5b2d2efa9ba160b608d46a977d0a6b83f94/solr/maven/org/apache/solr/solr-clustering/maven-metadata.xml.md5
==============================================================================
--- dev/lucene/lucene-solr-6.1.0-RC1-rev4726c5b2d2efa9ba160b608d46a977d0a6b83f94/solr/maven/org/apache/solr/solr-clustering/maven-metadata.xml.md5 (added)
+++ dev/lucene/lucene-solr-6.1.0-RC1-rev4726c5b2d2efa9ba160b608d46a977d0a6b83f94/solr/maven/org/apache/solr/solr-clustering/maven-metadata.xml.md5 Mon Jun 13 09:06:06 2016
@@ -0,0 +1 @@
+40365f77f184b9b3a152c2d715ded861
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.1.0-RC1-rev4726c5b2d2efa9ba160b608d46a977d0a6b83f94/solr/maven/org/apache/solr/solr-clustering/maven-metadata.xml.sha1
==============================================================================
--- dev/lucene/lucene-solr-6.1.0-RC1-rev4726c5b2d2efa9ba160b608d46a977d0a6b83f94/solr/maven/org/apache/solr/solr-clustering/maven-metadata.xml.sha1 (added)
+++ dev/lucene/lucene-solr-6.1.0-RC1-rev4726c5b2d2efa9ba160b608d46a977d0a6b83f94/solr/maven/org/apache/solr/solr-clustering/maven-metadata.xml.sha1 Mon Jun 13 09:06:06 2016
@@ -0,0 +1 @@
+68c0241bc476dc4412bda7416e26d53b7e2759b5
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.1.0-RC1-rev4726c5b2d2efa9ba160b608d46a977d0a6b83f94/solr/maven/org/apache/solr/solr-core/6.1.0/solr-core-6.1.0-javadoc.jar
==============================================================================
Binary file - no diff available.

Propchange: dev/lucene/lucene-solr-6.1.0-RC1-rev4726c5b2d2efa9ba160b608d46a977d0a6b83f94/solr/maven/org/apache/solr/solr-core/6.1.0/solr-core-6.1.0-javadoc.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: dev/lucene/lucene-solr-6.1.0-RC1-rev4726c5b2d2efa9ba160b608d46a977d0a6b83f94/solr/maven/org/apache/solr/solr-core/6.1.0/solr-core-6.1.0-javadoc.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-6.1.0-RC1-rev4726c5b2d2efa9ba160b608d46a977d0a6b83f94/solr/maven/org/apache/solr/solr-core/6.1.0/solr-core-6.1.0-javadoc.jar.asc (added)
+++ dev/lucene/lucene-solr-6.1.0-RC1-rev4726c5b2d2efa9ba160b608d46a977d0a6b83f94/solr/maven/org/apache/solr/solr-core/6.1.0/solr-core-6.1.0-javadoc.jar.asc Mon Jun 13 09:06:06 2016
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v1
+
+iQIcBAABAgAGBQJXXmWNAAoJEAUaD692vGUH+rcQAI6DofcgZpRs9WPTTNWtCxxD
+zqD2Xzxe+GY6vLU8XjMxZu1QU5maOTo7t+xTAHeNG4iHKSQQMA/AkO4KstGOnHtO
+kb7Pc7Iv+M/fNXKXmxd1X01JasRJVNocyl0p2yunZeZ1IFhPGLpLaYmYX2SPQpwk
+rmAgPkNqdkN9y3XkBEFkzZ9F5oX2SvwJgsew6qG9Rku7sVscU8SduNxTe47JDI2h
+fa7dLPPym004Hq0gWgD0DgigjrLM1dIBOF7rhNmwVW+ifzXtWUN5xJtRHkkY/rU+
+LxGGAQd/tOzrMrfq/d3cEMB03kuyioeaCYVuFMa6U60ewLJx3fshnQwsDNJVTxSB
+/9K0lw48BFeENudBJLqznDCguMY3V00+JQvPk0nPCoRJ3t5BQQ24p99oHVfjXWta
+d6SUwdQV7wL8me4WqT52ZYIiDkkFWDdAYwbuYcgDi/BkUQ05SQHkvVUCyxBbZcX+
+NOkmbMZZudFIztFU7zjCYbToiB0gcz0LkUNXEjzuHvgcxfx8p1SGsxsUUDzLzNKK
+mopexBUZzIY4aU7/qjLqMHez8MwwFerDpqbDxRfXcpi4mvxBGg/1eUsqX514UKj1
+EuRqziUBuVuLu3Q4bX7CODiQbyrj16Vp8djNorzGr6z7v7vAZoG1Il7dUwN/rPUj
++S9cJOsYTQx2o6RiFwof
+=c5F9
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-6.1.0-RC1-rev4726c5b2d2efa9ba160b608d46a977d0a6b83f94/solr/maven/org/apache/solr/solr-core/6.1.0/solr-core-6.1.0-javadoc.jar.md5
==============================================================================
--- dev/lucene/lucene-solr-6.1.0-RC1-rev4726c5b2d2efa9ba160b608d46a977d0a6b83f94/solr/maven/org/apache/solr/solr-core/6.1.0/solr-core-6.1.0-javadoc.jar.md5 (added)
+++ dev/lucene/lucene-solr-6.1.0-RC1-rev4726c5b2d2efa9ba160b608d46a977d0a6b83f94/solr/maven/org/apache/solr/solr-core/6.1.0/solr-core-6.1.0-javadoc.jar.md5 Mon Jun 13 09:06:06 2016
@@ -0,0 +1 @@
+666c5612310202d5dcfcbadc64f1a06d
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.1.0-RC1-rev4726c5b2d2efa9ba160b608d46a977d0a6b83f94/solr/maven/org/apache/solr/solr-core/6.1.0/solr-core-6.1.0-javadoc.jar.sha1
==============================================================================
--- dev/lucene/lucene-solr-6.1.0-RC1-rev4726c5b2d2efa9ba160b608d46a977d0a6b83f94/solr/maven/org/apache/solr/solr-core/6.1.0/solr-core-6.1.0-javadoc.jar.sha1 (added)
+++ dev/lucene/lucene-solr-6.1.0-RC1-rev4726c5b2d2efa9ba160b608d46a977d0a6b83f94/solr/maven/org/apache/solr/solr-core/6.1.0/solr-core-6.1.0-javadoc.jar.sha1 Mon Jun 13 09:06:06 2016
@@ -0,0 +1 @@
+a6bd9ec3bb08b1bf4e7af4ebd2d43e629e4de044
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.1.0-RC1-rev4726c5b2d2efa9ba160b608d46a977d0a6b83f94/solr/maven/org/apache/solr/solr-core/6.1.0/solr-core-6.1.0-sources.jar
==============================================================================
Binary file - no diff available.

Propchange: dev/lucene/lucene-solr-6.1.0-RC1-rev4726c5b2d2efa9ba160b608d46a977d0a6b83f94/solr/maven/org/apache/solr/solr-core/6.1.0/solr-core-6.1.0-sources.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: dev/lucene/lucene-solr-6.1.0-RC1-rev4726c5b2d2efa9ba160b608d46a977d0a6b83f94/solr/maven/org/apache/solr/solr-core/6.1.0/solr-core-6.1.0-sources.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-6.1.0-RC1-rev4726c5b2d2efa9ba160b608d46a977d0a6b83f94/solr/maven/org/apache/solr/solr-core/6.1.0/solr-core-6.1.0-sources.jar.asc (added)
+++ dev/lucene/lucene-solr-6.1.0-RC1-rev4726c5b2d2efa9ba160b608d46a977d0a6b83f94/solr/maven/org/apache/solr/solr-core/6.1.0/solr-core-6.1.0-sources.jar.asc Mon Jun 13 09:06:06 2016
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v1
+
+iQIcBAABAgAGBQJXXmWOAAoJEAUaD692vGUHur0P/jOZHLZzGrhPQ44B4QAkxlHo
+WSGZgzVnWkERV9NYZ1PWXsYCUHqmDKt1U4iaTKRfvD/7XxyGzX3HoP7LZeQg786U
+Hrh02J7n/iPqk3sgtJEtKad5rz4CUzGzMgR8yuu7F/Cqi4m+tkEKnSNOR4qbl1J7
+19M6SKvcl6oz56fe+6c8SbLwOj5KUI/7ckNa0kgPFvNPVMzWaTqUam3RMPTGvoUR
+Kjjd9xp6KYHBCxq4eUfalaFz7JnDh9bUQMJ1lWeN6MSQTXGfVgvn4pEGfOmT+9TP
+m07caOQ3iNDU9tHdL5Y+TZS3xcu3dm2dEMVfISiAlRF0K3o6AIX0GU41GbrhHAwG
+MRaLVUTBYIdS6tF0njl47aORvrFqhsX/oaIgX9B9oT1Qs8+jUlHzVA8IB8Iaptyi
+IAEK5E5gpCqElhYPD5YbkpmMU6LhkhoXTrLcjPNNzpAG42YT6n1gTN9/sMAmEslq
+EtgsoQ5qyCOD5sR2VGKTJ7C7E4sQI5bCXsgQSdgHkW923sR8qrbrPdFuJ/5o0bRs
+9+FTYOFxCXmGUyJ+w4nmPmpALcYOdCkmHkcxgPr3CnWcQnRDsLMFKU8oCpr9YG/E
+zrd1AnqNCr2WuL+vt1/pdwEB3MYD4ul3ZqrUqdieqARFCJkL7hMK8Z5Blgo9E8k1
+nDc+efS38cs8DcyReLK8
+=PDtI
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-6.1.0-RC1-rev4726c5b2d2efa9ba160b608d46a977d0a6b83f94/solr/maven/org/apache/solr/solr-core/6.1.0/solr-core-6.1.0-sources.jar.md5
==============================================================================
--- dev/lucene/lucene-solr-6.1.0-RC1-rev4726c5b2d2efa9ba160b608d46a977d0a6b83f94/solr/maven/org/apache/solr/solr-core/6.1.0/solr-core-6.1.0-sources.jar.md5 (added)
+++ dev/lucene/lucene-solr-6.1.0-RC1-rev4726c5b2d2efa9ba160b608d46a977d0a6b83f94/solr/maven/org/apache/solr/solr-core/6.1.0/solr-core-6.1.0-sources.jar.md5 Mon Jun 13 09:06:06 2016
@@ -0,0 +1 @@
+4006491bfaa51474cded887b11a7d412
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.1.0-RC1-rev4726c5b2d2efa9ba160b608d46a977d0a6b83f94/solr/maven/org/apache/solr/solr-core/6.1.0/solr-core-6.1.0-sources.jar.sha1
==============================================================================
--- dev/lucene/lucene-solr-6.1.0-RC1-rev4726c5b2d2efa9ba160b608d46a977d0a6b83f94/solr/maven/org/apache/solr/solr-core/6.1.0/solr-core-6.1.0-sources.jar.sha1 (added)
+++ dev/lucene/lucene-solr-6.1.0-RC1-rev4726c5b2d2efa9ba160b608d46a977d0a6b83f94/solr/maven/org/apache/solr/solr-core/6.1.0/solr-core-6.1.0-sources.jar.sha1 Mon Jun 13 09:06:06 2016
@@ -0,0 +1 @@
+22ee06e7afd1f539523f7402a5b742fd2f0dfbd7
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.1.0-RC1-rev4726c5b2d2efa9ba160b608d46a977d0a6b83f94/solr/maven/org/apache/solr/solr-core/6.1.0/solr-core-6.1.0.jar
==============================================================================
Binary file - no diff available.

Propchange: dev/lucene/lucene-solr-6.1.0-RC1-rev4726c5b2d2efa9ba160b608d46a977d0a6b83f94/solr/maven/org/apache/solr/solr-core/6.1.0/solr-core-6.1.0.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: dev/lucene/lucene-solr-6.1.0-RC1-rev4726c5b2d2efa9ba160b608d46a977d0a6b83f94/solr/maven/org/apache/solr/solr-core/6.1.0/solr-core-6.1.0.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-6.1.0-RC1-rev4726c5b2d2efa9ba160b608d46a977d0a6b83f94/solr/maven/org/apache/solr/solr-core/6.1.0/solr-core-6.1.0.jar.asc (added)
+++ dev/lucene/lucene-solr-6.1.0-RC1-rev4726c5b2d2efa9ba160b608d46a977d0a6b83f94/solr/maven/org/apache/solr/solr-core/6.1.0/solr-core-6.1.0.jar.asc Mon Jun 13 09:06:06 2016
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v1
+
+iQIcBAABAgAGBQJXXmWOAAoJEAUaD692vGUHem8P/22OtdJYvU0La0oNPRnKFRTz
+mqAZsIUopcNvbKLEA6te29LMvQSZ5R6HDxUrt6vaA7XaY7JqUhYMCfQSokPwC/nu
+XfXYzDnQl9dx1tIVzsQzR9lJbZkehetpGzeaWAyr3mr2jI++f7J8gtWqCIyUVqDs
+GiM2uvXM5U2gWjGomfB5HOM3hAeSKlGh9QBH2gPVB0rsgjR95o66diJMVktLB19K
+VnKnx71OwWhNdTCcjgE1Uw7c4TjqW1heImzvYGOyTC48RGLvyLSvXMwcIgMP/l0u
+5I8d82l1vjpJC9ojZEzAVPAeKNILI4DCti7fz2PzFXNknLgVMIYCTroMeChsDtgs
+BYtoWEG67HRMS90tlKq+tCVrNqTysa8XpAxsgW2pznR3zK10j8MhjIbfn8pxBVNP
+rZfZlLCKbJUDS1Ea+V7OR/hZhIqOUX192PDZQ/aIRYr7/euwztapa3Xs/ceWiiyO
+nDhK1d/Gq5sZwmLFOdaqpG77/dwCMczrXySkusaL6kfFkExhtnhuwgw9Vq42DVEC
+YCRUUj7zYaY28qbMBv35O/pvr1TVYwb4OJjFlbD80maWTdLqhNpcXG2Qz2SAeAJB
+WAGAiusyk9VFNbfLSIgHXL32BL3SUQdaytXSV06X/gbbewxa3V+j7N740xpBrRAT
+SZy7lIMfbRW19dWd9wtF
+=Dp1q
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-6.1.0-RC1-rev4726c5b2d2efa9ba160b608d46a977d0a6b83f94/solr/maven/org/apache/solr/solr-core/6.1.0/solr-core-6.1.0.jar.md5
==============================================================================
--- dev/lucene/lucene-solr-6.1.0-RC1-rev4726c5b2d2efa9ba160b608d46a977d0a6b83f94/solr/maven/org/apache/solr/solr-core/6.1.0/solr-core-6.1.0.jar.md5 (added)
+++ dev/lucene/lucene-solr-6.1.0-RC1-rev4726c5b2d2efa9ba160b608d46a977d0a6b83f94/solr/maven/org/apache/solr/solr-core/6.1.0/solr-core-6.1.0.jar.md5 Mon Jun 13 09:06:06 2016
@@ -0,0 +1 @@
+013fa0d02250291764d0054974f046a1
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.1.0-RC1-rev4726c5b2d2efa9ba160b608d46a977d0a6b83f94/solr/maven/org/apache/solr/solr-core/6.1.0/solr-core-6.1.0.jar.sha1
==============================================================================
--- dev/lucene/lucene-solr-6.1.0-RC1-rev4726c5b2d2efa9ba160b608d46a977d0a6b83f94/solr/maven/org/apache/solr/solr-core/6.1.0/solr-core-6.1.0.jar.sha1 (added)
+++ dev/lucene/lucene-solr-6.1.0-RC1-rev4726c5b2d2efa9ba160b608d46a977d0a6b83f94/solr/maven/org/apache/solr/solr-core/6.1.0/solr-core-6.1.0.jar.sha1 Mon Jun 13 09:06:06 2016
@@ -0,0 +1 @@
+8cc41ed5b5236813956cd141403f4b052d90f4b1
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.1.0-RC1-rev4726c5b2d2efa9ba160b608d46a977d0a6b83f94/solr/maven/org/apache/solr/solr-core/6.1.0/solr-core-6.1.0.pom
==============================================================================
--- dev/lucene/lucene-solr-6.1.0-RC1-rev4726c5b2d2efa9ba160b608d46a977d0a6b83f94/solr/maven/org/apache/solr/solr-core/6.1.0/solr-core-6.1.0.pom (added)
+++ dev/lucene/lucene-solr-6.1.0-RC1-rev4726c5b2d2efa9ba160b608d46a977d0a6b83f94/solr/maven/org/apache/solr/solr-core/6.1.0/solr-core-6.1.0.pom Mon Jun 13 09:06:06 2016
@@ -0,0 +1,384 @@
+<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>6.1.0</version>
+    <relativePath>../../../pom.xml</relativePath>
+  </parent>
+  <groupId>org.apache.solr</groupId>
+  <artifactId>solr-core</artifactId>
+  <packaging>jar</packaging>
+  <name>Apache Solr Core</name>
+  <description>Apache Solr Core</description>
+  <properties>
+    <module-directory>solr/core</module-directory>
+    <relative-top-level>../../../../..</relative-top-level>
+    <module-path>${relative-top-level}/${module-directory}/src/java</module-path>
+  </properties>
+  <scm>
+    <connection>scm:git:${vc-anonymous-base-url}</connection>
+    <developerConnection>scm:git:${vc-dev-base-url}</developerConnection>
+    <url>${vc-browse-base-url};f=${module-directory}</url>
+  </scm>
+  <dependencies>
+    <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-classification</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-extras</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.lucene</groupId>
+      <artifactId>lucene-suggest</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.facebook.presto</groupId>
+      <artifactId>presto-parser</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.github.ben-manes.caffeine</groupId>
+      <artifactId>caffeine</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.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>io.airlift</groupId>
+      <artifactId>slice</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>antlr4-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.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.locationtech.spatial4j</groupId>
+      <artifactId>spatial4j</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>
+    </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}</sourceDirectory>
+    <resources>
+      <resource>
+        <directory>${module-path}/../resources</directory>
+      </resource>
+    </resources>
+    <testSourceDirectory/>
+    <testResources/>
+    <plugins>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-surefire-plugin</artifactId>
+        <configuration>
+          <skip>true</skip> <!-- Tests are run from solr-core-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-core-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>

Propchange: dev/lucene/lucene-solr-6.1.0-RC1-rev4726c5b2d2efa9ba160b608d46a977d0a6b83f94/solr/maven/org/apache/solr/solr-core/6.1.0/solr-core-6.1.0.pom
------------------------------------------------------------------------------
    svn:eol-style = native

Added: dev/lucene/lucene-solr-6.1.0-RC1-rev4726c5b2d2efa9ba160b608d46a977d0a6b83f94/solr/maven/org/apache/solr/solr-core/6.1.0/solr-core-6.1.0.pom.asc
==============================================================================
--- dev/lucene/lucene-solr-6.1.0-RC1-rev4726c5b2d2efa9ba160b608d46a977d0a6b83f94/solr/maven/org/apache/solr/solr-core/6.1.0/solr-core-6.1.0.pom.asc (added)
+++ dev/lucene/lucene-solr-6.1.0-RC1-rev4726c5b2d2efa9ba160b608d46a977d0a6b83f94/solr/maven/org/apache/solr/solr-core/6.1.0/solr-core-6.1.0.pom.asc Mon Jun 13 09:06:06 2016
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v1
+
+iQIcBAABAgAGBQJXXmWPAAoJEAUaD692vGUHbiUQAM58Y9QQy2eIIn+TZqyRkeDq
+a5IB9Efu+JlcBy5pvVGFFtT5xHQybhcg9OOxSU3AqYB+eCoj2FwL2wP3d41wiRLq
+QPq46/Y2qCTVVLBYMCgDHwqjCNhbeER3cBhE+NZv/BQWLxmMtrgf5z6ukLiT6rJN
+1y4VkUw4Ox+Uq+OD0FLKCqbBl4oezUtorlrhRzxupbPIrF96GeUerYS5510RFpEJ
+qVt9BgcmiEeLiQ6X+wW/GUbdfhzMUjYsYAwEdVSvpDu0JazGCW8CELqsosecBvB8
+Ob7mPXfDdUfPLhS3erA5aPRY+bxhckNlNUT3uc/pmFcLaa2jmi70PoLVGyFN7JtO
+GsMHZsygNzbJ7lArWy1lLkXLGAlv6DGW/YrK1uducthcf3TMY+cmMpCDuIWjvQcd
+9upss7VhfCTm38HSzaBvIg8YvBed6MnpBTQPiT2D6kROV7oX3G7BVaAG+n8t3dre
+KsEw+spSgs3wssG8phXGZ/LGLAqAVYvdZFJM5w+CBD7uSln3Ap6zB0I8LXI/upkQ
++ybTN7gNxqZgO7pI3JOOdKxZVphFRtjujR6uVqK1JB9CzS9SKldwyu8eZGsTE0WZ
+sA+2h1oQS29TEAd8BKMyVjI5dRlqV0ENSdulPEbxYzUXcmPQDizlcnR20wHSQ9dn
+bDDjVQ9zKaLqymL0BW3F
+=COKc
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-6.1.0-RC1-rev4726c5b2d2efa9ba160b608d46a977d0a6b83f94/solr/maven/org/apache/solr/solr-core/6.1.0/solr-core-6.1.0.pom.md5
==============================================================================
--- dev/lucene/lucene-solr-6.1.0-RC1-rev4726c5b2d2efa9ba160b608d46a977d0a6b83f94/solr/maven/org/apache/solr/solr-core/6.1.0/solr-core-6.1.0.pom.md5 (added)
+++ dev/lucene/lucene-solr-6.1.0-RC1-rev4726c5b2d2efa9ba160b608d46a977d0a6b83f94/solr/maven/org/apache/solr/solr-core/6.1.0/solr-core-6.1.0.pom.md5 Mon Jun 13 09:06:06 2016
@@ -0,0 +1 @@
+7dd701be8aa425ff9a8002fafa6fe68a
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.1.0-RC1-rev4726c5b2d2efa9ba160b608d46a977d0a6b83f94/solr/maven/org/apache/solr/solr-core/6.1.0/solr-core-6.1.0.pom.sha1
==============================================================================
--- dev/lucene/lucene-solr-6.1.0-RC1-rev4726c5b2d2efa9ba160b608d46a977d0a6b83f94/solr/maven/org/apache/solr/solr-core/6.1.0/solr-core-6.1.0.pom.sha1 (added)
+++ dev/lucene/lucene-solr-6.1.0-RC1-rev4726c5b2d2efa9ba160b608d46a977d0a6b83f94/solr/maven/org/apache/solr/solr-core/6.1.0/solr-core-6.1.0.pom.sha1 Mon Jun 13 09:06:06 2016
@@ -0,0 +1 @@
+c0a9a89c40ba90a947835517c131e822f718b475
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.1.0-RC1-rev4726c5b2d2efa9ba160b608d46a977d0a6b83f94/solr/maven/org/apache/solr/solr-core/maven-metadata.xml
==============================================================================
--- dev/lucene/lucene-solr-6.1.0-RC1-rev4726c5b2d2efa9ba160b608d46a977d0a6b83f94/solr/maven/org/apache/solr/solr-core/maven-metadata.xml (added)
+++ dev/lucene/lucene-solr-6.1.0-RC1-rev4726c5b2d2efa9ba160b608d46a977d0a6b83f94/solr/maven/org/apache/solr/solr-core/maven-metadata.xml Mon Jun 13 09:06:06 2016
@@ -0,0 +1,12 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<metadata>
+  <groupId>org.apache.solr</groupId>
+  <artifactId>solr-core</artifactId>
+  <version>6.1.0</version>
+  <versioning>
+    <versions>
+      <version>6.1.0</version>
+    </versions>
+    <lastUpdated>20160613074849</lastUpdated>
+  </versioning>
+</metadata>

Propchange: dev/lucene/lucene-solr-6.1.0-RC1-rev4726c5b2d2efa9ba160b608d46a977d0a6b83f94/solr/maven/org/apache/solr/solr-core/maven-metadata.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Added: dev/lucene/lucene-solr-6.1.0-RC1-rev4726c5b2d2efa9ba160b608d46a977d0a6b83f94/solr/maven/org/apache/solr/solr-core/maven-metadata.xml.md5
==============================================================================
--- dev/lucene/lucene-solr-6.1.0-RC1-rev4726c5b2d2efa9ba160b608d46a977d0a6b83f94/solr/maven/org/apache/solr/solr-core/maven-metadata.xml.md5 (added)
+++ dev/lucene/lucene-solr-6.1.0-RC1-rev4726c5b2d2efa9ba160b608d46a977d0a6b83f94/solr/maven/org/apache/solr/solr-core/maven-metadata.xml.md5 Mon Jun 13 09:06:06 2016
@@ -0,0 +1 @@
+bba8183f30f78f246e3ec5dbb59a5d42
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.1.0-RC1-rev4726c5b2d2efa9ba160b608d46a977d0a6b83f94/solr/maven/org/apache/solr/solr-core/maven-metadata.xml.sha1
==============================================================================
--- dev/lucene/lucene-solr-6.1.0-RC1-rev4726c5b2d2efa9ba160b608d46a977d0a6b83f94/solr/maven/org/apache/solr/solr-core/maven-metadata.xml.sha1 (added)
+++ dev/lucene/lucene-solr-6.1.0-RC1-rev4726c5b2d2efa9ba160b608d46a977d0a6b83f94/solr/maven/org/apache/solr/solr-core/maven-metadata.xml.sha1 Mon Jun 13 09:06:06 2016
@@ -0,0 +1 @@
+bcd2fe85b600895d723187818fa303b9b3311019
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.1.0-RC1-rev4726c5b2d2efa9ba160b608d46a977d0a6b83f94/solr/maven/org/apache/solr/solr-dataimporthandler-extras/6.1.0/solr-dataimporthandler-extras-6.1.0-javadoc.jar
==============================================================================
Binary file - no diff available.

Propchange: dev/lucene/lucene-solr-6.1.0-RC1-rev4726c5b2d2efa9ba160b608d46a977d0a6b83f94/solr/maven/org/apache/solr/solr-dataimporthandler-extras/6.1.0/solr-dataimporthandler-extras-6.1.0-javadoc.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: dev/lucene/lucene-solr-6.1.0-RC1-rev4726c5b2d2efa9ba160b608d46a977d0a6b83f94/solr/maven/org/apache/solr/solr-dataimporthandler-extras/6.1.0/solr-dataimporthandler-extras-6.1.0-javadoc.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-6.1.0-RC1-rev4726c5b2d2efa9ba160b608d46a977d0a6b83f94/solr/maven/org/apache/solr/solr-dataimporthandler-extras/6.1.0/solr-dataimporthandler-extras-6.1.0-javadoc.jar.asc (added)
+++ dev/lucene/lucene-solr-6.1.0-RC1-rev4726c5b2d2efa9ba160b608d46a977d0a6b83f94/solr/maven/org/apache/solr/solr-dataimporthandler-extras/6.1.0/solr-dataimporthandler-extras-6.1.0-javadoc.jar.asc Mon Jun 13 09:06:06 2016
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v1
+
+iQIcBAABAgAGBQJXXmWPAAoJEAUaD692vGUHMyAP/21Fr9sfhNm78bC/8653+uBw
+qrlC7PHFv0RbEUbmnxX5xxclxRAogC5/jBp+G0sumtfLgWABbAXtaLEnpqpJtz0u
+GzPRLfkiGK4IlHCXOkSrYMhb3n177R2whtgJtsJTrvViiRIi0iZFpRuRevOzSdIj
+m2Ja6Es5rDrUDE1yPMmk1K+BKXGtjFhKeklU6nAsCRsskdw8nKFdShd95l64GU+V
+5r6rWtWBYuKvBVI4bhzX5jYWTayMb7UC/vHEbHraPkRYSNvCiR0/xklJCdD8KvdE
+iIubmKlJ9vd+zfABA6p9vhIRNShAKijK6N/FVoPQIG26nji0p4Xe5VH0DLbigysa
+N9w/KRApikOQ6TPhBHmbAoOfm8s124olVxG415hQBt1bUhm/3UG1ANfVzaGYPzDp
+IQv4jha6ppFA0TmAVMxxl93UKh7d3DqiDsxYNgBz8TFhKIDIepiMYWJHQU1TksRu
+g6RNaNchhaNK1KH1XZA/KoYk6zLmletEzGfRpItnwcqkWdYSQxQyxce3ZI9mJTJT
+ZfrD3QvCWfV414g0RIPwyTArNCUXG5omYDhukc2ksy9S5FV0++C6FRpW9wYWeem+
+U5r5BoNAKTMNfmg4vRj9i5y3ZceNw15fTkbcmde0Zv2yiF7g6YYTBX30LzzTE3Cx
+SrHDS/2WnqZmhF+wV8Ta
+=vnZC
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-6.1.0-RC1-rev4726c5b2d2efa9ba160b608d46a977d0a6b83f94/solr/maven/org/apache/solr/solr-dataimporthandler-extras/6.1.0/solr-dataimporthandler-extras-6.1.0-javadoc.jar.md5
==============================================================================
--- dev/lucene/lucene-solr-6.1.0-RC1-rev4726c5b2d2efa9ba160b608d46a977d0a6b83f94/solr/maven/org/apache/solr/solr-dataimporthandler-extras/6.1.0/solr-dataimporthandler-extras-6.1.0-javadoc.jar.md5 (added)
+++ dev/lucene/lucene-solr-6.1.0-RC1-rev4726c5b2d2efa9ba160b608d46a977d0a6b83f94/solr/maven/org/apache/solr/solr-dataimporthandler-extras/6.1.0/solr-dataimporthandler-extras-6.1.0-javadoc.jar.md5 Mon Jun 13 09:06:06 2016
@@ -0,0 +1 @@
+a0f95eae96b740b662310c14d180fad8
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.1.0-RC1-rev4726c5b2d2efa9ba160b608d46a977d0a6b83f94/solr/maven/org/apache/solr/solr-dataimporthandler-extras/6.1.0/solr-dataimporthandler-extras-6.1.0-javadoc.jar.sha1
==============================================================================
--- dev/lucene/lucene-solr-6.1.0-RC1-rev4726c5b2d2efa9ba160b608d46a977d0a6b83f94/solr/maven/org/apache/solr/solr-dataimporthandler-extras/6.1.0/solr-dataimporthandler-extras-6.1.0-javadoc.jar.sha1 (added)
+++ dev/lucene/lucene-solr-6.1.0-RC1-rev4726c5b2d2efa9ba160b608d46a977d0a6b83f94/solr/maven/org/apache/solr/solr-dataimporthandler-extras/6.1.0/solr-dataimporthandler-extras-6.1.0-javadoc.jar.sha1 Mon Jun 13 09:06:06 2016
@@ -0,0 +1 @@
+d069c26fe6ef48be0436d64c37e764fa9d94ec16
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.1.0-RC1-rev4726c5b2d2efa9ba160b608d46a977d0a6b83f94/solr/maven/org/apache/solr/solr-dataimporthandler-extras/6.1.0/solr-dataimporthandler-extras-6.1.0-sources.jar
==============================================================================
Binary file - no diff available.

Propchange: dev/lucene/lucene-solr-6.1.0-RC1-rev4726c5b2d2efa9ba160b608d46a977d0a6b83f94/solr/maven/org/apache/solr/solr-dataimporthandler-extras/6.1.0/solr-dataimporthandler-extras-6.1.0-sources.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: dev/lucene/lucene-solr-6.1.0-RC1-rev4726c5b2d2efa9ba160b608d46a977d0a6b83f94/solr/maven/org/apache/solr/solr-dataimporthandler-extras/6.1.0/solr-dataimporthandler-extras-6.1.0-sources.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-6.1.0-RC1-rev4726c5b2d2efa9ba160b608d46a977d0a6b83f94/solr/maven/org/apache/solr/solr-dataimporthandler-extras/6.1.0/solr-dataimporthandler-extras-6.1.0-sources.jar.asc (added)
+++ dev/lucene/lucene-solr-6.1.0-RC1-rev4726c5b2d2efa9ba160b608d46a977d0a6b83f94/solr/maven/org/apache/solr/solr-dataimporthandler-extras/6.1.0/solr-dataimporthandler-extras-6.1.0-sources.jar.asc Mon Jun 13 09:06:06 2016
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v1
+
+iQIcBAABAgAGBQJXXmWQAAoJEAUaD692vGUHGC8P/0hfFGJJr0ekjmDZQbvmSu1s
+EJRJf6DoZSahbOsBvrvArm+leEeRhBJ09HgIC589dLuWwPV6SJJHJdjlhvIthh/K
+/L1vTlfAj3gq9yI9uctpfg6zhik/L1DZrhLpUUA/nKg9mi5xGZ8L0KHL6aV/+h9o
+QRTA51aJ/G9dBU0Gr5ZHZ9TgZ/zxCLxBzupi0E/9OTQ/Xaaj4uxcsDcUFHrsIY5r
+L25STEwgncJqDMnxzlA7X/QyuxgcIZvHz6eKygxhgEwFCx2eQPkAeRAvomAPfhYb
+5RlWwxaPbOl8qxhaS93v5vAOhHbd9Q5ACt7iUwW+GNoEq8U6Ijq6VgO9u8CMYNAw
+GA/XUI885WvbgeZLN4/F2xgsxeEsmIjS+eVVDpm8DGuy3CUK/FtshtQn5GdZbyQZ
+e7gINrXoL5P2qpLFEKLUbFAdf+ibGZF3RpnTO9XeX/4NXsDrLZmIYCwjaQqmk571
+JRQRlh9SLc3NrS2hdQaPpcMwrbz456RjHobq0Qo7Tjg43CXWa7juwweFxcPeSSWJ
+S3s9MXrfd3kzJHnulca+UinElVdqClqzNZUTxbSVBPhMKZmBkaB+KlYsICJkHcFd
+IzSXThwgaOAeOsSWXsJS9Jzs27VuJs872g9WP2WmGNFYEuOG0x6efVQS8bFJFgcS
+88K8NvjYkvYYVsDKvbeK
+=GXsI
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-6.1.0-RC1-rev4726c5b2d2efa9ba160b608d46a977d0a6b83f94/solr/maven/org/apache/solr/solr-dataimporthandler-extras/6.1.0/solr-dataimporthandler-extras-6.1.0-sources.jar.md5
==============================================================================
--- dev/lucene/lucene-solr-6.1.0-RC1-rev4726c5b2d2efa9ba160b608d46a977d0a6b83f94/solr/maven/org/apache/solr/solr-dataimporthandler-extras/6.1.0/solr-dataimporthandler-extras-6.1.0-sources.jar.md5 (added)
+++ dev/lucene/lucene-solr-6.1.0-RC1-rev4726c5b2d2efa9ba160b608d46a977d0a6b83f94/solr/maven/org/apache/solr/solr-dataimporthandler-extras/6.1.0/solr-dataimporthandler-extras-6.1.0-sources.jar.md5 Mon Jun 13 09:06:06 2016
@@ -0,0 +1 @@
+0300e9d57994f150dcaeb636b1d69ae6
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.1.0-RC1-rev4726c5b2d2efa9ba160b608d46a977d0a6b83f94/solr/maven/org/apache/solr/solr-dataimporthandler-extras/6.1.0/solr-dataimporthandler-extras-6.1.0-sources.jar.sha1
==============================================================================
--- dev/lucene/lucene-solr-6.1.0-RC1-rev4726c5b2d2efa9ba160b608d46a977d0a6b83f94/solr/maven/org/apache/solr/solr-dataimporthandler-extras/6.1.0/solr-dataimporthandler-extras-6.1.0-sources.jar.sha1 (added)
+++ dev/lucene/lucene-solr-6.1.0-RC1-rev4726c5b2d2efa9ba160b608d46a977d0a6b83f94/solr/maven/org/apache/solr/solr-dataimporthandler-extras/6.1.0/solr-dataimporthandler-extras-6.1.0-sources.jar.sha1 Mon Jun 13 09:06:06 2016
@@ -0,0 +1 @@
+e0dc41991048b245aa2768c79396f5a0af8cbf23
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.1.0-RC1-rev4726c5b2d2efa9ba160b608d46a977d0a6b83f94/solr/maven/org/apache/solr/solr-dataimporthandler-extras/6.1.0/solr-dataimporthandler-extras-6.1.0.jar
==============================================================================
Binary file - no diff available.

Propchange: dev/lucene/lucene-solr-6.1.0-RC1-rev4726c5b2d2efa9ba160b608d46a977d0a6b83f94/solr/maven/org/apache/solr/solr-dataimporthandler-extras/6.1.0/solr-dataimporthandler-extras-6.1.0.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream