You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by nk...@apache.org on 2016/03/31 23:26:35 UTC

svn commit: r12954 [18/22] - in /dev/lucene/lucene-solr-6.0.0-RC1-revb5f04a67fbb7422cb8f5c91a28b2c8e7eff5e12a: ./ 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.0.0-RC1-revb5f04a67fbb7422cb8f5c91a28b2c8e7eff5e12a/solr/maven/org/apache/solr/solr-cell/6.0.0/solr-cell-6.0.0.pom
==============================================================================
--- dev/lucene/lucene-solr-6.0.0-RC1-revb5f04a67fbb7422cb8f5c91a28b2c8e7eff5e12a/solr/maven/org/apache/solr/solr-cell/6.0.0/solr-cell-6.0.0.pom (added)
+++ dev/lucene/lucene-solr-6.0.0-RC1-revb5f04a67fbb7422cb8f5c91a28b2c8e7eff5e12a/solr/maven/org/apache/solr/solr-cell/6.0.0/solr-cell-6.0.0.pom Thu Mar 31 21:26:33 2016
@@ -0,0 +1,513 @@
+<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.0.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-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.0.0-RC1-revb5f04a67fbb7422cb8f5c91a28b2c8e7eff5e12a/solr/maven/org/apache/solr/solr-cell/6.0.0/solr-cell-6.0.0.pom
------------------------------------------------------------------------------
    svn:eol-style = native

Added: dev/lucene/lucene-solr-6.0.0-RC1-revb5f04a67fbb7422cb8f5c91a28b2c8e7eff5e12a/solr/maven/org/apache/solr/solr-cell/6.0.0/solr-cell-6.0.0.pom.asc
==============================================================================
--- dev/lucene/lucene-solr-6.0.0-RC1-revb5f04a67fbb7422cb8f5c91a28b2c8e7eff5e12a/solr/maven/org/apache/solr/solr-cell/6.0.0/solr-cell-6.0.0.pom.asc (added)
+++ dev/lucene/lucene-solr-6.0.0-RC1-revb5f04a67fbb7422cb8f5c91a28b2c8e7eff5e12a/solr/maven/org/apache/solr/solr-cell/6.0.0/solr-cell-6.0.0.pom.asc Thu Mar 31 21:26:33 2016
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v1
+
+iQIcBAABCgAGBQJW/Xu6AAoJEFHwzCL2JTCK79gQAJMPlrHqp0Dq8koWlkJ8pt4H
+lC8quMS2/zoLTaoPCLpSibsFwW/qMIlMFK5ZF07E7Lc78zQI8vwRE52WUa3fLm8K
+Ozl6VKm/2Q46zh42V24OgkJpnKTi93wUV11dZBV+PkANBbG9oQdL6Cl67YOcT7Mi
+sLzYn2YaVb/xbAVX1UbupHxVxWWzke0I0TLYnuEVh/Odm+ebQR90nvfj1G3bL6KX
+a4AvmCbME7ZxqIZ0j2ORWKuJLlwunS44Cr62bR6qrQWTOuGKd15Gz+FbME3zz0hU
+u7PcULCtwRY5FUoUCN+Srcxrq83Ozg+lb0Yf94VAuQ28jhviO0fCvIiuPWvznhsh
+1TP7M66RDRWhYKtViGTVT91UUC0oczh6X2XW2ycCzfNqsXYy/PVj4tbrKeWJ3UKE
+ii8Yh3bXn/n+ZAGxktE226mtwR5J7orogFyJZ5e93oWP0oQWO0OOa+VpogF2b3fX
+tq+Kcb3EYWX/LrAg6+G89XTLguyhTBWXu6u3DXwY5ao/nqblY7ezrTh94EFXFYd4
+1LGW8R/qZ1Mq+yNIlGoPu+idKrTVi3ujP49uKqVHfRdwt+LIenLrRT3md+RLFwrJ
+FnrOIjDKCebvXQjRxWvsLiSe0G2GNYmCsSlex9kBU/9fj3ADIqdBEkrszP88n10h
+LEaSOFNpXmXkM0fRmTmH
+=VvCV
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-6.0.0-RC1-revb5f04a67fbb7422cb8f5c91a28b2c8e7eff5e12a/solr/maven/org/apache/solr/solr-cell/6.0.0/solr-cell-6.0.0.pom.md5
==============================================================================
--- dev/lucene/lucene-solr-6.0.0-RC1-revb5f04a67fbb7422cb8f5c91a28b2c8e7eff5e12a/solr/maven/org/apache/solr/solr-cell/6.0.0/solr-cell-6.0.0.pom.md5 (added)
+++ dev/lucene/lucene-solr-6.0.0-RC1-revb5f04a67fbb7422cb8f5c91a28b2c8e7eff5e12a/solr/maven/org/apache/solr/solr-cell/6.0.0/solr-cell-6.0.0.pom.md5 Thu Mar 31 21:26:33 2016
@@ -0,0 +1 @@
+6ac54462c56ca3884549575c6ac4181b
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.0.0-RC1-revb5f04a67fbb7422cb8f5c91a28b2c8e7eff5e12a/solr/maven/org/apache/solr/solr-cell/6.0.0/solr-cell-6.0.0.pom.sha1
==============================================================================
--- dev/lucene/lucene-solr-6.0.0-RC1-revb5f04a67fbb7422cb8f5c91a28b2c8e7eff5e12a/solr/maven/org/apache/solr/solr-cell/6.0.0/solr-cell-6.0.0.pom.sha1 (added)
+++ dev/lucene/lucene-solr-6.0.0-RC1-revb5f04a67fbb7422cb8f5c91a28b2c8e7eff5e12a/solr/maven/org/apache/solr/solr-cell/6.0.0/solr-cell-6.0.0.pom.sha1 Thu Mar 31 21:26:33 2016
@@ -0,0 +1 @@
+f7f23484e4ad35332b11d3916f4b0fad73bc8754
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.0.0-RC1-revb5f04a67fbb7422cb8f5c91a28b2c8e7eff5e12a/solr/maven/org/apache/solr/solr-cell/maven-metadata.xml
==============================================================================
--- dev/lucene/lucene-solr-6.0.0-RC1-revb5f04a67fbb7422cb8f5c91a28b2c8e7eff5e12a/solr/maven/org/apache/solr/solr-cell/maven-metadata.xml (added)
+++ dev/lucene/lucene-solr-6.0.0-RC1-revb5f04a67fbb7422cb8f5c91a28b2c8e7eff5e12a/solr/maven/org/apache/solr/solr-cell/maven-metadata.xml Thu Mar 31 21:26:33 2016
@@ -0,0 +1,12 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<metadata>
+  <groupId>org.apache.solr</groupId>
+  <artifactId>solr-cell</artifactId>
+  <version>6.0.0</version>
+  <versioning>
+    <versions>
+      <version>6.0.0</version>
+    </versions>
+    <lastUpdated>20160331193351</lastUpdated>
+  </versioning>
+</metadata>

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

