You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by sa...@apache.org on 2018/03/02 22:08:17 UTC

svn commit: r25383 [18/20] - in /dev/lucene/lucene-solr-6.6.3-RC1-revd1e9bbd333ea55cfa0c75d324424606e857a775b: ./ 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.6.3-RC1-revd1e9bbd333ea55cfa0c75d324424606e857a775b/solr/maven/org/apache/solr/solr-langid/6.6.3/solr-langid-6.6.3.pom
==============================================================================
--- dev/lucene/lucene-solr-6.6.3-RC1-revd1e9bbd333ea55cfa0c75d324424606e857a775b/solr/maven/org/apache/solr/solr-langid/6.6.3/solr-langid-6.6.3.pom (added)
+++ dev/lucene/lucene-solr-6.6.3-RC1-revd1e9bbd333ea55cfa0c75d324424606e857a775b/solr/maven/org/apache/solr/solr-langid/6.6.3/solr-langid-6.6.3.pom Fri Mar  2 22:08:13 2018
@@ -0,0 +1,619 @@
+<!--
+  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.
+-->
+<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">
+  <modelVersion>4.0.0</modelVersion>
+  <parent>
+    <groupId>org.apache.solr</groupId>
+    <artifactId>solr-parent</artifactId>
+    <version>6.6.3</version>
+    <relativePath>../../pom.xml</relativePath>
+  </parent>
+  <groupId>org.apache.solr</groupId>
+  <artifactId>solr-langid</artifactId>
+  <packaging>jar</packaging>
+  <name>Apache Solr Language Identifier</name>
+  <description>
+    This module is intended to be used while indexing documents.
+    It is implemented as an UpdateProcessor to be placed in an UpdateChain.
+    Its purpose is to identify language from documents and tag the document with language code.
+  </description>
+  <properties>
+    <module-directory>solr/contrib/langid</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.cybozu.labs</groupId>
+      <artifactId>langdetect</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.drewnoakes</groupId>
+      <artifactId>metadata-extractor</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.github.virtuald</groupId>
+      <artifactId>curvesapi</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.healthmarketscience.jackcess</groupId>
+      <artifactId>jackcess</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.rometools</groupId>
+      <artifactId>rome</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>info.ganglia.gmetric4j</groupId>
+      <artifactId>gmetric4j</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>io.dropwizard.metrics</groupId>
+      <artifactId>metrics-core</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>io.dropwizard.metrics</groupId>
+      <artifactId>metrics-ganglia</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>io.dropwizard.metrics</groupId>
+      <artifactId>metrics-graphite</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>io.dropwizard.metrics</groupId>
+      <artifactId>metrics-jetty9</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>io.dropwizard.metrics</groupId>
+      <artifactId>metrics-jvm</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.arnx</groupId>
+      <artifactId>jsonic</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>net.hydromatic</groupId>
+      <artifactId>eigenbase-properties</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.antlr</groupId>
+      <artifactId>antlr4-runtime</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.calcite</groupId>
+      <artifactId>calcite-core</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.calcite</groupId>
+      <artifactId>calcite-linq4j</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.calcite.avatica</groupId>
+      <artifactId>avatica-core</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.commons</groupId>
+      <artifactId>commons-collections4</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.commons</groupId>
+      <artifactId>commons-math3</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.curator</groupId>
+      <artifactId>curator-client</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.curator</groupId>
+      <artifactId>curator-framework</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.curator</groupId>
+      <artifactId>curator-recipes</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.htrace</groupId>
+      <artifactId>htrace-core</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.pdfbox</groupId>
+      <artifactId>pdfbox-tools</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.jackson</groupId>
+      <artifactId>jackson-core-asl</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.codehaus.jackson</groupId>
+      <artifactId>jackson-mapper-asl</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.codehaus.janino</groupId>
+      <artifactId>commons-compiler</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.codehaus.janino</groupId>
+      <artifactId>janino</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.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.tallison</groupId>
+      <artifactId>jmatio</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.tukaani</groupId>
+      <artifactId>xz</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>xerces</groupId>
+      <artifactId>xercesImpl</artifactId>
+    </dependency>
+
+
+  </dependencies>
+  <build>
+    <sourceDirectory>${module-path}/src/java</sourceDirectory>
+    <testSourceDirectory>${module-path}/src/test</testSourceDirectory>
+    <resources>
+      <resource>
+        <directory>${module-path}/src/resources</directory>
+      </resource>
+    </resources>
+    <testResources>
+      <testResource>
+        <directory>${module-path}/src/test-files</directory>
+      </testResource>
+      <testResource>
+        <directory>${top-level}/dev-tools/maven/solr</directory>
+        <includes>
+          <include>maven.testlogging.properties</include>
+        </includes>
+      </testResource>
+    </testResources>
+  </build>
+</project>

Added: dev/lucene/lucene-solr-6.6.3-RC1-revd1e9bbd333ea55cfa0c75d324424606e857a775b/solr/maven/org/apache/solr/solr-langid/6.6.3/solr-langid-6.6.3.pom.asc
==============================================================================
--- dev/lucene/lucene-solr-6.6.3-RC1-revd1e9bbd333ea55cfa0c75d324424606e857a775b/solr/maven/org/apache/solr/solr-langid/6.6.3/solr-langid-6.6.3.pom.asc (added)
+++ dev/lucene/lucene-solr-6.6.3-RC1-revd1e9bbd333ea55cfa0c75d324424606e857a775b/solr/maven/org/apache/solr/solr-langid/6.6.3/solr-langid-6.6.3.pom.asc Fri Mar  2 22:08:13 2018
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v1
+
+iQIcBAABAgAGBQJama/iAAoJEHGGsG4e0Tnni68QALhIPA0cymA/oJoWvYeKZ+YI
+RGPeP4Yn6DFSAyy7xnHg/BqynNRkkEjG5+4tvtc3/N2RstbLktB3lvzPcqVo+JxL
+yY3m3tghS/7RTB1Vyw5NECCjWhimfCGClgHgxdTgjTz8nx7TJx9CVjNdUhDMyXKR
+juRwfBhQqh0ic0Y2Z+z0XgALwOorCiRRWfdUfT1oea3bP3/b75HOasQ+JVJmbwfc
+UeG/Btj6qk714Mu7nSGE9fZ4ij3i2l0bi6t5AzvwLL4qaP1xPMdDfakadQwIe+aA
+lTytA1JRMWK7tqT7MxijRDA5xD+OEXq2ghPyB7yvpspw7UtPcH4IGaJbqeVX9gUl
+X6QOpZaCuvpNtsCXpUJeq8HWy6+MddDWa/bV3GREwAadlr9Gr3Da9Iai+Rdvv0Vo
+awjXZKk5tNUk3u4DCorjMiTMslKulSLn8+cg8L5IPkCISKo3xLaWP9EsomDRdc+F
+k8AuHrbAL3VS6b+xV7YRzz8gTVMquTLZqkreM531q/XMDbg4lRBNfTo3enWSHUbX
+HubUuOlMoQY3lljslZRIj8zqhH54IdJJzFm1u/fLEcN5hEIwI4aD3nYRK9KYXi21
+2eOqSZ+JFaqw7lQytbCvweJ+FlC+gSuEvbIVelIrbHYVIB9YOPnXViiUr0eJsPdj
+f8AVVz1/II9FmDuUKPTE
+=NnlJ
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-6.6.3-RC1-revd1e9bbd333ea55cfa0c75d324424606e857a775b/solr/maven/org/apache/solr/solr-langid/6.6.3/solr-langid-6.6.3.pom.md5
==============================================================================
--- dev/lucene/lucene-solr-6.6.3-RC1-revd1e9bbd333ea55cfa0c75d324424606e857a775b/solr/maven/org/apache/solr/solr-langid/6.6.3/solr-langid-6.6.3.pom.md5 (added)
+++ dev/lucene/lucene-solr-6.6.3-RC1-revd1e9bbd333ea55cfa0c75d324424606e857a775b/solr/maven/org/apache/solr/solr-langid/6.6.3/solr-langid-6.6.3.pom.md5 Fri Mar  2 22:08:13 2018
@@ -0,0 +1 @@
+9d12b2fa102acffa728a58a9189d0e6d
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.6.3-RC1-revd1e9bbd333ea55cfa0c75d324424606e857a775b/solr/maven/org/apache/solr/solr-langid/6.6.3/solr-langid-6.6.3.pom.sha1
==============================================================================
--- dev/lucene/lucene-solr-6.6.3-RC1-revd1e9bbd333ea55cfa0c75d324424606e857a775b/solr/maven/org/apache/solr/solr-langid/6.6.3/solr-langid-6.6.3.pom.sha1 (added)
+++ dev/lucene/lucene-solr-6.6.3-RC1-revd1e9bbd333ea55cfa0c75d324424606e857a775b/solr/maven/org/apache/solr/solr-langid/6.6.3/solr-langid-6.6.3.pom.sha1 Fri Mar  2 22:08:13 2018
@@ -0,0 +1 @@
+4cde3cbbad9442d1fec940ffc621d0160db0d292
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.6.3-RC1-revd1e9bbd333ea55cfa0c75d324424606e857a775b/solr/maven/org/apache/solr/solr-langid/maven-metadata.xml
==============================================================================
--- dev/lucene/lucene-solr-6.6.3-RC1-revd1e9bbd333ea55cfa0c75d324424606e857a775b/solr/maven/org/apache/solr/solr-langid/maven-metadata.xml (added)
+++ dev/lucene/lucene-solr-6.6.3-RC1-revd1e9bbd333ea55cfa0c75d324424606e857a775b/solr/maven/org/apache/solr/solr-langid/maven-metadata.xml Fri Mar  2 22:08:13 2018
@@ -0,0 +1,12 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<metadata>
+  <groupId>org.apache.solr</groupId>
+  <artifactId>solr-langid</artifactId>
+  <version>6.6.3</version>
+  <versioning>
+    <versions>
+      <version>6.6.3</version>
+    </versions>
+    <lastUpdated>20180302201105</lastUpdated>
+  </versioning>
+</metadata>