Added: dev/lucene/lucene-solr-6.0.0-RC1-revb5f04a67fbb7422cb8f5c91a28b2c8e7eff5e12a/solr/maven/org/apache/solr/solr-cell/maven-metadata.xml.md5
==============================================================================
--- dev/lucene/lucene-solr-6.0.0-RC1-revb5f04a67fbb7422cb8f5c91a28b2c8e7eff5e12a/solr/maven/org/apache/solr/solr-cell/maven-metadata.xml.md5 (added)
+++ dev/lucene/lucene-solr-6.0.0-RC1-revb5f04a67fbb7422cb8f5c91a28b2c8e7eff5e12a/solr/maven/org/apache/solr/solr-cell/maven-metadata.xml.md5 Thu Mar 31 21:26:33 2016
@@ -0,0 +1 @@
+dea499180b3634777bf67b278482a041
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.0.0-RC1-revb5f04a67fbb7422cb8f5c91a28b2c8e7eff5e12a/solr/maven/org/apache/solr/solr-cell/maven-metadata.xml.sha1
==============================================================================
--- dev/lucene/lucene-solr-6.0.0-RC1-revb5f04a67fbb7422cb8f5c91a28b2c8e7eff5e12a/solr/maven/org/apache/solr/solr-cell/maven-metadata.xml.sha1 (added)
+++ dev/lucene/lucene-solr-6.0.0-RC1-revb5f04a67fbb7422cb8f5c91a28b2c8e7eff5e12a/solr/maven/org/apache/solr/solr-cell/maven-metadata.xml.sha1 Thu Mar 31 21:26:33 2016
@@ -0,0 +1 @@
+13939cb63919fc4f8629d485940cb9705ddc9118
\ No newline at end of file

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

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

Added: dev/lucene/lucene-solr-6.0.0-RC1-revb5f04a67fbb7422cb8f5c91a28b2c8e7eff5e12a/solr/maven/org/apache/solr/solr-clustering/6.0.0/solr-clustering-6.0.0-javadoc.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-6.0.0-RC1-revb5f04a67fbb7422cb8f5c91a28b2c8e7eff5e12a/solr/maven/org/apache/solr/solr-clustering/6.0.0/solr-clustering-6.0.0-javadoc.jar.asc (added)
+++ dev/lucene/lucene-solr-6.0.0-RC1-revb5f04a67fbb7422cb8f5c91a28b2c8e7eff5e12a/solr/maven/org/apache/solr/solr-clustering/6.0.0/solr-clustering-6.0.0-javadoc.jar.asc Thu Mar 31 21:26:33 2016
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v1
+
+iQIcBAABCgAGBQJW/Xu6AAoJEFHwzCL2JTCKQx4QAIFw1uebRzt4t+bD+7ZLOT96
+oC5yo9WH4Zka3wXVjzrv9aG/Sc77FhU/835qhUc6eqmcovA2aQfNCJcCniPPdA+/
+2BFPOs/Fx2swwgLsTjad3O1xkwbm7c6W2GuGLb0/fCZ+AKk4CR/ZW7CJpsBVOzIY
+vuRyLtS86ANI3Dzryolw7y0ZW3G+9THoDAfWmjJU8cZfMC9WOUrZZ79vaxNg9f7r
+tDET6g3qQM/phk/8UdpKw7648yachA8jlvxXVtLynaL7P/BPFzbcCHVMkKX9pNJ5
+LucNqbU8FGPw0b+e3b3qQ3V8LZqP1ag9JGtPPdOIr7toCxeWIQN9qU0hyLvCExcZ
+YNkVA8NeBY9Gno4hLlCtYFnKfmxpjJ5sD1EoB2hj12tFl8+KC1FJR45FIge9esH5
+PAA2/vXTmajkPx4pO4ieBja4XkVFP8xDZW3C2c6Vki0Qm67mfzY6B2zCWIaxF/Nj
+ivrCHdV0AfNg5aOHWlB+zPwo9XwOnHm/UB1bHDpbXxiBVldz4QPFLkhP2AdtRV18
+O9iJ0P5mJyNa0yNGwzLTAIPUTebnoJrMePCnKptLv1kJF2F+gE/UlDGamJXqEJXA
+pljxc1HQYPs1BszNoaQXp2y4NcYCSzc6XeWKa1m/kShUt6nCHftUHksYdBsXbG6T
+e1ldFbTWY5QRRWWL9wha
+=zKKL
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-6.0.0-RC1-revb5f04a67fbb7422cb8f5c91a28b2c8e7eff5e12a/solr/maven/org/apache/solr/solr-clustering/6.0.0/solr-clustering-6.0.0-javadoc.jar.md5
==============================================================================
--- dev/lucene/lucene-solr-6.0.0-RC1-revb5f04a67fbb7422cb8f5c91a28b2c8e7eff5e12a/solr/maven/org/apache/solr/solr-clustering/6.0.0/solr-clustering-6.0.0-javadoc.jar.md5 (added)
+++ dev/lucene/lucene-solr-6.0.0-RC1-revb5f04a67fbb7422cb8f5c91a28b2c8e7eff5e12a/solr/maven/org/apache/solr/solr-clustering/6.0.0/solr-clustering-6.0.0-javadoc.jar.md5 Thu Mar 31 21:26:33 2016
@@ -0,0 +1 @@
+ee9542a981e1ff6da69900b441894b0e
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.0.0-RC1-revb5f04a67fbb7422cb8f5c91a28b2c8e7eff5e12a/solr/maven/org/apache/solr/solr-clustering/6.0.0/solr-clustering-6.0.0-javadoc.jar.sha1
==============================================================================
--- dev/lucene/lucene-solr-6.0.0-RC1-revb5f04a67fbb7422cb8f5c91a28b2c8e7eff5e12a/solr/maven/org/apache/solr/solr-clustering/6.0.0/solr-clustering-6.0.0-javadoc.jar.sha1 (added)
+++ dev/lucene/lucene-solr-6.0.0-RC1-revb5f04a67fbb7422cb8f5c91a28b2c8e7eff5e12a/solr/maven/org/apache/solr/solr-clustering/6.0.0/solr-clustering-6.0.0-javadoc.jar.sha1 Thu Mar 31 21:26:33 2016
@@ -0,0 +1 @@
+3d3720e534d97995c466352b300744cf2be567e8
\ No newline at end of file

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

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

Added: dev/lucene/lucene-solr-6.0.0-RC1-revb5f04a67fbb7422cb8f5c91a28b2c8e7eff5e12a/solr/maven/org/apache/solr/solr-clustering/6.0.0/solr-clustering-6.0.0-sources.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-6.0.0-RC1-revb5f04a67fbb7422cb8f5c91a28b2c8e7eff5e12a/solr/maven/org/apache/solr/solr-clustering/6.0.0/solr-clustering-6.0.0-sources.jar.asc (added)
+++ dev/lucene/lucene-solr-6.0.0-RC1-revb5f04a67fbb7422cb8f5c91a28b2c8e7eff5e12a/solr/maven/org/apache/solr/solr-clustering/6.0.0/solr-clustering-6.0.0-sources.jar.asc Thu Mar 31 21:26:33 2016
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v1
+
+iQIcBAABCgAGBQJW/Xu7AAoJEFHwzCL2JTCKPxAP/iRNjKT3J8m4RPDv31A4Ybg/
+PjPZke8vOg8WYL6niwa+nJFsudBK6A/Q6j60IJ4t4YzOYi5ceIecWeWlO2xbNlWw
+kJpKy4Y2v08qmQBV2dMyn8xfJbBnlrYKNlbhYtN798VUC1z9HtwDGLo6NEw36Gtr
+tO5DlKHSMy6ebThLXu0EEBbpqjVN4bmWD1Lf3nKMYOWU4TlPhOvXd/hGvGITO2tu
+lhwrwvQzAiQmY9DpEAXmwJBTSvX2cGGRtgH7J0u1fz0nAYpSAWQG/5kuDNDFGJdU
+xgn9XXzhv0z2ju4XeuaWuJnkMNTbg8/Yo9cQQKBmD9eoIXbG3Ht8WwfUWxyoDjvK
+qrgIke4DvnXF9hDGY3fXHqyAwMgptd8KxZyAlzOvVZQpHTZ2S+/w863J4x3g15SR
+oanhHlQPEup40Jmja+VHpqNYAaNO3FOmCEQn9h5dMMb/laE0csSc1WU/9QgJNVL8
+YNhtA9nNCVxyMRMLf6o8e2KJEDDB8MF1WedaUFy8ww42zfCXKBawErJno/KpuY5U
+NNVFL9ezLqPbPQrBeOy5unrfbjby9PkNWLWiLX+m0JUhFyvdBfWMJ+t6GFxEvNvF
+Qk4Or86JDnF+dly+W2r92VGfqyMWGYGV9HgYLwKEszijsqXduBmbJIhiu76+XAKM
+6fO7mUdz/lUqBJgfd5BI
+=fVzc
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-6.0.0-RC1-revb5f04a67fbb7422cb8f5c91a28b2c8e7eff5e12a/solr/maven/org/apache/solr/solr-clustering/6.0.0/solr-clustering-6.0.0-sources.jar.md5
==============================================================================
--- dev/lucene/lucene-solr-6.0.0-RC1-revb5f04a67fbb7422cb8f5c91a28b2c8e7eff5e12a/solr/maven/org/apache/solr/solr-clustering/6.0.0/solr-clustering-6.0.0-sources.jar.md5 (added)
+++ dev/lucene/lucene-solr-6.0.0-RC1-revb5f04a67fbb7422cb8f5c91a28b2c8e7eff5e12a/solr/maven/org/apache/solr/solr-clustering/6.0.0/solr-clustering-6.0.0-sources.jar.md5 Thu Mar 31 21:26:33 2016
@@ -0,0 +1 @@
+fa1308f603d27ef99e53aa766f3fb46a
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.0.0-RC1-revb5f04a67fbb7422cb8f5c91a28b2c8e7eff5e12a/solr/maven/org/apache/solr/solr-clustering/6.0.0/solr-clustering-6.0.0-sources.jar.sha1
==============================================================================
--- dev/lucene/lucene-solr-6.0.0-RC1-revb5f04a67fbb7422cb8f5c91a28b2c8e7eff5e12a/solr/maven/org/apache/solr/solr-clustering/6.0.0/solr-clustering-6.0.0-sources.jar.sha1 (added)
+++ dev/lucene/lucene-solr-6.0.0-RC1-revb5f04a67fbb7422cb8f5c91a28b2c8e7eff5e12a/solr/maven/org/apache/solr/solr-clustering/6.0.0/solr-clustering-6.0.0-sources.jar.sha1 Thu Mar 31 21:26:33 2016
@@ -0,0 +1 @@
+d74b1d6aa07e013f7204ade8d404a059a641d522
\ No newline at end of file

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

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