Added: dev/lucene/lucene-solr-6.6.3-RC1-revd1e9bbd333ea55cfa0c75d324424606e857a775b/solr/maven/org/apache/solr/solr-langid/maven-metadata.xml.md5
==============================================================================
--- dev/lucene/lucene-solr-6.6.3-RC1-revd1e9bbd333ea55cfa0c75d324424606e857a775b/solr/maven/org/apache/solr/solr-langid/maven-metadata.xml.md5 (added)
+++ dev/lucene/lucene-solr-6.6.3-RC1-revd1e9bbd333ea55cfa0c75d324424606e857a775b/solr/maven/org/apache/solr/solr-langid/maven-metadata.xml.md5 Fri Mar  2 22:08:13 2018
@@ -0,0 +1 @@
+97d11b4eb06a795cdb5817365da47c92
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.6.3-RC1-revd1e9bbd333ea55cfa0c75d324424606e857a775b/solr/maven/org/apache/solr/solr-langid/maven-metadata.xml.sha1
==============================================================================
--- dev/lucene/lucene-solr-6.6.3-RC1-revd1e9bbd333ea55cfa0c75d324424606e857a775b/solr/maven/org/apache/solr/solr-langid/maven-metadata.xml.sha1 (added)
+++ dev/lucene/lucene-solr-6.6.3-RC1-revd1e9bbd333ea55cfa0c75d324424606e857a775b/solr/maven/org/apache/solr/solr-langid/maven-metadata.xml.sha1 Fri Mar  2 22:08:13 2018
@@ -0,0 +1 @@
+ad4871667a38ff3c3d80004073533e88735502b0
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.6.3-RC1-revd1e9bbd333ea55cfa0c75d324424606e857a775b/solr/maven/org/apache/solr/solr-ltr/6.6.3/solr-ltr-6.6.3-javadoc.jar
==============================================================================
Binary file - no diff available.

Propchange: dev/lucene/lucene-solr-6.6.3-RC1-revd1e9bbd333ea55cfa0c75d324424606e857a775b/solr/maven/org/apache/solr/solr-ltr/6.6.3/solr-ltr-6.6.3-javadoc.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: dev/lucene/lucene-solr-6.6.3-RC1-revd1e9bbd333ea55cfa0c75d324424606e857a775b/solr/maven/org/apache/solr/solr-ltr/6.6.3/solr-ltr-6.6.3-javadoc.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-6.6.3-RC1-revd1e9bbd333ea55cfa0c75d324424606e857a775b/solr/maven/org/apache/solr/solr-ltr/6.6.3/solr-ltr-6.6.3-javadoc.jar.asc (added)
+++ dev/lucene/lucene-solr-6.6.3-RC1-revd1e9bbd333ea55cfa0c75d324424606e857a775b/solr/maven/org/apache/solr/solr-ltr/6.6.3/solr-ltr-6.6.3-javadoc.jar.asc Fri Mar  2 22:08:13 2018
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v1
+
+iQIcBAABAgAGBQJama/iAAoJEHGGsG4e0Tnn/Q4P/R9h71S+Mir5tGjpg9+9SyMW
++l6Rm/Z1ULGzWu9kVCYvz8WRycxAedIeKbNHiapbJFlhN1OZHfNRjvbJRyBBeU1Q
+UCa4PjQAO3WSpoLroB5ClPcm9U898GEzEVES3MZHx9t9xTyh+3NasOFj6WCEbl6W
+52NlDc6yMDLgZn79nuuKAf83LOLIKD2uYKjbb+1cc8hDN0aNWun9v6wk+mrAkvnw
+Qv+BaBGbabZ3wvOZycY8QFNKlKNsiPK1SZHaOilrXWXzMZ1Mi2Ky9zXsxwynM+GS
+tOpKDMwO2nds2ugIhxcS11bRKrrbC9GRPYWfUQ/eLw7rAM9KEsQ0drakIFoiIsZW
+BzKMCSKECG9yQxCPd1T/fJ8YpPxzw7ahUNY+2ZMv8kU4GwcFotLdy1KW6q/8vdl5
++gkY/qp+gjFYJLpsC2bfdQQoutxomswJ2eNZVPruS8T1HxOtP26UPIyyAVUm4Hi6
+pYUnip24Nret2l/OzXA/ePC+6xPlhIfMtb48nMWjvEkGijQpe37VS/HTTJtJMgmf
+c9BCk/ZiVg4joKQVkWP+k3fzOvbxr5CPbwF9MT8JcJXxETl1cHgX1TlOBTlQQWPa
+JNrOuwm+PY7PaB6mJ3F1Lju5XEEgrYQS9Jr+Ovomjhby2GwkCryeNOvGjXZMVoV+
+KWvBlgWf4XSAJX0AUUkD
+=Pejp
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-6.6.3-RC1-revd1e9bbd333ea55cfa0c75d324424606e857a775b/solr/maven/org/apache/solr/solr-ltr/6.6.3/solr-ltr-6.6.3-javadoc.jar.md5
==============================================================================
--- dev/lucene/lucene-solr-6.6.3-RC1-revd1e9bbd333ea55cfa0c75d324424606e857a775b/solr/maven/org/apache/solr/solr-ltr/6.6.3/solr-ltr-6.6.3-javadoc.jar.md5 (added)
+++ dev/lucene/lucene-solr-6.6.3-RC1-revd1e9bbd333ea55cfa0c75d324424606e857a775b/solr/maven/org/apache/solr/solr-ltr/6.6.3/solr-ltr-6.6.3-javadoc.jar.md5 Fri Mar  2 22:08:13 2018
@@ -0,0 +1 @@
+0cce0c2397f24407433cb71eab4431c0
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.6.3-RC1-revd1e9bbd333ea55cfa0c75d324424606e857a775b/solr/maven/org/apache/solr/solr-ltr/6.6.3/solr-ltr-6.6.3-javadoc.jar.sha1
==============================================================================
--- dev/lucene/lucene-solr-6.6.3-RC1-revd1e9bbd333ea55cfa0c75d324424606e857a775b/solr/maven/org/apache/solr/solr-ltr/6.6.3/solr-ltr-6.6.3-javadoc.jar.sha1 (added)
+++ dev/lucene/lucene-solr-6.6.3-RC1-revd1e9bbd333ea55cfa0c75d324424606e857a775b/solr/maven/org/apache/solr/solr-ltr/6.6.3/solr-ltr-6.6.3-javadoc.jar.sha1 Fri Mar  2 22:08:13 2018
@@ -0,0 +1 @@
+60e8194082f80a0f24c9f043e5bd01d9a182af91
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.6.3-RC1-revd1e9bbd333ea55cfa0c75d324424606e857a775b/solr/maven/org/apache/solr/solr-ltr/6.6.3/solr-ltr-6.6.3-sources.jar
==============================================================================
Binary file - no diff available.

Propchange: dev/lucene/lucene-solr-6.6.3-RC1-revd1e9bbd333ea55cfa0c75d324424606e857a775b/solr/maven/org/apache/solr/solr-ltr/6.6.3/solr-ltr-6.6.3-sources.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: dev/lucene/lucene-solr-6.6.3-RC1-revd1e9bbd333ea55cfa0c75d324424606e857a775b/solr/maven/org/apache/solr/solr-ltr/6.6.3/solr-ltr-6.6.3-sources.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-6.6.3-RC1-revd1e9bbd333ea55cfa0c75d324424606e857a775b/solr/maven/org/apache/solr/solr-ltr/6.6.3/solr-ltr-6.6.3-sources.jar.asc (added)
+++ dev/lucene/lucene-solr-6.6.3-RC1-revd1e9bbd333ea55cfa0c75d324424606e857a775b/solr/maven/org/apache/solr/solr-ltr/6.6.3/solr-ltr-6.6.3-sources.jar.asc Fri Mar  2 22:08:13 2018
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v1
+
+iQIcBAABAgAGBQJama/iAAoJEHGGsG4e0TnnSg4P/0VhV1ixzfQrgx4dpY40DUHY
+VMS8fCCrmWo0mPcVCasTwdTtm6Nhof+0MMCxbecW6bG5lM18KzJABdWLbmY+djQh
+QzlY69DHdBruL03pkUXIqoEipfYSne4q5hUcBxdfsFDoKp6l0MocTo1MMM2cSbOV
+FL+pMgLJCjYURYIQpPllKxGjMcQia5a2oW9YN93gTN4PaVLOgaV8c3aEj9RNkyrS
+eLP+nVWCpkqccQnnLUci1vHeGnABc/hMdLRJOSd0Jy+5enLzj0pND6GHwA1esDr1
+yOTHm4eQOURNFXbFxrED0rZU1gGAG4LRBXL+YlryBWKJEXrjdGtik/BlvhBcIcr0
+O46DntPTTled7XeRygjfodyjzMhOjSzuxKyfkiZG0TXLKHhLq1/wmFlzn8omZ80c
+Ikgu/LzZPMemORaCggyPwkS+HawwKx1WGo92l5zNLThoFTPCqNAUBoxB9waqI6kG
+9Lp/LlLfG4Ri0zT+FGU9vW9zsJ9j0mJRNI7wtsdVs4kCihyXdVS9MIkVuLfq/Sjz
+aVScT0kn9kkGajOWOJ25UZnyO941P2JgpKgS6M+n4oRRd7zOWciv2dhnsh6FVkdJ
+5eDRFiu+cwj26cGxsOWJSzlAVM523WbI59657LPXfQSCQW0imCBMzsX1RxV5dOL2
+kOQ3dfQuv/6Y0vJ0EvVD
+=JvFn
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-6.6.3-RC1-revd1e9bbd333ea55cfa0c75d324424606e857a775b/solr/maven/org/apache/solr/solr-ltr/6.6.3/solr-ltr-6.6.3-sources.jar.md5
==============================================================================
--- dev/lucene/lucene-solr-6.6.3-RC1-revd1e9bbd333ea55cfa0c75d324424606e857a775b/solr/maven/org/apache/solr/solr-ltr/6.6.3/solr-ltr-6.6.3-sources.jar.md5 (added)
+++ dev/lucene/lucene-solr-6.6.3-RC1-revd1e9bbd333ea55cfa0c75d324424606e857a775b/solr/maven/org/apache/solr/solr-ltr/6.6.3/solr-ltr-6.6.3-sources.jar.md5 Fri Mar  2 22:08:13 2018
@@ -0,0 +1 @@
+b31ad5e9f026f45c0cc2811386888ad8
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.6.3-RC1-revd1e9bbd333ea55cfa0c75d324424606e857a775b/solr/maven/org/apache/solr/solr-ltr/6.6.3/solr-ltr-6.6.3-sources.jar.sha1
==============================================================================
--- dev/lucene/lucene-solr-6.6.3-RC1-revd1e9bbd333ea55cfa0c75d324424606e857a775b/solr/maven/org/apache/solr/solr-ltr/6.6.3/solr-ltr-6.6.3-sources.jar.sha1 (added)
+++ dev/lucene/lucene-solr-6.6.3-RC1-revd1e9bbd333ea55cfa0c75d324424606e857a775b/solr/maven/org/apache/solr/solr-ltr/6.6.3/solr-ltr-6.6.3-sources.jar.sha1 Fri Mar  2 22:08:13 2018
@@ -0,0 +1 @@
+64ac6987c90fb4addefe8383ac46f5e2069435c1
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.6.3-RC1-revd1e9bbd333ea55cfa0c75d324424606e857a775b/solr/maven/org/apache/solr/solr-ltr/6.6.3/solr-ltr-6.6.3.jar
==============================================================================
Binary file - no diff available.

Propchange: dev/lucene/lucene-solr-6.6.3-RC1-revd1e9bbd333ea55cfa0c75d324424606e857a775b/solr/maven/org/apache/solr/solr-ltr/6.6.3/solr-ltr-6.6.3.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: dev/lucene/lucene-solr-6.6.3-RC1-revd1e9bbd333ea55cfa0c75d324424606e857a775b/solr/maven/org/apache/solr/solr-ltr/6.6.3/solr-ltr-6.6.3.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-6.6.3-RC1-revd1e9bbd333ea55cfa0c75d324424606e857a775b/solr/maven/org/apache/solr/solr-ltr/6.6.3/solr-ltr-6.6.3.jar.asc (added)
+++ dev/lucene/lucene-solr-6.6.3-RC1-revd1e9bbd333ea55cfa0c75d324424606e857a775b/solr/maven/org/apache/solr/solr-ltr/6.6.3/solr-ltr-6.6.3.jar.asc Fri Mar  2 22:08:13 2018
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v1
+
+iQIcBAABAgAGBQJama/jAAoJEHGGsG4e0TnnimcP/0mqrxvc5a1uv0CAODZEswX2
+ifRPkdehSs/rm0RiADFfsPFhcwlyHHyytq0+bLSHOc8f3MSrQ7uSJ03CHHha6uMs
+tWtKnnpyAN6KYWXeFujR+WAmMadMUVzHE1y8OA+QqFogi3nmmog5KXL3ugaUIRL4
+yUhOoeUuJFDOrTf3rUVfPAkr8JQKMQSN8ope+R3a38n9JvmVhmPgflMV6MeLAEXL
+XUfCAAHLpvYwaJLNav7f85NcGofO5Oxq9k2sj2lhIxGzn93UoDDEo8rv8iaDC8w1
+TEl18iFyZNrlRv+dGNVU2Y8/jsT0jRVVWPRj5Td2I+YKyecyooXMqS85dYFGIbs0
+5jlkN7eklYevlExQ/xW3shxZKCg2pWnx9KngS2QjU+AgBJd8NV6gqRiPRM0kQtO1
+pV/pjeCniKywtmRcOecfJ/hs9D/oL659dkPhkHQG6SdqmUNnwkSC9PsHC0/C61oY
+XD1bgLW0vI32UkPhf/qiEhdQx7diaNddDgAUJSeAdO5mSM1TLfLIq5vF7XMh5HdR
+spWKC5UMNs3DCiPzYEFATE9HDcdNlGZQW57VT5xVhSx2/AqLgAauslLZ5PpJHHWH
+tZJumE+NsWZd0t0iSYJnwd7e45JDxB4xPzCMzJ6mNpriC21kxCeaFW5RihtOZEKm
+zU3vfxYHUKOPedvnSqg8
+=12gx
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-6.6.3-RC1-revd1e9bbd333ea55cfa0c75d324424606e857a775b/solr/maven/org/apache/solr/solr-ltr/6.6.3/solr-ltr-6.6.3.jar.md5
==============================================================================
--- dev/lucene/lucene-solr-6.6.3-RC1-revd1e9bbd333ea55cfa0c75d324424606e857a775b/solr/maven/org/apache/solr/solr-ltr/6.6.3/solr-ltr-6.6.3.jar.md5 (added)
+++ dev/lucene/lucene-solr-6.6.3-RC1-revd1e9bbd333ea55cfa0c75d324424606e857a775b/solr/maven/org/apache/solr/solr-ltr/6.6.3/solr-ltr-6.6.3.jar.md5 Fri Mar  2 22:08:13 2018
@@ -0,0 +1 @@
+121f10147decb433e2f8f874f7e69436
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.6.3-RC1-revd1e9bbd333ea55cfa0c75d324424606e857a775b/solr/maven/org/apache/solr/solr-ltr/6.6.3/solr-ltr-6.6.3.jar.sha1
==============================================================================
--- dev/lucene/lucene-solr-6.6.3-RC1-revd1e9bbd333ea55cfa0c75d324424606e857a775b/solr/maven/org/apache/solr/solr-ltr/6.6.3/solr-ltr-6.6.3.jar.sha1 (added)
+++ dev/lucene/lucene-solr-6.6.3-RC1-revd1e9bbd333ea55cfa0c75d324424606e857a775b/solr/maven/org/apache/solr/solr-ltr/6.6.3/solr-ltr-6.6.3.jar.sha1 Fri Mar  2 22:08:13 2018
@@ -0,0 +1 @@
+7d5aa4d203fd1658333fd833f1c9c52d4ef181c2
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.6.3-RC1-revd1e9bbd333ea55cfa0c75d324424606e857a775b/solr/maven/org/apache/solr/solr-ltr/6.6.3/solr-ltr-6.6.3.pom
==============================================================================
--- dev/lucene/lucene-solr-6.6.3-RC1-revd1e9bbd333ea55cfa0c75d324424606e857a775b/solr/maven/org/apache/solr/solr-ltr/6.6.3/solr-ltr-6.6.3.pom (added)
+++ dev/lucene/lucene-solr-6.6.3-RC1-revd1e9bbd333ea55cfa0c75d324424606e857a775b/solr/maven/org/apache/solr/solr-ltr/6.6.3/solr-ltr-6.6.3.pom Fri Mar  2 22:08:13 2018
@@ -0,0 +1,456 @@
+<!--
+  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.
+-->
+<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">
+  <modelVersion>4.0.0</modelVersion>
+  <parent>
+    <groupId>org.apache.solr</groupId>
+    <artifactId>solr-parent</artifactId>
+    <version>6.6.3</version>
+    <relativePath>../../pom.xml</relativePath>
+  </parent>
+  <groupId>org.apache.solr</groupId>
+  <artifactId>solr-ltr</artifactId>
+  <packaging>jar</packaging>
+  <name>Apache Solr Learning to Rank Package</name>
+  <description>
+    Apache Solr Learning to Rank Package
+  </description>
+  <properties>
+    <module-directory>solr/contrib/ltr</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.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>info.ganglia.gmetric4j</groupId>
+      <artifactId>gmetric4j</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>io.dropwizard.metrics</groupId>
+      <artifactId>metrics-core</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>io.dropwizard.metrics</groupId>
+      <artifactId>metrics-ganglia</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>io.dropwizard.metrics</groupId>
+      <artifactId>metrics-graphite</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>io.dropwizard.metrics</groupId>
+      <artifactId>metrics-jetty9</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>io.dropwizard.metrics</groupId>
+      <artifactId>metrics-jvm</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>net.hydromatic</groupId>
+      <artifactId>eigenbase-properties</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.antlr</groupId>
+      <artifactId>antlr4-runtime</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.calcite</groupId>
+      <artifactId>calcite-core</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.calcite</groupId>
+      <artifactId>calcite-linq4j</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.calcite.avatica</groupId>
+      <artifactId>avatica-core</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.commons</groupId>
+      <artifactId>commons-exec</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.commons</groupId>
+      <artifactId>commons-math3</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.curator</groupId>
+      <artifactId>curator-client</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.curator</groupId>
+      <artifactId>curator-framework</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.curator</groupId>
+      <artifactId>curator-recipes</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.htrace</groupId>
+      <artifactId>htrace-core</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.jackson</groupId>
+      <artifactId>jackson-core-asl</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.codehaus.jackson</groupId>
+      <artifactId>jackson-mapper-asl</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.codehaus.janino</groupId>
+      <artifactId>commons-compiler</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.codehaus.janino</groupId>
+      <artifactId>janino</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.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>jul-to-slf4j</artifactId>
+      <optional>true</optional>
+    </dependency>
+    <dependency>
+      <groupId>org.slf4j</groupId>
+      <artifactId>slf4j-api</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.slf4j</groupId>
+      <artifactId>slf4j-log4j12</artifactId>
+      <optional>true</optional>
+    </dependency>
+    
+        <dependency>
+      <groupId>org.slf4j</groupId>
+      <artifactId>jcl-over-slf4j</artifactId>
+      <scope>test</scope>
+    </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>