Added: dev/lucene/lucene-solr-6.0.0-RC1-revb5f04a67fbb7422cb8f5c91a28b2c8e7eff5e12a/solr/maven/org/apache/solr/solr-clustering/6.0.0/solr-clustering-6.0.0.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-6.0.0-RC1-revb5f04a67fbb7422cb8f5c91a28b2c8e7eff5e12a/solr/maven/org/apache/solr/solr-clustering/6.0.0/solr-clustering-6.0.0.jar.asc (added)
+++ dev/lucene/lucene-solr-6.0.0-RC1-revb5f04a67fbb7422cb8f5c91a28b2c8e7eff5e12a/solr/maven/org/apache/solr/solr-clustering/6.0.0/solr-clustering-6.0.0.jar.asc Thu Mar 31 21:26:33 2016
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v1
+
+iQIcBAABCgAGBQJW/Xu7AAoJEFHwzCL2JTCKpk0P/3jzxNx+S2PHLOTIdvUhYQoQ
+oY9QJCphiLhaB0JllMnnIRycYmJoetbcav4bjKUOVFfJUwtPgRvpFPtI24T/ejg8
+qk1edK/ElhhiansnTlZ8GVa6DpnCWm8xcTH5xAxFNKxuQXbyjpywg9i2Dt3TCQ5k
+D0rYcHdeD3LkMn/D8KNsxIburj7h/Qz2fmEDHQgk0wiEvp8qRL0ijiSvKIEnIkyh
+rxiABC61WmhJe/rwUVJb90QvEbdvu+DCSN6ANRwFI4TeIlcH7Yr4S8dNcNP8fZWk
+sMeL21lVBYBCDdVRywEV+fGIy+sE90KT0sPvKQs4Vwh6VgjtscnzRBIyv0+b7kuw
+nPTpSDP16HabPdgXJfUq73XmUa8cNrp0pVZjeI8Z3av1Q4yB38rZ5lbr/JNSUOEB
+Skq/+By0MXlwWVdwEsMZIxl1Y+lWLGlOI6GzLD6SV8TG/sx7sIM7+XG14T3Ks2I6
+kJfPYr4VoNyfJ2iJ2PeHe+z1AGWJKn69erXFNuIOO/5b20LDueQ42iFcCYGm3lj9
+h6yDQ4YLyNC+eHRJFoklSfMuXn4RFJZI0zMpTwKVRrZQPHERAxwCHbUOHpUFHDgo
+txIDpokVFwXxDW7QniL+P5bAYzV5VCMECfavhKdLI0a9hlI5kNw0SKIRnsW/1Cf/
+robv8wf6MEH8PxhMtzUe
+=QFfE
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-6.0.0-RC1-revb5f04a67fbb7422cb8f5c91a28b2c8e7eff5e12a/solr/maven/org/apache/solr/solr-clustering/6.0.0/solr-clustering-6.0.0.jar.md5
==============================================================================
--- dev/lucene/lucene-solr-6.0.0-RC1-revb5f04a67fbb7422cb8f5c91a28b2c8e7eff5e12a/solr/maven/org/apache/solr/solr-clustering/6.0.0/solr-clustering-6.0.0.jar.md5 (added)
+++ dev/lucene/lucene-solr-6.0.0-RC1-revb5f04a67fbb7422cb8f5c91a28b2c8e7eff5e12a/solr/maven/org/apache/solr/solr-clustering/6.0.0/solr-clustering-6.0.0.jar.md5 Thu Mar 31 21:26:33 2016
@@ -0,0 +1 @@
+aeb4153082e6e729a7aae12b7239090f
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.0.0-RC1-revb5f04a67fbb7422cb8f5c91a28b2c8e7eff5e12a/solr/maven/org/apache/solr/solr-clustering/6.0.0/solr-clustering-6.0.0.jar.sha1
==============================================================================
--- dev/lucene/lucene-solr-6.0.0-RC1-revb5f04a67fbb7422cb8f5c91a28b2c8e7eff5e12a/solr/maven/org/apache/solr/solr-clustering/6.0.0/solr-clustering-6.0.0.jar.sha1 (added)
+++ dev/lucene/lucene-solr-6.0.0-RC1-revb5f04a67fbb7422cb8f5c91a28b2c8e7eff5e12a/solr/maven/org/apache/solr/solr-clustering/6.0.0/solr-clustering-6.0.0.jar.sha1 Thu Mar 31 21:26:33 2016
@@ -0,0 +1 @@
+7a08e551d6821a8b8b4f9567d797bc78849c9c6e
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.0.0-RC1-revb5f04a67fbb7422cb8f5c91a28b2c8e7eff5e12a/solr/maven/org/apache/solr/solr-clustering/6.0.0/solr-clustering-6.0.0.pom
==============================================================================
--- dev/lucene/lucene-solr-6.0.0-RC1-revb5f04a67fbb7422cb8f5c91a28b2c8e7eff5e12a/solr/maven/org/apache/solr/solr-clustering/6.0.0/solr-clustering-6.0.0.pom (added)
+++ dev/lucene/lucene-solr-6.0.0-RC1-revb5f04a67fbb7422cb8f5c91a28b2c8e7eff5e12a/solr/maven/org/apache/solr/solr-clustering/6.0.0/solr-clustering-6.0.0.pom Thu Mar 31 21:26:33 2016
@@ -0,0 +1,402 @@
+<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.0.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-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.0.0-RC1-revb5f04a67fbb7422cb8f5c91a28b2c8e7eff5e12a/solr/maven/org/apache/solr/solr-clustering/6.0.0/solr-clustering-6.0.0.pom
------------------------------------------------------------------------------
    svn:eol-style = native