Added: dev/lucene/lucene-solr-6.6.3-RC1-revd1e9bbd333ea55cfa0c75d324424606e857a775b/solr/maven/org/apache/solr/solr-ltr/6.6.3/solr-ltr-6.6.3.pom.asc
==============================================================================
--- dev/lucene/lucene-solr-6.6.3-RC1-revd1e9bbd333ea55cfa0c75d324424606e857a775b/solr/maven/org/apache/solr/solr-ltr/6.6.3/solr-ltr-6.6.3.pom.asc (added)
+++ dev/lucene/lucene-solr-6.6.3-RC1-revd1e9bbd333ea55cfa0c75d324424606e857a775b/solr/maven/org/apache/solr/solr-ltr/6.6.3/solr-ltr-6.6.3.pom.asc Fri Mar  2 22:08:13 2018
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v1
+
+iQIcBAABAgAGBQJama/jAAoJEHGGsG4e0TnnUzgQALkEtdQFJItOjVD++KbVpyPI
+eTRg2rbRaDG5/uQWjRJtu8gR/kuvlG8uGK7TJCPfq03hiB2g3xdemsA9Fl1hjG1D
+hN8vUIw3xWZbKd8SEPCCnnB7VQFNgOB/IPPLLU/gXqHZkHT2B93Wa58NsEPuvKrP
+dJWhWbvxs9qTJr+cpyN+b8kdl1xRuzADtw3WoH6p5NskAn7fqfnB0lSan1vwuQGN
+UidEkrqm/ivGMGcv3JrcEbLPiYYdG6h65gbOAKUDPJzPnGa3HS6BMTeyQ7EYubxc
+VBeWnr+tkg/V0B5cWeIKe8M6GL6UcrbCLq2Pkkj5LtbMVlJFSp0n9/pVzUyukL4b
+lBfc+Ne2e4WDJzDAfmUdsWqXxy38n1NeZXwt5Q04jj7hY9KrsYHFqtbb1BMUny7S
+8b0rAXrxuPFDQf5pFCom5ltka+oUHl0QpVewNcFjp98gIj8f2Kqt6x8rtu89x4ie
+8WhnYPcdzlGneGITEuY0BUnwMH6fx2lfknH7gJLa0FP5JhGGeBQBwjmTboqkkgHe
+20HKpRtzRC2wGtnt5LTvNBliW9gAmeXgLhIcbALbDuXgtOFojD4dGlPmHO9V5bS0
++Ix3dFj7U5EYoF912X76gDnDiGir9M6T6oBn21ambla+xzXyEH1gKsAEkb354cgv
+pqC4Z5c5vc+R636WSu4z
+=NCFx
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-6.6.3-RC1-revd1e9bbd333ea55cfa0c75d324424606e857a775b/solr/maven/org/apache/solr/solr-ltr/6.6.3/solr-ltr-6.6.3.pom.md5
==============================================================================
--- dev/lucene/lucene-solr-6.6.3-RC1-revd1e9bbd333ea55cfa0c75d324424606e857a775b/solr/maven/org/apache/solr/solr-ltr/6.6.3/solr-ltr-6.6.3.pom.md5 (added)
+++ dev/lucene/lucene-solr-6.6.3-RC1-revd1e9bbd333ea55cfa0c75d324424606e857a775b/solr/maven/org/apache/solr/solr-ltr/6.6.3/solr-ltr-6.6.3.pom.md5 Fri Mar  2 22:08:13 2018
@@ -0,0 +1 @@
+bb90b5c712e2208a325ff7f881c26f9c
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.6.3-RC1-revd1e9bbd333ea55cfa0c75d324424606e857a775b/solr/maven/org/apache/solr/solr-ltr/6.6.3/solr-ltr-6.6.3.pom.sha1
==============================================================================
--- dev/lucene/lucene-solr-6.6.3-RC1-revd1e9bbd333ea55cfa0c75d324424606e857a775b/solr/maven/org/apache/solr/solr-ltr/6.6.3/solr-ltr-6.6.3.pom.sha1 (added)
+++ dev/lucene/lucene-solr-6.6.3-RC1-revd1e9bbd333ea55cfa0c75d324424606e857a775b/solr/maven/org/apache/solr/solr-ltr/6.6.3/solr-ltr-6.6.3.pom.sha1 Fri Mar  2 22:08:13 2018
@@ -0,0 +1 @@
+33af55752c466379e1d3d660323da52dfc3bf250
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.6.3-RC1-revd1e9bbd333ea55cfa0c75d324424606e857a775b/solr/maven/org/apache/solr/solr-ltr/maven-metadata.xml
==============================================================================
--- dev/lucene/lucene-solr-6.6.3-RC1-revd1e9bbd333ea55cfa0c75d324424606e857a775b/solr/maven/org/apache/solr/solr-ltr/maven-metadata.xml (added)
+++ dev/lucene/lucene-solr-6.6.3-RC1-revd1e9bbd333ea55cfa0c75d324424606e857a775b/solr/maven/org/apache/solr/solr-ltr/maven-metadata.xml Fri Mar  2 22:08:13 2018
@@ -0,0 +1,12 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<metadata>
+  <groupId>org.apache.solr</groupId>
+  <artifactId>solr-ltr</artifactId>
+  <version>6.6.3</version>
+  <versioning>
+    <versions>
+      <version>6.6.3</version>
+    </versions>
+    <lastUpdated>20180302201106</lastUpdated>
+  </versioning>
+</metadata>