Added: dev/lucene/lucene-solr-6.0.0-RC1-revb5f04a67fbb7422cb8f5c91a28b2c8e7eff5e12a/solr/maven/org/apache/solr/solr-clustering/6.0.0/solr-clustering-6.0.0.pom.asc
==============================================================================
--- dev/lucene/lucene-solr-6.0.0-RC1-revb5f04a67fbb7422cb8f5c91a28b2c8e7eff5e12a/solr/maven/org/apache/solr/solr-clustering/6.0.0/solr-clustering-6.0.0.pom.asc (added)
+++ dev/lucene/lucene-solr-6.0.0-RC1-revb5f04a67fbb7422cb8f5c91a28b2c8e7eff5e12a/solr/maven/org/apache/solr/solr-clustering/6.0.0/solr-clustering-6.0.0.pom.asc Thu Mar 31 21:26:33 2016
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v1
+
+iQIcBAABCgAGBQJW/Xu8AAoJEFHwzCL2JTCKProP/jEQaMKzS8o9d68DnqQIs4vl
+XsGCI0J8HZQsAsTtFu1T1Z+Em9roZnqUbauBXJRsikIU70SdxXkd4nWu47dk7JNl
+dwr2BoRkOEmy2yHfPBA9z1HilLnkGYCzW9iRAn8zdBYuFt/B0Z3Xp1EJxx4xuzq3
+ewUuCoBW22nbGwI9swaITcNImWlSlR6CrMcEDaVG/xXYdz7sbxgYQOksaPSgJiCb
+e9OF3f7euKx6NOwIqBAysoEQ0BKPeism2vW2Xkv1Pii+0JgFSMV/DNQB5wKklT2t
+Taz/GJBRCN+o4U6mUyH0m2b1e61p0ufmwaTPYnrZncEJdDY0adCky5b/rug4br+v
+WcZMjjFpFABqNprtDTptXYYE44loFiGRi9uJ3x7V3npoQtIn7o7X4ecaPDpkiCXk
+JZ3hOflvhEti5JXq8Tdd+ZUmVqBPUMLQ1IyGjO8uJTG4d6q32/YLR4AZ7NAtSuoi
+Mi5XuXdCdm6uskKpI7ut2Jg9zBHUKhnxVtI13o8Shc7tB6aYv+cNGhEPKF8oMbhu
+Ly7cpYkokuhVwnXpTuj3/Tj0Z8mAx/g67w16yN60K/xKAP+SsD2RnRBw6pwrq4or
+cUkzPBQsxMNZ1CTRDPhwH94yu0SvGPiLj6+BxO8c1FAA/Y2FQQCfwWiWr0cTQ1Vg
+QerkdmWO5PO7cWDDUfx3
+=AMFO
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-6.0.0-RC1-revb5f04a67fbb7422cb8f5c91a28b2c8e7eff5e12a/solr/maven/org/apache/solr/solr-clustering/6.0.0/solr-clustering-6.0.0.pom.md5
==============================================================================
--- dev/lucene/lucene-solr-6.0.0-RC1-revb5f04a67fbb7422cb8f5c91a28b2c8e7eff5e12a/solr/maven/org/apache/solr/solr-clustering/6.0.0/solr-clustering-6.0.0.pom.md5 (added)
+++ dev/lucene/lucene-solr-6.0.0-RC1-revb5f04a67fbb7422cb8f5c91a28b2c8e7eff5e12a/solr/maven/org/apache/solr/solr-clustering/6.0.0/solr-clustering-6.0.0.pom.md5 Thu Mar 31 21:26:33 2016
@@ -0,0 +1 @@
+c107dbd9cd04f809caefb137a52e415b
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.0.0-RC1-revb5f04a67fbb7422cb8f5c91a28b2c8e7eff5e12a/solr/maven/org/apache/solr/solr-clustering/6.0.0/solr-clustering-6.0.0.pom.sha1
==============================================================================
--- dev/lucene/lucene-solr-6.0.0-RC1-revb5f04a67fbb7422cb8f5c91a28b2c8e7eff5e12a/solr/maven/org/apache/solr/solr-clustering/6.0.0/solr-clustering-6.0.0.pom.sha1 (added)
+++ dev/lucene/lucene-solr-6.0.0-RC1-revb5f04a67fbb7422cb8f5c91a28b2c8e7eff5e12a/solr/maven/org/apache/solr/solr-clustering/6.0.0/solr-clustering-6.0.0.pom.sha1 Thu Mar 31 21:26:33 2016
@@ -0,0 +1 @@
+ff2f25b2dfe4d051f44ff81a150606bc411f71f1
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.0.0-RC1-revb5f04a67fbb7422cb8f5c91a28b2c8e7eff5e12a/solr/maven/org/apache/solr/solr-clustering/maven-metadata.xml
==============================================================================
--- dev/lucene/lucene-solr-6.0.0-RC1-revb5f04a67fbb7422cb8f5c91a28b2c8e7eff5e12a/solr/maven/org/apache/solr/solr-clustering/maven-metadata.xml (added)
+++ dev/lucene/lucene-solr-6.0.0-RC1-revb5f04a67fbb7422cb8f5c91a28b2c8e7eff5e12a/solr/maven/org/apache/solr/solr-clustering/maven-metadata.xml Thu Mar 31 21:26:33 2016
@@ -0,0 +1,12 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<metadata>
+  <groupId>org.apache.solr</groupId>
+  <artifactId>solr-clustering</artifactId>
+  <version>6.0.0</version>
+  <versioning>
+    <versions>
+      <version>6.0.0</version>
+    </versions>
+    <lastUpdated>20160331193344</lastUpdated>
+  </versioning>
+</metadata>

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

Added: dev/lucene/lucene-solr-6.0.0-RC1-revb5f04a67fbb7422cb8f5c91a28b2c8e7eff5e12a/solr/maven/org/apache/solr/solr-clustering/maven-metadata.xml.md5
==============================================================================
--- dev/lucene/lucene-solr-6.0.0-RC1-revb5f04a67fbb7422cb8f5c91a28b2c8e7eff5e12a/solr/maven/org/apache/solr/solr-clustering/maven-metadata.xml.md5 (added)
+++ dev/lucene/lucene-solr-6.0.0-RC1-revb5f04a67fbb7422cb8f5c91a28b2c8e7eff5e12a/solr/maven/org/apache/solr/solr-clustering/maven-metadata.xml.md5 Thu Mar 31 21:26:33 2016
@@ -0,0 +1 @@
+9f9034a829c5c6188f573a6e68c1cf99
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.0.0-RC1-revb5f04a67fbb7422cb8f5c91a28b2c8e7eff5e12a/solr/maven/org/apache/solr/solr-clustering/maven-metadata.xml.sha1
==============================================================================
--- dev/lucene/lucene-solr-6.0.0-RC1-revb5f04a67fbb7422cb8f5c91a28b2c8e7eff5e12a/solr/maven/org/apache/solr/solr-clustering/maven-metadata.xml.sha1 (added)
+++ dev/lucene/lucene-solr-6.0.0-RC1-revb5f04a67fbb7422cb8f5c91a28b2c8e7eff5e12a/solr/maven/org/apache/solr/solr-clustering/maven-metadata.xml.sha1 Thu Mar 31 21:26:33 2016
@@ -0,0 +1 @@
+14fabeaf7be0bec3bf1087ffc7208644bd92e563
\ No newline at end of file

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

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