Added: dev/lucene/lucene-solr-6.6.3-RC1-revd1e9bbd333ea55cfa0c75d324424606e857a775b/solr/maven/org/apache/solr/solr-ltr/maven-metadata.xml.md5
==============================================================================
--- dev/lucene/lucene-solr-6.6.3-RC1-revd1e9bbd333ea55cfa0c75d324424606e857a775b/solr/maven/org/apache/solr/solr-ltr/maven-metadata.xml.md5 (added)
+++ dev/lucene/lucene-solr-6.6.3-RC1-revd1e9bbd333ea55cfa0c75d324424606e857a775b/solr/maven/org/apache/solr/solr-ltr/maven-metadata.xml.md5 Fri Mar  2 22:08:13 2018
@@ -0,0 +1 @@
+7335a90e24552022646c7624c94aa7e1
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.6.3-RC1-revd1e9bbd333ea55cfa0c75d324424606e857a775b/solr/maven/org/apache/solr/solr-ltr/maven-metadata.xml.sha1
==============================================================================
--- dev/lucene/lucene-solr-6.6.3-RC1-revd1e9bbd333ea55cfa0c75d324424606e857a775b/solr/maven/org/apache/solr/solr-ltr/maven-metadata.xml.sha1 (added)
+++ dev/lucene/lucene-solr-6.6.3-RC1-revd1e9bbd333ea55cfa0c75d324424606e857a775b/solr/maven/org/apache/solr/solr-ltr/maven-metadata.xml.sha1 Fri Mar  2 22:08:13 2018
@@ -0,0 +1 @@
+c8f9c8ef34788ca95a2cd924e25af5c4586f1dcf
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.6.3-RC1-revd1e9bbd333ea55cfa0c75d324424606e857a775b/solr/maven/org/apache/solr/solr-parent/6.6.3/solr-parent-6.6.3.pom
==============================================================================
--- dev/lucene/lucene-solr-6.6.3-RC1-revd1e9bbd333ea55cfa0c75d324424606e857a775b/solr/maven/org/apache/solr/solr-parent/6.6.3/solr-parent-6.6.3.pom (added)
+++ dev/lucene/lucene-solr-6.6.3-RC1-revd1e9bbd333ea55cfa0c75d324424606e857a775b/solr/maven/org/apache/solr/solr-parent/6.6.3/solr-parent-6.6.3.pom Fri Mar  2 22:08:13 2018
@@ -0,0 +1,186 @@
+<!--
+  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.
+-->
+<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">
+  <modelVersion>4.0.0</modelVersion>
+  <parent>
+    <groupId>org.apache.lucene</groupId>
+    <artifactId>lucene-solr-grandparent</artifactId>
+    <version>6.6.3</version>
+    <relativePath>../pom.xml</relativePath>
+  </parent>
+  <groupId>org.apache.solr</groupId>
+  <artifactId>solr-parent</artifactId>
+  <packaging>pom</packaging>
+  <name>Apache Solr parent POM</name>
+  <description>Apache Solr parent POM</description>
+  <modules>
+    <module>core</module>
+    <module>solrj</module>
+    <module>test-framework</module>
+    <module>contrib</module>
+  </modules>
+  <properties>
+    <module-directory>solr</module-directory>
+  </properties>
+  <scm>
+    <connection>scm:git:${vc-anonymous-base-url}</connection>
+    <developerConnection>scm:git:${vc-dev-base-url}</developerConnection>
+    <url>${vc-browse-base-url};f=${module-directory}</url>
+  </scm>
+  <issueManagement>
+    <system>JIRA</system>
+    <url>https://issues.apache.org/jira/browse/SOLR</url>
+  </issueManagement>
+  <mailingLists>
+    <mailingList>
+      <name>Solr User List</name>
+      <subscribe>solr-user-subscribe@lucene.apache.org</subscribe>
+      <unsubscribe>solr-user-unsubscribe@lucene.apache.org</unsubscribe>
+      <archive>
+        http://mail-archives.apache.org/mod_mbox/solr-user/
+      </archive>
+    </mailingList>
+    <mailingList>
+      <name>Java Developer List</name>
+      <subscribe>dev-subscribe@lucene.apache.org</subscribe>
+      <unsubscribe>dev-unsubscribe@lucene.apache.org</unsubscribe>
+      <archive>http://mail-archives.apache.org/mod_mbox/lucene-dev/</archive>
+    </mailingList>
+    <mailingList>
+      <name>Java Commits List</name>
+      <subscribe>commits-subscribe@lucene.apache.org</subscribe>
+      <unsubscribe>commits-unsubscribe@lucene.apache.org</unsubscribe>
+      <archive>
+        http://mail-archives.apache.org/mod_mbox/lucene-java-commits/
+      </archive>
+    </mailingList>
+  </mailingLists>
+  <inceptionYear>2006</inceptionYear>
+  <repositories>
+    <repository>
+      <id>maven-restlet</id>
+      <name>Public online Restlet repository</name>
+      <url>http://maven.restlet.org</url>
+    </repository>
+    <repository>
+      <id>releases.cloudera.com</id>
+      <name>Cloudera Releases</name>
+      <url>https://repository.cloudera.com/artifactory/libs-release</url>
+    </repository>
+  </repositories>
+  <build>
+    <pluginManagement>
+      <plugins>
+        <plugin>
+          <groupId>org.apache.maven.plugins</groupId>
+          <artifactId>maven-javadoc-plugin</artifactId>
+          <configuration>
+            <overview/>
+            <windowtitle>${project.name} ${project.version} API (${now.version})</windowtitle>
+            <doctitle>${project.name} ${project.version} API (${now.version})</doctitle>
+          </configuration>
+        </plugin>
+        <plugin>
+          <groupId>org.apache.maven.plugins</groupId>
+          <artifactId>maven-surefire-plugin</artifactId>
+          <configuration>
+            <systemPropertyVariables>
+              <tests.disableHdfs>${tests.disableHdfs}</tests.disableHdfs>
+            </systemPropertyVariables>
+          </configuration>
+        </plugin>
+      </plugins>
+    </pluginManagement>
+    <plugins>
+      <plugin>
+        <groupId>de.thetaphi</groupId>
+        <artifactId>forbiddenapis</artifactId>
+        <executions>
+          <execution>
+            <id>solr-shared-check-forbidden-apis</id>
+            <configuration>
+              <!-- for simplicty with servlet-api and commons-io checks, disable this: -->
+              <failOnUnresolvableSignatures>false</failOnUnresolvableSignatures>
+              <bundledSignatures>
+                <bundledSignature>jdk-unsafe</bundledSignature>
+                <bundledSignature>jdk-deprecated</bundledSignature>
+                <bundledSignature>jdk-non-portable</bundledSignature>
+                <bundledSignature>jdk-reflection</bundledSignature>
+                <bundledSignature>commons-io-unsafe-2.5</bundledSignature>
+              </bundledSignatures>
+              <signaturesFiles>
+                <signaturesFile>${top-level}/lucene/tools/forbiddenApis/base.txt</signaturesFile>
+                <signaturesFile>${top-level}/lucene/tools/forbiddenApis/servlet-api.txt</signaturesFile>
+                <signaturesFile>${top-level}/lucene/tools/forbiddenApis/solr.txt</signaturesFile>
+              </signaturesFiles>
+            </configuration>
+            <goals>
+              <goal>check</goal>
+            </goals>
+          </execution>
+          <execution>
+            <id>solr-shared-test-check-forbidden-apis</id>
+            <configuration>
+              <!-- for simplicty with servlet-api and commons-io checks, disable this: -->
+              <failOnUnresolvableSignatures>false</failOnUnresolvableSignatures>
+              <bundledSignatures>
+                <bundledSignature>jdk-unsafe</bundledSignature>
+                <bundledSignature>jdk-deprecated</bundledSignature>
+                <bundledSignature>jdk-non-portable</bundledSignature>
+                <bundledSignature>jdk-reflection</bundledSignature>
+                <bundledSignature>commons-io-unsafe-2.5</bundledSignature>
+              </bundledSignatures>
+              <signaturesFiles>
+                <signaturesFile>${top-level}/lucene/tools/forbiddenApis/base.txt</signaturesFile>
+                <signaturesFile>${top-level}/lucene/tools/forbiddenApis/servlet-api.txt</signaturesFile>
+                <signaturesFile>${top-level}/lucene/tools/forbiddenApis/solr.txt</signaturesFile>
+                <signaturesFile>${top-level}/lucene/tools/forbiddenApis/tests.txt</signaturesFile>
+              </signaturesFiles>
+            </configuration>
+            <goals>
+              <goal>testCheck</goal>
+            </goals>
+          </execution>
+        </executions>
+      </plugin>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-surefire-plugin</artifactId>
+        <configuration>
+          <systemPropertyVariables>
+            <java.util.logging.config.file>${top-level}/solr/testlogging.properties</java.util.logging.config.file>
+          </systemPropertyVariables>
+        </configuration>
+      </plugin>
+    </plugins>
+  </build>
+  <profiles>
+    <profile>
+      <id>windows-tests-disableHdfs</id>
+      <activation>
+        <os><family>windows</family></os>
+      </activation>
+      <properties>
+        <tests.disableHdfs>true</tests.disableHdfs>
+      </properties>
+    </profile>
+  </profiles>
+</project>

Added: dev/lucene/lucene-solr-6.6.3-RC1-revd1e9bbd333ea55cfa0c75d324424606e857a775b/solr/maven/org/apache/solr/solr-parent/6.6.3/solr-parent-6.6.3.pom.asc
==============================================================================
--- dev/lucene/lucene-solr-6.6.3-RC1-revd1e9bbd333ea55cfa0c75d324424606e857a775b/solr/maven/org/apache/solr/solr-parent/6.6.3/solr-parent-6.6.3.pom.asc (added)
+++ dev/lucene/lucene-solr-6.6.3-RC1-revd1e9bbd333ea55cfa0c75d324424606e857a775b/solr/maven/org/apache/solr/solr-parent/6.6.3/solr-parent-6.6.3.pom.asc Fri Mar  2 22:08:13 2018
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v1
+
+iQIcBAABAgAGBQJama/jAAoJEHGGsG4e0TnnmjgQAIwc8FRp7r9/h+2uw9pUPzVb
+0s7Ms+6SYmMNSJ/aXEcwvmB+QYgx5F3vrr2WKEiv7Sl4G7c74CmYosQiJE9Xggj4
+Gk/OIkcOLtu9atEV9NBcXHR/LEspGoZfq0XKOq1RAEhyDDAmd/Sd7lidaOExSBp6
+P8vj6RbUp47VbMutzGqMZsbBXmJ6r6Js0Ca910lUQWO+CfoSHI3fioT7d107CLzm
+GpwsyjXLlfngjKtdYJFf2Psv6Yc2IEgctJGDOexIFY+Y1Rn/BEPwiHEIDrw9sVTw
+UXcL0K9Fz5WtkcHBn/v4WJmuiBcGu3/mhfMvEoG8kpm0Xm7wyQr3wI2fhDdiAmIL
+ovvotfMH/g4CWBZQnFw8qgPZ9QBUWnAWMhRU4RzFWtVBlm+QmF374DVcvKVsXEyx
+FCCsV4TD8YznMyS1UeoQdOHBLZySCv+o0bkphkHcY3a07ZfZ5NcDgvx6nBl2VYR9
+Agin+FigkhdKFsK2aMkVTb+clWzk5iT2kQbJ3xilaAYt4rcKC9Ntr1QpxPX/XLue
+DvDMMh/R+rZbqv4KcO7VhH/RtNT8QbfzY8ed09v9rNBczHnIK2Nf57qKga5YNJ6U
+ycEUm3IJV7Y1UJkE1Tp2GZxeV4K0UNwELHJ9nbUFV1rSj7WHfqQhdNGoQoEVfLdv
+1mzQ47s3g/ierNra+kRi
+=rJ5p
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-6.6.3-RC1-revd1e9bbd333ea55cfa0c75d324424606e857a775b/solr/maven/org/apache/solr/solr-parent/6.6.3/solr-parent-6.6.3.pom.md5
==============================================================================
--- dev/lucene/lucene-solr-6.6.3-RC1-revd1e9bbd333ea55cfa0c75d324424606e857a775b/solr/maven/org/apache/solr/solr-parent/6.6.3/solr-parent-6.6.3.pom.md5 (added)
+++ dev/lucene/lucene-solr-6.6.3-RC1-revd1e9bbd333ea55cfa0c75d324424606e857a775b/solr/maven/org/apache/solr/solr-parent/6.6.3/solr-parent-6.6.3.pom.md5 Fri Mar  2 22:08:13 2018
@@ -0,0 +1 @@
+19fe6b6ec720916d6d27f7b166696f77
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.6.3-RC1-revd1e9bbd333ea55cfa0c75d324424606e857a775b/solr/maven/org/apache/solr/solr-parent/6.6.3/solr-parent-6.6.3.pom.sha1
==============================================================================
--- dev/lucene/lucene-solr-6.6.3-RC1-revd1e9bbd333ea55cfa0c75d324424606e857a775b/solr/maven/org/apache/solr/solr-parent/6.6.3/solr-parent-6.6.3.pom.sha1 (added)
+++ dev/lucene/lucene-solr-6.6.3-RC1-revd1e9bbd333ea55cfa0c75d324424606e857a775b/solr/maven/org/apache/solr/solr-parent/6.6.3/solr-parent-6.6.3.pom.sha1 Fri Mar  2 22:08:13 2018
@@ -0,0 +1 @@
+607453b99fb58b91ab41549be3b5521f44823333
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.6.3-RC1-revd1e9bbd333ea55cfa0c75d324424606e857a775b/solr/maven/org/apache/solr/solr-parent/maven-metadata.xml
==============================================================================
--- dev/lucene/lucene-solr-6.6.3-RC1-revd1e9bbd333ea55cfa0c75d324424606e857a775b/solr/maven/org/apache/solr/solr-parent/maven-metadata.xml (added)
+++ dev/lucene/lucene-solr-6.6.3-RC1-revd1e9bbd333ea55cfa0c75d324424606e857a775b/solr/maven/org/apache/solr/solr-parent/maven-metadata.xml Fri Mar  2 22:08:13 2018
@@ -0,0 +1,12 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<metadata>
+  <groupId>org.apache.solr</groupId>
+  <artifactId>solr-parent</artifactId>
+  <version>6.6.3</version>
+  <versioning>
+    <versions>
+      <version>6.6.3</version>
+    </versions>
+    <lastUpdated>20180302201048</lastUpdated>
+  </versioning>
+</metadata>