Added: dev/lucene/lucene-solr-6.0.0-RC1-revb5f04a67fbb7422cb8f5c91a28b2c8e7eff5e12a/solr/maven/org/apache/solr/solr-core/6.0.0/solr-core-6.0.0-javadoc.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-6.0.0-RC1-revb5f04a67fbb7422cb8f5c91a28b2c8e7eff5e12a/solr/maven/org/apache/solr/solr-core/6.0.0/solr-core-6.0.0-javadoc.jar.asc (added)
+++ dev/lucene/lucene-solr-6.0.0-RC1-revb5f04a67fbb7422cb8f5c91a28b2c8e7eff5e12a/solr/maven/org/apache/solr/solr-core/6.0.0/solr-core-6.0.0-javadoc.jar.asc Thu Mar 31 21:26:33 2016
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v1
+
+iQIcBAABCgAGBQJW/Xu8AAoJEFHwzCL2JTCKDD4QAKN/jQXSwy7ikGhJRDUzH0If
+kT6/YOSyOl+PNCqx699eEmd8BIJ8toM0FBRLb6Yh5Iuhsak9xqr49PFBrfIhvAEk
+jr0kWU/MSlvPjhrGHVBz2WspTYvnrIsKPi8t62SP1g5wKv+PpD1xUy54UcJ4tCnt
+oj5N9SyI7X+h2ePox4UG7d4iwFxygVMdSUqYHNVbtHA5IflmIMHKoaXyT8375qmD
+aKx683HQkWYexK8/8HyDkiqeCiw4Mtn0kgOZvlfOdRBKuBFsYCXXHU1o9H17ZrrL
+Z5zV6PqYpdBDNvgsc3JM1+cbszQn53vNXAL/3SR/iaMjqDA+aPl+6XRYtLh92FOs
+QYowjajGfcWfU4ekzTQB5AgkCBk23L1XqU/tMSVWFjdkPFKsqb+fpqROO9gkFQpL
+fXfYmt9q7KAKzMqEDJp433J1KXIX+xBFSL/TCPJkjAHskbgEUtZPYzyBzBPsXMgo
+xxz5fyj5kEDNkOWRrMHKGQ0SAyiaVrAHFsdATMyV5rVfKRDXu7QNkAWvCENH1hxZ
+xZ+mwz0m57EHsomCMUmguhgeAOPLp7PDhE1a2INww7YKgaoKl63aieXJVqKQeAwR
+p1UoRLNMQkSQKMILMa2QrKGtF9BohfBFadTYAqn3AAceJRY6kosk2rGok1Grkbxx
+WN6GQXr3HHhHP4yhshl/
+=C1cD
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-6.0.0-RC1-revb5f04a67fbb7422cb8f5c91a28b2c8e7eff5e12a/solr/maven/org/apache/solr/solr-core/6.0.0/solr-core-6.0.0-javadoc.jar.md5
==============================================================================
--- dev/lucene/lucene-solr-6.0.0-RC1-revb5f04a67fbb7422cb8f5c91a28b2c8e7eff5e12a/solr/maven/org/apache/solr/solr-core/6.0.0/solr-core-6.0.0-javadoc.jar.md5 (added)
+++ dev/lucene/lucene-solr-6.0.0-RC1-revb5f04a67fbb7422cb8f5c91a28b2c8e7eff5e12a/solr/maven/org/apache/solr/solr-core/6.0.0/solr-core-6.0.0-javadoc.jar.md5 Thu Mar 31 21:26:33 2016
@@ -0,0 +1 @@
+9875a23fa7531305b4ab2eac39447ebd
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.0.0-RC1-revb5f04a67fbb7422cb8f5c91a28b2c8e7eff5e12a/solr/maven/org/apache/solr/solr-core/6.0.0/solr-core-6.0.0-javadoc.jar.sha1
==============================================================================
--- dev/lucene/lucene-solr-6.0.0-RC1-revb5f04a67fbb7422cb8f5c91a28b2c8e7eff5e12a/solr/maven/org/apache/solr/solr-core/6.0.0/solr-core-6.0.0-javadoc.jar.sha1 (added)
+++ dev/lucene/lucene-solr-6.0.0-RC1-revb5f04a67fbb7422cb8f5c91a28b2c8e7eff5e12a/solr/maven/org/apache/solr/solr-core/6.0.0/solr-core-6.0.0-javadoc.jar.sha1 Thu Mar 31 21:26:33 2016
@@ -0,0 +1 @@
+19d3f556b2e8785c4cf68060b4a36045b77a8eb8
\ No newline at end of file

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

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

Added: dev/lucene/lucene-solr-6.0.0-RC1-revb5f04a67fbb7422cb8f5c91a28b2c8e7eff5e12a/solr/maven/org/apache/solr/solr-core/6.0.0/solr-core-6.0.0-sources.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-6.0.0-RC1-revb5f04a67fbb7422cb8f5c91a28b2c8e7eff5e12a/solr/maven/org/apache/solr/solr-core/6.0.0/solr-core-6.0.0-sources.jar.asc (added)
+++ dev/lucene/lucene-solr-6.0.0-RC1-revb5f04a67fbb7422cb8f5c91a28b2c8e7eff5e12a/solr/maven/org/apache/solr/solr-core/6.0.0/solr-core-6.0.0-sources.jar.asc Thu Mar 31 21:26:33 2016
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v1
+
+iQIcBAABCgAGBQJW/Xu9AAoJEFHwzCL2JTCKEOcP/iqiDbrKAiMp+nr90Qo0RkaP
++i4KGPO6r7SVLYVplrZ6EQPoPGAOTxzl48kNWOneF5n+toFFUtyJ1W2CADJIIdDP
+kv2wjTI3XR3GhaNAx8foBLpe8RdPWypFgg+uo5/tWL2QZox+OsQxUKmqtlwQvIZY
+jNT7B6CgiA5OSriIF4kYKmjVP5y3d5QI3T/WysuCvPUltW7E0QYBOSOLJ+lc5hT8
+OEa1CN2YM3CFpmiJwxInEZXoxTYVpkMqSj8TBV4mPZtqloSdIqNkwJFjA+Ckuyr4
+n2h4hFAXK1wqs2DDPRtUbx2FxdKXWyyHyEuiDsWjpsKnAx8hF7jrsKQxczW9f0rC
+905ik9MPyDfjLCSZQmTf6s+z3+rbJk0edjJ/RKWQMbjqXuVcJXhQS6dwYxis8zZv
+rTOkanYkJ74iX8s6SfXdTdSDc8UbHsO3hN3k/fnkk0gV72UZQVuGdr3tDCSVXZ8F
+bsfDC8uYBJpJ39Q7DZ1dAxpFAvu5MEVu8pH/ivmQZkP8fyvTsvZyg4sNPUlHhd38
+QSpt3RLAwlQDsfJZYfXpr8Reba9u0muhLu/J/nil/PR+r2Mx3gYoLmMu5xkQ4ELq
+LY3UoQn6JpBbw3LWf0LaS6JeZm1NtttXjAma50aTnLmVBj43Vb5Xojjqll32RC8a
+ClC5JSd4z9uFsnh8pYGQ
+=MxOJ
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-6.0.0-RC1-revb5f04a67fbb7422cb8f5c91a28b2c8e7eff5e12a/solr/maven/org/apache/solr/solr-core/6.0.0/solr-core-6.0.0-sources.jar.md5
==============================================================================
--- dev/lucene/lucene-solr-6.0.0-RC1-revb5f04a67fbb7422cb8f5c91a28b2c8e7eff5e12a/solr/maven/org/apache/solr/solr-core/6.0.0/solr-core-6.0.0-sources.jar.md5 (added)
+++ dev/lucene/lucene-solr-6.0.0-RC1-revb5f04a67fbb7422cb8f5c91a28b2c8e7eff5e12a/solr/maven/org/apache/solr/solr-core/6.0.0/solr-core-6.0.0-sources.jar.md5 Thu Mar 31 21:26:33 2016
@@ -0,0 +1 @@
+a88d7aa575a3134142e46f759953aed0
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.0.0-RC1-revb5f04a67fbb7422cb8f5c91a28b2c8e7eff5e12a/solr/maven/org/apache/solr/solr-core/6.0.0/solr-core-6.0.0-sources.jar.sha1
==============================================================================
--- dev/lucene/lucene-solr-6.0.0-RC1-revb5f04a67fbb7422cb8f5c91a28b2c8e7eff5e12a/solr/maven/org/apache/solr/solr-core/6.0.0/solr-core-6.0.0-sources.jar.sha1 (added)
+++ dev/lucene/lucene-solr-6.0.0-RC1-revb5f04a67fbb7422cb8f5c91a28b2c8e7eff5e12a/solr/maven/org/apache/solr/solr-core/6.0.0/solr-core-6.0.0-sources.jar.sha1 Thu Mar 31 21:26:33 2016
@@ -0,0 +1 @@
+93f0c4f27d29f551dd939e2de178980ed501a03e
\ No newline at end of file

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

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