Added: dev/lucene/lucene-solr-6.6.3-RC1-revd1e9bbd333ea55cfa0c75d324424606e857a775b/solr/maven/org/apache/solr/solr-parent/maven-metadata.xml.md5
==============================================================================
--- dev/lucene/lucene-solr-6.6.3-RC1-revd1e9bbd333ea55cfa0c75d324424606e857a775b/solr/maven/org/apache/solr/solr-parent/maven-metadata.xml.md5 (added)
+++ dev/lucene/lucene-solr-6.6.3-RC1-revd1e9bbd333ea55cfa0c75d324424606e857a775b/solr/maven/org/apache/solr/solr-parent/maven-metadata.xml.md5 Fri Mar  2 22:08:13 2018
@@ -0,0 +1 @@
+6ecdd658cfe0728d6406ef579eedcb0f
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.6.3-RC1-revd1e9bbd333ea55cfa0c75d324424606e857a775b/solr/maven/org/apache/solr/solr-parent/maven-metadata.xml.sha1
==============================================================================
--- dev/lucene/lucene-solr-6.6.3-RC1-revd1e9bbd333ea55cfa0c75d324424606e857a775b/solr/maven/org/apache/solr/solr-parent/maven-metadata.xml.sha1 (added)
+++ dev/lucene/lucene-solr-6.6.3-RC1-revd1e9bbd333ea55cfa0c75d324424606e857a775b/solr/maven/org/apache/solr/solr-parent/maven-metadata.xml.sha1 Fri Mar  2 22:08:13 2018
@@ -0,0 +1 @@
+5b7bc58402c2fd1257889f26ea80c77e57f42523
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.6.3-RC1-revd1e9bbd333ea55cfa0c75d324424606e857a775b/solr/maven/org/apache/solr/solr-solrj/6.6.3/solr-solrj-6.6.3-javadoc.jar
==============================================================================
Binary file - no diff available.

Propchange: dev/lucene/lucene-solr-6.6.3-RC1-revd1e9bbd333ea55cfa0c75d324424606e857a775b/solr/maven/org/apache/solr/solr-solrj/6.6.3/solr-solrj-6.6.3-javadoc.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: dev/lucene/lucene-solr-6.6.3-RC1-revd1e9bbd333ea55cfa0c75d324424606e857a775b/solr/maven/org/apache/solr/solr-solrj/6.6.3/solr-solrj-6.6.3-javadoc.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-6.6.3-RC1-revd1e9bbd333ea55cfa0c75d324424606e857a775b/solr/maven/org/apache/solr/solr-solrj/6.6.3/solr-solrj-6.6.3-javadoc.jar.asc (added)
+++ dev/lucene/lucene-solr-6.6.3-RC1-revd1e9bbd333ea55cfa0c75d324424606e857a775b/solr/maven/org/apache/solr/solr-solrj/6.6.3/solr-solrj-6.6.3-javadoc.jar.asc Fri Mar  2 22:08:13 2018
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v1
+
+iQIcBAABAgAGBQJama/jAAoJEHGGsG4e0TnnC3sP/0uw5cAQXX6WygkGb+UhlAck
+KQuMdu1HaMvfT/0HyhnY6Gdg1W5I49s7T9LTa3T0HDZEJWLJ1MB60RirFY03PZZg
+b2mjjuNtepHDB/r90eWxA/HJfj9gg8SWQNe7I4+NAPtjCmV2ud4gxg78L1eFgnQ6
+ym8oPiA5VvK5y0XflyIWp+HjkJJaRu7kdj9rCDmjOHAe/BiSk0ku1AwWSu42bKjH
+uKUMn2ITGxChXuyXFZivimfS3Bj1S111kzr1ddcj3mN0K9JwsLS2xgqcvw3X1J8E
+2wc1b+WRSfiOACePZ0lFI5jHzyVkG9exRWikHo4b4cx58wS5PPccTruKxncWAPEO
+o9dgpY1B5fbrlmo93pKDOZKpBPZAmtbe2qBISyqRTBrjaZoESLWjNwHXQGWutTPF
+dyHC4LWyOKiiSICbOUjbkMP5PeEwXHNym5fQEle5GbrE9HX57kndlCWsid6nkbD4
+BPR/qbguCKh/W43L16gqweMffqades1yqhWNeK9f19fDDxchMTaQTZNeZ7s7B50n
+7oV1bAU6JpnpWnic6Vhp8Cl5vxqRWp1emVda9otqoK0Yo+O+sSeWreBwwhkr9/fx
+TE75glwPZ2I5ZcxekL9JTZKZReJpQfW8hzIN80CWAGuMf4t+YvleuGcXX0okXtgW
+o4ZFGSG8WeN7tvtRzAjE
+=3Dua
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-6.6.3-RC1-revd1e9bbd333ea55cfa0c75d324424606e857a775b/solr/maven/org/apache/solr/solr-solrj/6.6.3/solr-solrj-6.6.3-javadoc.jar.md5
==============================================================================
--- dev/lucene/lucene-solr-6.6.3-RC1-revd1e9bbd333ea55cfa0c75d324424606e857a775b/solr/maven/org/apache/solr/solr-solrj/6.6.3/solr-solrj-6.6.3-javadoc.jar.md5 (added)
+++ dev/lucene/lucene-solr-6.6.3-RC1-revd1e9bbd333ea55cfa0c75d324424606e857a775b/solr/maven/org/apache/solr/solr-solrj/6.6.3/solr-solrj-6.6.3-javadoc.jar.md5 Fri Mar  2 22:08:13 2018
@@ -0,0 +1 @@
+5942de48a14a652107821be707409605
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.6.3-RC1-revd1e9bbd333ea55cfa0c75d324424606e857a775b/solr/maven/org/apache/solr/solr-solrj/6.6.3/solr-solrj-6.6.3-javadoc.jar.sha1
==============================================================================
--- dev/lucene/lucene-solr-6.6.3-RC1-revd1e9bbd333ea55cfa0c75d324424606e857a775b/solr/maven/org/apache/solr/solr-solrj/6.6.3/solr-solrj-6.6.3-javadoc.jar.sha1 (added)
+++ dev/lucene/lucene-solr-6.6.3-RC1-revd1e9bbd333ea55cfa0c75d324424606e857a775b/solr/maven/org/apache/solr/solr-solrj/6.6.3/solr-solrj-6.6.3-javadoc.jar.sha1 Fri Mar  2 22:08:13 2018
@@ -0,0 +1 @@
+47e159b35d4a6ab2cef0375c82bb4f3f7ae997af
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.6.3-RC1-revd1e9bbd333ea55cfa0c75d324424606e857a775b/solr/maven/org/apache/solr/solr-solrj/6.6.3/solr-solrj-6.6.3-sources.jar
==============================================================================
Binary file - no diff available.