Added: dev/lucene/lucene-solr-6.0.0-RC1-revb5f04a67fbb7422cb8f5c91a28b2c8e7eff5e12a/solr/maven/org/apache/solr/solr-core/6.0.0/solr-core-6.0.0.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-6.0.0-RC1-revb5f04a67fbb7422cb8f5c91a28b2c8e7eff5e12a/solr/maven/org/apache/solr/solr-core/6.0.0/solr-core-6.0.0.jar.asc (added)
+++ dev/lucene/lucene-solr-6.0.0-RC1-revb5f04a67fbb7422cb8f5c91a28b2c8e7eff5e12a/solr/maven/org/apache/solr/solr-core/6.0.0/solr-core-6.0.0.jar.asc Thu Mar 31 21:26:33 2016
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v1
+
+iQIcBAABCgAGBQJW/Xu9AAoJEFHwzCL2JTCK5oYQAKT3dV1SkAGvCr+mjVl0xgVM
+9Jq+akuuM309KE+CGuaIjh+1R2zDjpocMACb3GH/lqDpF1oKniccKQecZYSXa1Zo
+9lsIwXQzuoJ+x8WNoXcprc7nw3gXiJgJeYshJ7uGgWgt+fgbyWEU1dlOMccdGnUk
+vA8v78q2Cfb0bcvyljDyp8FTMk9EVaqXxtc2blmNt9BIc6Q9MqUeU4caBvwAAlvF
+zLhUFJxZmvOisGpF8kFjvrbp6YQRQEg60PkSfteWUfRhetDkuJfaXUpcLuIexaoT
+whcKbfyD2Y6xH5OFbpyMPl5yDRhrHvrw++qiqPGMf7RWwf+fpGol39jmmNpirUd0
+lMN9EL5DAnvmoeIrcufQ8mNjXWihzuHdioHmWla6Bc/lhtIpnTHMme4vivDi6Lgt
+Patuds0aEtUYHJsvrfHr0Eu1MrNhEcTIIuSCqoVEarkV4vKcXtbddwRDyG8/aF6F
+wzzDARfjIiMdHTa0WKMv5H1XPKkr8HDHuiXvIf2z2zhgqEzsJLrgLlhh5b3hcaGm
+vMFIQ5TeGicJhYy4WFD6YgRBSc7d42z+rWJcV2dAO9RgOfumDFANzb0l5rosUsua
++M4QGnWlyRziqzX9N21yEBVyWzoFWzDWhoPcacvZGr5wheaafmcgc1rJInG8bhNO
+rETgXPnbIhH0u081F3J5
+=X6n0
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-6.0.0-RC1-revb5f04a67fbb7422cb8f5c91a28b2c8e7eff5e12a/solr/maven/org/apache/solr/solr-core/6.0.0/solr-core-6.0.0.jar.md5
==============================================================================
--- dev/lucene/lucene-solr-6.0.0-RC1-revb5f04a67fbb7422cb8f5c91a28b2c8e7eff5e12a/solr/maven/org/apache/solr/solr-core/6.0.0/solr-core-6.0.0.jar.md5 (added)
+++ dev/lucene/lucene-solr-6.0.0-RC1-revb5f04a67fbb7422cb8f5c91a28b2c8e7eff5e12a/solr/maven/org/apache/solr/solr-core/6.0.0/solr-core-6.0.0.jar.md5 Thu Mar 31 21:26:33 2016
@@ -0,0 +1 @@
+cb2b4fc63861175dce0b7d01142a9c62
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.0.0-RC1-revb5f04a67fbb7422cb8f5c91a28b2c8e7eff5e12a/solr/maven/org/apache/solr/solr-core/6.0.0/solr-core-6.0.0.jar.sha1
==============================================================================
--- dev/lucene/lucene-solr-6.0.0-RC1-revb5f04a67fbb7422cb8f5c91a28b2c8e7eff5e12a/solr/maven/org/apache/solr/solr-core/6.0.0/solr-core-6.0.0.jar.sha1 (added)
+++ dev/lucene/lucene-solr-6.0.0-RC1-revb5f04a67fbb7422cb8f5c91a28b2c8e7eff5e12a/solr/maven/org/apache/solr/solr-core/6.0.0/solr-core-6.0.0.jar.sha1 Thu Mar 31 21:26:33 2016
@@ -0,0 +1 @@
+999eca040f46a45565fdae1726b003a87446fdab
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.0.0-RC1-revb5f04a67fbb7422cb8f5c91a28b2c8e7eff5e12a/solr/maven/org/apache/solr/solr-core/6.0.0/solr-core-6.0.0.pom
==============================================================================
--- dev/lucene/lucene-solr-6.0.0-RC1-revb5f04a67fbb7422cb8f5c91a28b2c8e7eff5e12a/solr/maven/org/apache/solr/solr-core/6.0.0/solr-core-6.0.0.pom (added)
+++ dev/lucene/lucene-solr-6.0.0-RC1-revb5f04a67fbb7422cb8f5c91a28b2c8e7eff5e12a/solr/maven/org/apache/solr/solr-core/6.0.0/solr-core-6.0.0.pom Thu Mar 31 21:26:33 2016
@@ -0,0 +1,380 @@
+<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.0.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-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.0.0-RC1-revb5f04a67fbb7422cb8f5c91a28b2c8e7eff5e12a/solr/maven/org/apache/solr/solr-core/6.0.0/solr-core-6.0.0.pom
------------------------------------------------------------------------------
    svn:eol-style = native