Propchange: dev/lucene/lucene-solr-6.6.3-RC1-revd1e9bbd333ea55cfa0c75d324424606e857a775b/solr/maven/org/apache/solr/solr-solrj/6.6.3/solr-solrj-6.6.3-sources.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: dev/lucene/lucene-solr-6.6.3-RC1-revd1e9bbd333ea55cfa0c75d324424606e857a775b/solr/maven/org/apache/solr/solr-solrj/6.6.3/solr-solrj-6.6.3-sources.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-6.6.3-RC1-revd1e9bbd333ea55cfa0c75d324424606e857a775b/solr/maven/org/apache/solr/solr-solrj/6.6.3/solr-solrj-6.6.3-sources.jar.asc (added)
+++ dev/lucene/lucene-solr-6.6.3-RC1-revd1e9bbd333ea55cfa0c75d324424606e857a775b/solr/maven/org/apache/solr/solr-solrj/6.6.3/solr-solrj-6.6.3-sources.jar.asc Fri Mar  2 22:08:13 2018
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v1
+
+iQIcBAABAgAGBQJama/jAAoJEHGGsG4e0TnnkqAP+gIiAEqmRuIwCa5jlY2EleA9
+0yQGjb/JSuRBT7911quH4L/XnfsKZiSLmCg6eXnB/Gir0Z07AfmhHm9ErxaQOuGv
+QeftW2Mw2BdKaqiAuWM7etG6UU8JKuX9Jm/cSx4D924yaSOlQ7vkMH6M//5wdU9S
+6GGesd8XkeKeL3Vm9whNZqVAuVV0azQzp8L8pfKIeDmfL5k9PSx0DL7pMmUCTq2e
+UHRuElPfOroPpYCM/nIwqA+MAesRK8t12ht+vucLlYPX99DTS4GdjJBF1kXr27wc
+y9IUu/s5x7/FqUAOSvum9/wdiRGuYt7xN+xV2Oav9P3G0CG6MfbO8GpKXu9aN601
+rj9G9R1Gx2MCYBT39otruWAeO31HBsqPP0DFfJo+lWtbQAnjoPG1URNJCoZKWFlj
+q85Cc64kYc0FOnO6v8xcrWm/s8KKg58zL9s1xjGM0OOUwAqcLTBplLb8lPa1YEZ0
+oWSG7+7HZuWqzJNTYb4SF4hQTPWmaXGYF8vcA+9aI/IsFujoOnyCQiRb33jur0xB
+KvkZuChiuuKEL9xIwzT9kcivmD9e8nuyPXHwMGskxb5OJkwqMVMSYfug6HiUcJ6f
+KDGEyTIBK59YmyI6JBUvMTdJ1cXXqMjeXhvt/v2fZsLWSZEHqBjqToPPREa6MGlo
+Ap2FnMe++n4SylTI7mc0
+=bHfn
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-6.6.3-RC1-revd1e9bbd333ea55cfa0c75d324424606e857a775b/solr/maven/org/apache/solr/solr-solrj/6.6.3/solr-solrj-6.6.3-sources.jar.md5
==============================================================================
--- dev/lucene/lucene-solr-6.6.3-RC1-revd1e9bbd333ea55cfa0c75d324424606e857a775b/solr/maven/org/apache/solr/solr-solrj/6.6.3/solr-solrj-6.6.3-sources.jar.md5 (added)
+++ dev/lucene/lucene-solr-6.6.3-RC1-revd1e9bbd333ea55cfa0c75d324424606e857a775b/solr/maven/org/apache/solr/solr-solrj/6.6.3/solr-solrj-6.6.3-sources.jar.md5 Fri Mar  2 22:08:13 2018
@@ -0,0 +1 @@
+074b50c24ce2f3cd0101fc73c5f47244
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.6.3-RC1-revd1e9bbd333ea55cfa0c75d324424606e857a775b/solr/maven/org/apache/solr/solr-solrj/6.6.3/solr-solrj-6.6.3-sources.jar.sha1
==============================================================================
--- dev/lucene/lucene-solr-6.6.3-RC1-revd1e9bbd333ea55cfa0c75d324424606e857a775b/solr/maven/org/apache/solr/solr-solrj/6.6.3/solr-solrj-6.6.3-sources.jar.sha1 (added)
+++ dev/lucene/lucene-solr-6.6.3-RC1-revd1e9bbd333ea55cfa0c75d324424606e857a775b/solr/maven/org/apache/solr/solr-solrj/6.6.3/solr-solrj-6.6.3-sources.jar.sha1 Fri Mar  2 22:08:13 2018
@@ -0,0 +1 @@
+1b7508697947c3c33602eb76b6156f0bfc0d29ff
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.6.3-RC1-revd1e9bbd333ea55cfa0c75d324424606e857a775b/solr/maven/org/apache/solr/solr-solrj/6.6.3/solr-solrj-6.6.3.jar
==============================================================================
Binary file - no diff available.

Propchange: dev/lucene/lucene-solr-6.6.3-RC1-revd1e9bbd333ea55cfa0c75d324424606e857a775b/solr/maven/org/apache/solr/solr-solrj/6.6.3/solr-solrj-6.6.3.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: dev/lucene/lucene-solr-6.6.3-RC1-revd1e9bbd333ea55cfa0c75d324424606e857a775b/solr/maven/org/apache/solr/solr-solrj/6.6.3/solr-solrj-6.6.3.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-6.6.3-RC1-revd1e9bbd333ea55cfa0c75d324424606e857a775b/solr/maven/org/apache/solr/solr-solrj/6.6.3/solr-solrj-6.6.3.jar.asc (added)
+++ dev/lucene/lucene-solr-6.6.3-RC1-revd1e9bbd333ea55cfa0c75d324424606e857a775b/solr/maven/org/apache/solr/solr-solrj/6.6.3/solr-solrj-6.6.3.jar.asc Fri Mar  2 22:08:13 2018
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v1
+
+iQIcBAABAgAGBQJama/jAAoJEHGGsG4e0TnnqWcP/R1zysbNKiLN5MKcsMVNgyj2
+lZdD1TbU6cPxfoKjTV2SxyzRw65h2ERs0m3wu/+s75nycLfARPPgV9Vlt/wgZnbA
+LfTRP/vSmgztnchB5i3I96DM4ilYeENs79+oSDL9ijpuu9q7q5wtuob7eXkpbsr5
+XP1uK8QE5Oo6sWVY73+XVk5izuz/b36bWPbMYyj0nrN5R1K7gWsZbfSptCscF5yU
+kWDjmZNdDzrm5XNg9tKEe55M+DBUOiYOJzWOYLl0FddxNvCwzxN+G3Y3nB81Mfsg
+prMn9By/rcWU5dpcpP5h0zn/6wZkhLgOUpczwWm57cTuJCA7vcXtC04KoReFk56/
+gg83NufwRcomIoq+5hn5HaLd+79URDaH/3ePP3Ls+b3DEzfY7TLz2F8cjmQick/6
++LwNGP4XZUZNkNnohphmsnAJXa4D1+3hEIXgJNX2zg+lyYa16oO/nIPFpksbuKR5
+sJ23plkfSm1BJDo+13l8ZbMeFQYWe5mpj662aGTjMEucYGIhab2Klhz5ers7C4Fu
+2qNYZFFjvOTigdaXHmynxXB49xeGKtFELMxgUDWzVpLtCNA9g83se+IeUuzyvaw5
+4gS63K/qvxLirEE4VIv57yEzOe50vsK4eRN5rP4ee7SNHbIE2WgUR5rpBQff8532
+DDIAbmkD5/zM72EcZKFb
+=OW1z
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-6.6.3-RC1-revd1e9bbd333ea55cfa0c75d324424606e857a775b/solr/maven/org/apache/solr/solr-solrj/6.6.3/solr-solrj-6.6.3.jar.md5
==============================================================================
--- dev/lucene/lucene-solr-6.6.3-RC1-revd1e9bbd333ea55cfa0c75d324424606e857a775b/solr/maven/org/apache/solr/solr-solrj/6.6.3/solr-solrj-6.6.3.jar.md5 (added)
+++ dev/lucene/lucene-solr-6.6.3-RC1-revd1e9bbd333ea55cfa0c75d324424606e857a775b/solr/maven/org/apache/solr/solr-solrj/6.6.3/solr-solrj-6.6.3.jar.md5 Fri Mar  2 22:08:13 2018
@@ -0,0 +1 @@
+f0fcdf2e22581f13c7f832d6ab254510
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.6.3-RC1-revd1e9bbd333ea55cfa0c75d324424606e857a775b/solr/maven/org/apache/solr/solr-solrj/6.6.3/solr-solrj-6.6.3.jar.sha1
==============================================================================
--- dev/lucene/lucene-solr-6.6.3-RC1-revd1e9bbd333ea55cfa0c75d324424606e857a775b/solr/maven/org/apache/solr/solr-solrj/6.6.3/solr-solrj-6.6.3.jar.sha1 (added)
+++ dev/lucene/lucene-solr-6.6.3-RC1-revd1e9bbd333ea55cfa0c75d324424606e857a775b/solr/maven/org/apache/solr/solr-solrj/6.6.3/solr-solrj-6.6.3.jar.sha1 Fri Mar  2 22:08:13 2018
@@ -0,0 +1 @@
+0b4705f720a51406434d5cc7395eca0a6f00f7ee
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.6.3-RC1-revd1e9bbd333ea55cfa0c75d324424606e857a775b/solr/maven/org/apache/solr/solr-solrj/6.6.3/solr-solrj-6.6.3.pom
==============================================================================
--- dev/lucene/lucene-solr-6.6.3-RC1-revd1e9bbd333ea55cfa0c75d324424606e857a775b/solr/maven/org/apache/solr/solr-solrj/6.6.3/solr-solrj-6.6.3.pom (added)
+++ dev/lucene/lucene-solr-6.6.3-RC1-revd1e9bbd333ea55cfa0c75d324424606e857a775b/solr/maven/org/apache/solr/solr-solrj/6.6.3/solr-solrj-6.6.3.pom Fri Mar  2 22:08:13 2018
@@ -0,0 +1,121 @@
+<!--
+  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.
+-->
+<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">
+  <modelVersion>4.0.0</modelVersion>
+  <parent>
+    <groupId>org.apache.solr</groupId>
+    <artifactId>solr-parent</artifactId>
+    <version>6.6.3</version>
+    <relativePath>../../../pom.xml</relativePath>
+  </parent>
+  <groupId>org.apache.solr</groupId>
+  <artifactId>solr-solrj</artifactId>
+  <packaging>jar</packaging>
+  <name>Apache Solr Solrj</name>
+  <description>Apache Solr Solrj</description>
+  <properties>
+    <module-directory>solr/solrj</module-directory>
+    <relative-top-level>../../../../..</relative-top-level>
+    <module-path>${relative-top-level}/${module-directory}/src/java</module-path>
+  </properties>
+  <scm>
+    <connection>scm: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>commons-io</groupId>
+      <artifactId>commons-io</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.commons</groupId>
+      <artifactId>commons-math3</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.httpcomponents</groupId>
+      <artifactId>httpclient</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.httpcomponents</groupId>
+      <artifactId>httpcore</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.httpcomponents</groupId>
+      <artifactId>httpmime</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.zookeeper</groupId>
+      <artifactId>zookeeper</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.codehaus.woodstox</groupId>
+      <artifactId>stax2-api</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.codehaus.woodstox</groupId>
+      <artifactId>woodstox-core-asl</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.noggit</groupId>
+      <artifactId>noggit</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.slf4j</groupId>
+      <artifactId>jcl-over-slf4j</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.slf4j</groupId>
+      <artifactId>slf4j-api</artifactId>
+    </dependency>
+  </dependencies>
+  <build>
+    <sourceDirectory>${module-path}</sourceDirectory>
+    <testSourceDirectory/>
+    <plugins>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-surefire-plugin</artifactId>
+        <configuration>
+          <skip>true</skip> <!-- Tests are run from solr-solrj-tests module -->
+        </configuration>
+      </plugin>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-compiler-plugin</artifactId>
+        <configuration>
+          <skip>true</skip> <!-- This skips test compilation - tests are run from solr-solrj-tests module -->
+        </configuration>
+      </plugin>
+      <plugin>
+        <groupId>de.thetaphi</groupId>
+        <artifactId>forbiddenapis</artifactId>
+        <executions>
+          <execution>
+            <id>solr-shared-test-check-forbidden-apis</id>
+            <phase>none</phase> <!-- Block inherited execution -->
+          </execution>
+        </executions>
+      </plugin>
+    </plugins>
+  </build>
+</project>