Added: dev/lucene/lucene-solr-6.0.0-RC1-revb5f04a67fbb7422cb8f5c91a28b2c8e7eff5e12a/solr/maven/org/apache/solr/solr-core/6.0.0/solr-core-6.0.0.pom.asc
==============================================================================
--- dev/lucene/lucene-solr-6.0.0-RC1-revb5f04a67fbb7422cb8f5c91a28b2c8e7eff5e12a/solr/maven/org/apache/solr/solr-core/6.0.0/solr-core-6.0.0.pom.asc (added)
+++ dev/lucene/lucene-solr-6.0.0-RC1-revb5f04a67fbb7422cb8f5c91a28b2c8e7eff5e12a/solr/maven/org/apache/solr/solr-core/6.0.0/solr-core-6.0.0.pom.asc Thu Mar 31 21:26:33 2016
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v1
+
+iQIcBAABCgAGBQJW/Xu+AAoJEFHwzCL2JTCK+4wP/iX7WgrbgYY/qcAKTHsUVCRx
+PPB3SL0ppApfYpfMVGKOXampxWa5GrjsZMPo5n7M6y87afLOXQYULb3d7zD8w1sj
+pyLdAB5hWL+6CzdiVNntlU2xX3wPPDB3igCmd+GGAL12AeiyT4BlRKm8jOMjT01Y
+jYaOjNXdqfoN6hJVCdYvVSTaQFma87d0GYMM4Bseu8UENyrRJJlwJm67Z/RfJdWi
+qiuieSZ4kZAYZqtY0qXciM23tRtY4w6YvmBe4dzkFjynzA02pLG+rX1ABO+dQucA
+IdoY2M2flFYWBCyXC/VmT1ZQiw1upD5LUjjiEQtObVV/+O/WYYTRDN8qIctAmGV2
+Yt4ptWWUyQXWz6lOwClBl45uzldy40Yqd3dEOnD8k4be5HPj69fhRnZv5HADQR+j
+cgygeNN/ot5szxNSEgMQ8g5ocfSD0q09Oqtov3SrVOHHBxDkobSuIHrjdoTlu5/9
+0mputUeu4VtE/xyV4z41+p3GBF0JSjeA3B7KRmW1/m5x7d14n8Ba4+WtyylLSIur
+kN5TT011/kDEQwE4HEpaiMb+2POkOKpQ1My7xGhB8NnTBXaGvCfV/aPnwzeBVfF/
+KML1U7VAC6hwbEoZE2HD+QjvUQY5dGSgwP0eAQC91EXT0lbjc9UacxqizM1RfRAa
+4bRdzF5KP00THm5BZWNV
+=s/24
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-6.0.0-RC1-revb5f04a67fbb7422cb8f5c91a28b2c8e7eff5e12a/solr/maven/org/apache/solr/solr-core/6.0.0/solr-core-6.0.0.pom.md5
==============================================================================
--- dev/lucene/lucene-solr-6.0.0-RC1-revb5f04a67fbb7422cb8f5c91a28b2c8e7eff5e12a/solr/maven/org/apache/solr/solr-core/6.0.0/solr-core-6.0.0.pom.md5 (added)
+++ dev/lucene/lucene-solr-6.0.0-RC1-revb5f04a67fbb7422cb8f5c91a28b2c8e7eff5e12a/solr/maven/org/apache/solr/solr-core/6.0.0/solr-core-6.0.0.pom.md5 Thu Mar 31 21:26:33 2016
@@ -0,0 +1 @@
+942fd5d9a9da870b92d903e14a59b2e3
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.0.0-RC1-revb5f04a67fbb7422cb8f5c91a28b2c8e7eff5e12a/solr/maven/org/apache/solr/solr-core/6.0.0/solr-core-6.0.0.pom.sha1
==============================================================================
--- dev/lucene/lucene-solr-6.0.0-RC1-revb5f04a67fbb7422cb8f5c91a28b2c8e7eff5e12a/solr/maven/org/apache/solr/solr-core/6.0.0/solr-core-6.0.0.pom.sha1 (added)
+++ dev/lucene/lucene-solr-6.0.0-RC1-revb5f04a67fbb7422cb8f5c91a28b2c8e7eff5e12a/solr/maven/org/apache/solr/solr-core/6.0.0/solr-core-6.0.0.pom.sha1 Thu Mar 31 21:26:33 2016
@@ -0,0 +1 @@
+5ceba1112de1bc6c4226e570103eabca773f9239
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.0.0-RC1-revb5f04a67fbb7422cb8f5c91a28b2c8e7eff5e12a/solr/maven/org/apache/solr/solr-core/maven-metadata.xml
==============================================================================
--- dev/lucene/lucene-solr-6.0.0-RC1-revb5f04a67fbb7422cb8f5c91a28b2c8e7eff5e12a/solr/maven/org/apache/solr/solr-core/maven-metadata.xml (added)
+++ dev/lucene/lucene-solr-6.0.0-RC1-revb5f04a67fbb7422cb8f5c91a28b2c8e7eff5e12a/solr/maven/org/apache/solr/solr-core/maven-metadata.xml Thu Mar 31 21:26:33 2016
@@ -0,0 +1,12 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<metadata>
+  <groupId>org.apache.solr</groupId>
+  <artifactId>solr-core</artifactId>
+  <version>6.0.0</version>
+  <versioning>
+    <versions>
+      <version>6.0.0</version>
+    </versions>
+    <lastUpdated>20160331193334</lastUpdated>
+  </versioning>
+</metadata>

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

Added: dev/lucene/lucene-solr-6.0.0-RC1-revb5f04a67fbb7422cb8f5c91a28b2c8e7eff5e12a/solr/maven/org/apache/solr/solr-core/maven-metadata.xml.md5
==============================================================================
--- dev/lucene/lucene-solr-6.0.0-RC1-revb5f04a67fbb7422cb8f5c91a28b2c8e7eff5e12a/solr/maven/org/apache/solr/solr-core/maven-metadata.xml.md5 (added)
+++ dev/lucene/lucene-solr-6.0.0-RC1-revb5f04a67fbb7422cb8f5c91a28b2c8e7eff5e12a/solr/maven/org/apache/solr/solr-core/maven-metadata.xml.md5 Thu Mar 31 21:26:33 2016
@@ -0,0 +1 @@
+799afcdc195bae07f1d968ad54d42201
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.0.0-RC1-revb5f04a67fbb7422cb8f5c91a28b2c8e7eff5e12a/solr/maven/org/apache/solr/solr-core/maven-metadata.xml.sha1
==============================================================================
--- dev/lucene/lucene-solr-6.0.0-RC1-revb5f04a67fbb7422cb8f5c91a28b2c8e7eff5e12a/solr/maven/org/apache/solr/solr-core/maven-metadata.xml.sha1 (added)
+++ dev/lucene/lucene-solr-6.0.0-RC1-revb5f04a67fbb7422cb8f5c91a28b2c8e7eff5e12a/solr/maven/org/apache/solr/solr-core/maven-metadata.xml.sha1 Thu Mar 31 21:26:33 2016
@@ -0,0 +1 @@
+409bf5bbfe670acd1f6ce0c65b0e75e5a2b4dc5b
\ No newline at end of file

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

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

Added: dev/lucene/lucene-solr-6.0.0-RC1-revb5f04a67fbb7422cb8f5c91a28b2c8e7eff5e12a/solr/maven/org/apache/solr/solr-dataimporthandler-extras/6.0.0/solr-dataimporthandler-extras-6.0.0-javadoc.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-6.0.0-RC1-revb5f04a67fbb7422cb8f5c91a28b2c8e7eff5e12a/solr/maven/org/apache/solr/solr-dataimporthandler-extras/6.0.0/solr-dataimporthandler-extras-6.0.0-javadoc.jar.asc (added)
+++ dev/lucene/lucene-solr-6.0.0-RC1-revb5f04a67fbb7422cb8f5c91a28b2c8e7eff5e12a/solr/maven/org/apache/solr/solr-dataimporthandler-extras/6.0.0/solr-dataimporthandler-extras-6.0.0-javadoc.jar.asc Thu Mar 31 21:26:33 2016
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v1
+
+iQIcBAABCgAGBQJW/Xu+AAoJEFHwzCL2JTCKDP0QAIAylKVArhL/SyOz9TsIRJcz
+0suWvlzf4BZlu2uF6sFr+NS8mfJnjLXss4GmBfd0mXmcaO/zwtdhM3UIekGIfzSK
+tkX4gtbBfJ2QPRVrCUbfd986E6Xbm2Be500Zw1MYbSw1hOi3qF+CGf0oV0igDoio
+O8stfv+WpN97UKAOzwja+WHrvx+FglwU1dR30PeiK75jtzAvhWxluuf6xoj0ITS0
+Ec8vpu906dQAsd7Banrk6ZUuyeCTcX0F3Hm0GW0nRSl2Dv3BfcxwDIem2qhVhtKS
+L0VbWzdnCv2twh45ncSohsmL9eW+79gUbg37VYYg2rAnBG2Ef5kCvgVXMlWrUprU
+5Fq+2jyGdtwChSf8lCILkF7EoHVIHYJCY1UlcqKq2+QJtJf8mh1KfBkINkVvPqJz
+0OM1hLNEl1KV6hePatAKjn32JIkfMkFaih4SQF4dXlytSzU66PfALQuuVwfoJ5AG
+IzNThhMbwjnZMMfALgshCQ3OQSHaFIz+UDxAzFfgIhj43Fm8B5Gkphqjvio2xLvU
+cJTLUt9K/yDCXD5YVWtSls6J0XrP942/u6uizeJOTF7NPh0KazIQvSfiZeK7PZiy
+Nz52msvhV5Mi9WPd4X0dp1DniNiuq3jSTwvpwNoOCdTVsgHNhDkg7esDzyC+xtyj
+0tXazLb6Y2X7yPGgrrjQ
+=Qqq3
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-6.0.0-RC1-revb5f04a67fbb7422cb8f5c91a28b2c8e7eff5e12a/solr/maven/org/apache/solr/solr-dataimporthandler-extras/6.0.0/solr-dataimporthandler-extras-6.0.0-javadoc.jar.md5
==============================================================================
--- dev/lucene/lucene-solr-6.0.0-RC1-revb5f04a67fbb7422cb8f5c91a28b2c8e7eff5e12a/solr/maven/org/apache/solr/solr-dataimporthandler-extras/6.0.0/solr-dataimporthandler-extras-6.0.0-javadoc.jar.md5 (added)
+++ dev/lucene/lucene-solr-6.0.0-RC1-revb5f04a67fbb7422cb8f5c91a28b2c8e7eff5e12a/solr/maven/org/apache/solr/solr-dataimporthandler-extras/6.0.0/solr-dataimporthandler-extras-6.0.0-javadoc.jar.md5 Thu Mar 31 21:26:33 2016
@@ -0,0 +1 @@
+cb278df00bf36541b83a6490509e4aed
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.0.0-RC1-revb5f04a67fbb7422cb8f5c91a28b2c8e7eff5e12a/solr/maven/org/apache/solr/solr-dataimporthandler-extras/6.0.0/solr-dataimporthandler-extras-6.0.0-javadoc.jar.sha1
==============================================================================
--- dev/lucene/lucene-solr-6.0.0-RC1-revb5f04a67fbb7422cb8f5c91a28b2c8e7eff5e12a/solr/maven/org/apache/solr/solr-dataimporthandler-extras/6.0.0/solr-dataimporthandler-extras-6.0.0-javadoc.jar.sha1 (added)
+++ dev/lucene/lucene-solr-6.0.0-RC1-revb5f04a67fbb7422cb8f5c91a28b2c8e7eff5e12a/solr/maven/org/apache/solr/solr-dataimporthandler-extras/6.0.0/solr-dataimporthandler-extras-6.0.0-javadoc.jar.sha1 Thu Mar 31 21:26:33 2016
@@ -0,0 +1 @@
+7962c3e6b6e47c80e0b336f337d0ace4743f7172
\ No newline at end of file

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

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

Added: dev/lucene/lucene-solr-6.0.0-RC1-revb5f04a67fbb7422cb8f5c91a28b2c8e7eff5e12a/solr/maven/org/apache/solr/solr-dataimporthandler-extras/6.0.0/solr-dataimporthandler-extras-6.0.0-sources.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-6.0.0-RC1-revb5f04a67fbb7422cb8f5c91a28b2c8e7eff5e12a/solr/maven/org/apache/solr/solr-dataimporthandler-extras/6.0.0/solr-dataimporthandler-extras-6.0.0-sources.jar.asc (added)
+++ dev/lucene/lucene-solr-6.0.0-RC1-revb5f04a67fbb7422cb8f5c91a28b2c8e7eff5e12a/solr/maven/org/apache/solr/solr-dataimporthandler-extras/6.0.0/solr-dataimporthandler-extras-6.0.0-sources.jar.asc Thu Mar 31 21:26:33 2016
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v1
+
+iQIcBAABCgAGBQJW/Xu/AAoJEFHwzCL2JTCK9y0P/1Qard6fdgzbCFHTOlktjTRB
+AYrf5adUmYzCNpk6vIBhRm7qkrdwOH3BajcfrPdoowP+egEbJAlWuIzRYj18wavA
+NB26wF6GxnIcoaWLCCVmxyqiUmzhj6qHKmudvN+a7QxnpLlNwlBaTd2n04FgRHqq
+OhmHVnb0XGMig1Gkw9aXFUhJcUUoZoJ0t9a7uV+tmH/rfi/FWS8hO4ZT36k+WNF2
++peQK4YVSoqLNLrGR1TYi28ZGTiH2dMeR2v7ZGiQ+oWDByEBYCKmuSNiBal7YVF1
+5lD9EETFICSbHX735lwYPEcRlVyoVHSa0ctsT0Y0b2xQU9wjKOGnHIMH6RgS+ess
+8vhHIG+SwkYMGj5NFEUAoRzHXmUiGCSv+N+6IzB/Jkkaj1rUImCt4w/epK5MtU75
+N6oYFVggiStA6BdfyJnVslwdNnETOgpL8UAA1dhvVqAmTRw08yI93n9J3dSYIycE
+NZeWogztPoxXP9sqJhyoogUSS8AytbDG/JaJamOSEVBhmi+DfyzD1WMCHOcJA8SF
+RtyvhstzOhnkrhwGKJ+rU0CtTqs0z9iDqY6mfFaurShrmK2r8kJ/7LYg2lZU4rDV
+B0u3HkEoQKulIMtsQYy46afkZl+pwz49FdzvQOl9XGTKFEHYE6ZQ/TXamezMLyZQ
+Di7POLDdGyVdun7ADn2t
+=ad2F
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-6.0.0-RC1-revb5f04a67fbb7422cb8f5c91a28b2c8e7eff5e12a/solr/maven/org/apache/solr/solr-dataimporthandler-extras/6.0.0/solr-dataimporthandler-extras-6.0.0-sources.jar.md5
==============================================================================
--- dev/lucene/lucene-solr-6.0.0-RC1-revb5f04a67fbb7422cb8f5c91a28b2c8e7eff5e12a/solr/maven/org/apache/solr/solr-dataimporthandler-extras/6.0.0/solr-dataimporthandler-extras-6.0.0-sources.jar.md5 (added)
+++ dev/lucene/lucene-solr-6.0.0-RC1-revb5f04a67fbb7422cb8f5c91a28b2c8e7eff5e12a/solr/maven/org/apache/solr/solr-dataimporthandler-extras/6.0.0/solr-dataimporthandler-extras-6.0.0-sources.jar.md5 Thu Mar 31 21:26:33 2016
@@ -0,0 +1 @@
+134b6b9ff6503bbe739e5294a54178fd
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.0.0-RC1-revb5f04a67fbb7422cb8f5c91a28b2c8e7eff5e12a/solr/maven/org/apache/solr/solr-dataimporthandler-extras/6.0.0/solr-dataimporthandler-extras-6.0.0-sources.jar.sha1
==============================================================================
--- dev/lucene/lucene-solr-6.0.0-RC1-revb5f04a67fbb7422cb8f5c91a28b2c8e7eff5e12a/solr/maven/org/apache/solr/solr-dataimporthandler-extras/6.0.0/solr-dataimporthandler-extras-6.0.0-sources.jar.sha1 (added)
+++ dev/lucene/lucene-solr-6.0.0-RC1-revb5f04a67fbb7422cb8f5c91a28b2c8e7eff5e12a/solr/maven/org/apache/solr/solr-dataimporthandler-extras/6.0.0/solr-dataimporthandler-extras-6.0.0-sources.jar.sha1 Thu Mar 31 21:26:33 2016
@@ -0,0 +1 @@
+a557fe34f07794dee699107da4e97fb626ca877a
\ No newline at end of file

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

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