Added: dev/lucene/lucene-solr-6.6.3-RC1-revd1e9bbd333ea55cfa0c75d324424606e857a775b/solr/maven/org/apache/solr/solr-solrj/6.6.3/solr-solrj-6.6.3.pom.asc
==============================================================================
--- dev/lucene/lucene-solr-6.6.3-RC1-revd1e9bbd333ea55cfa0c75d324424606e857a775b/solr/maven/org/apache/solr/solr-solrj/6.6.3/solr-solrj-6.6.3.pom.asc (added)
+++ dev/lucene/lucene-solr-6.6.3-RC1-revd1e9bbd333ea55cfa0c75d324424606e857a775b/solr/maven/org/apache/solr/solr-solrj/6.6.3/solr-solrj-6.6.3.pom.asc Fri Mar  2 22:08:13 2018
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v1
+
+iQIcBAABAgAGBQJama/jAAoJEHGGsG4e0Tnn0h8P/A+6nx02u8WxS17jGE+KyteV
+DIjMGpFd5rMtJMD1v7AD4uPt4B4wlxbOutDNIH0BEi3tv6fKuToAC1uPSTvSs6wO
+m/FwAm4oWcIiNXYkNWWDtlQ2OuN2G2An7exQGSbKlZ7M5NGkx3ft54myJ8nVB+Bi
+ZIA2B8RwOsonYeRxlw7kKDTjOqSIGHMTmA2kCpFkliWN8m5+Fkd/ZbMtHTra81fs
+mNeJ+f9DUUCR8JOKNaS8gjdImABJg4HWPBl/mCXcjrGIh9A51smGDR8P/PJ/1oWb
+JAB1rn3xR5lUY3IBUAKThCavEUQ50YnCqiNgAVdIwn1Imq1zin01qV3g5Ukt4r0J
+zltFbi6HiKTZdHmjJN+xPPOLu/LXzd3st/d8R1hQZrtrs7DWIGUinpc8KuPJYjBb
+wFtKVjzejEK521H7CrrftYOtPkqvZTtJXhOMDQZYqC2BW12O2NUksuIOi7lVDGn6
+kNqmFK9sadF+ZDs4rn808q4Sy194v3g01p7PVEXSyxQjpvHuKmAcyAZbeOVRZhW1
+ZhFiUZ1pqRw8FXLPRP6fvVvjmHSYddMBYoqk1KPHgwQhs4/PZZv4OihX0bD0YzwO
+8NW8LP/cmXmTJp4gQxP4TP/dOP6FDx+05eMIvcpc4nErcd0QRfqD1u9Y3AEWt/tI
+Kc7S5i5dnDJ5jxjgC3Ol
+=eEom
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-6.6.3-RC1-revd1e9bbd333ea55cfa0c75d324424606e857a775b/solr/maven/org/apache/solr/solr-solrj/6.6.3/solr-solrj-6.6.3.pom.md5
==============================================================================
--- dev/lucene/lucene-solr-6.6.3-RC1-revd1e9bbd333ea55cfa0c75d324424606e857a775b/solr/maven/org/apache/solr/solr-solrj/6.6.3/solr-solrj-6.6.3.pom.md5 (added)
+++ dev/lucene/lucene-solr-6.6.3-RC1-revd1e9bbd333ea55cfa0c75d324424606e857a775b/solr/maven/org/apache/solr/solr-solrj/6.6.3/solr-solrj-6.6.3.pom.md5 Fri Mar  2 22:08:13 2018
@@ -0,0 +1 @@
+35c82d02b58841f55e2f11ae5200c8e3
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.6.3-RC1-revd1e9bbd333ea55cfa0c75d324424606e857a775b/solr/maven/org/apache/solr/solr-solrj/6.6.3/solr-solrj-6.6.3.pom.sha1
==============================================================================
--- dev/lucene/lucene-solr-6.6.3-RC1-revd1e9bbd333ea55cfa0c75d324424606e857a775b/solr/maven/org/apache/solr/solr-solrj/6.6.3/solr-solrj-6.6.3.pom.sha1 (added)
+++ dev/lucene/lucene-solr-6.6.3-RC1-revd1e9bbd333ea55cfa0c75d324424606e857a775b/solr/maven/org/apache/solr/solr-solrj/6.6.3/solr-solrj-6.6.3.pom.sha1 Fri Mar  2 22:08:13 2018
@@ -0,0 +1 @@
+769e54f3a06202082a3de070cd72e8776f69e286
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.6.3-RC1-revd1e9bbd333ea55cfa0c75d324424606e857a775b/solr/maven/org/apache/solr/solr-solrj/maven-metadata.xml
==============================================================================
--- dev/lucene/lucene-solr-6.6.3-RC1-revd1e9bbd333ea55cfa0c75d324424606e857a775b/solr/maven/org/apache/solr/solr-solrj/maven-metadata.xml (added)
+++ dev/lucene/lucene-solr-6.6.3-RC1-revd1e9bbd333ea55cfa0c75d324424606e857a775b/solr/maven/org/apache/solr/solr-solrj/maven-metadata.xml Fri Mar  2 22:08:13 2018
@@ -0,0 +1,12 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<metadata>
+  <groupId>org.apache.solr</groupId>
+  <artifactId>solr-solrj</artifactId>
+  <version>6.6.3</version>
+  <versioning>
+    <versions>
+      <version>6.6.3</version>
+    </versions>
+    <lastUpdated>20180302201051</lastUpdated>
+  </versioning>
+</metadata>

Added: dev/lucene/lucene-solr-6.6.3-RC1-revd1e9bbd333ea55cfa0c75d324424606e857a775b/solr/maven/org/apache/solr/solr-solrj/maven-metadata.xml.md5
==============================================================================
--- dev/lucene/lucene-solr-6.6.3-RC1-revd1e9bbd333ea55cfa0c75d324424606e857a775b/solr/maven/org/apache/solr/solr-solrj/maven-metadata.xml.md5 (added)
+++ dev/lucene/lucene-solr-6.6.3-RC1-revd1e9bbd333ea55cfa0c75d324424606e857a775b/solr/maven/org/apache/solr/solr-solrj/maven-metadata.xml.md5 Fri Mar  2 22:08:13 2018
@@ -0,0 +1 @@
+e24fbec77412709b4c0418f86ae304f2
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.6.3-RC1-revd1e9bbd333ea55cfa0c75d324424606e857a775b/solr/maven/org/apache/solr/solr-solrj/maven-metadata.xml.sha1
==============================================================================
--- dev/lucene/lucene-solr-6.6.3-RC1-revd1e9bbd333ea55cfa0c75d324424606e857a775b/solr/maven/org/apache/solr/solr-solrj/maven-metadata.xml.sha1 (added)
+++ dev/lucene/lucene-solr-6.6.3-RC1-revd1e9bbd333ea55cfa0c75d324424606e857a775b/solr/maven/org/apache/solr/solr-solrj/maven-metadata.xml.sha1 Fri Mar  2 22:08:13 2018
@@ -0,0 +1 @@
+1955c31cdff76fd0cc03d4a3b24aec155cd0b46d
\ No newline at end of file

Added: dev/lucene/lucene-solr-6.6.3-RC1-revd1e9bbd333ea55cfa0c75d324424606e857a775b/solr/maven/org/apache/solr/solr-test-framework/6.6.3/solr-test-framework-6.6.3-javadoc.jar
==============================================================================
Binary file - no diff available.

Propchange: dev/lucene/lucene-solr-6.6.3-RC1-revd1e9bbd333ea55cfa0c75d324424606e857a775b/solr/maven/org/apache/solr/solr-test-framework/6.6.3/solr-test-framework-6.6.3-javadoc.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream