You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by ji...@apache.org on 2018/01/10 02:18:44 UTC

svn commit: r24107 [18/20] - in /dev/lucene/lucene-solr-7.2.1-RC1-revb2b6438b37073bee1fca40374e85bf91aa457c0b: ./ 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-7.2.1-RC1-revb2b6438b37073bee1fca40374e85bf91aa457c0b/solr/maven/org/apache/solr/solr-langid/7.2.1/solr-langid-7.2.1.pom
==============================================================================
--- dev/lucene/lucene-solr-7.2.1-RC1-revb2b6438b37073bee1fca40374e85bf91aa457c0b/solr/maven/org/apache/solr/solr-langid/7.2.1/solr-langid-7.2.1.pom (added)
+++ dev/lucene/lucene-solr-7.2.1-RC1-revb2b6438b37073bee1fca40374e85bf91aa457c0b/solr/maven/org/apache/solr/solr-langid/7.2.1/solr-langid-7.2.1.pom Wed Jan 10 02:18:42 2018
@@ -0,0 +1,627 @@
+<!--
+  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/xsd/maven-4.0.0.xsd">
+  <modelVersion>4.0.0</modelVersion>
+  <parent>
+    <groupId>org.apache.solr</groupId>
+    <artifactId>solr-parent</artifactId>
+    <version>7.2.1</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-spatial3d</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-lang3</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-7.2.1-RC1-revb2b6438b37073bee1fca40374e85bf91aa457c0b/solr/maven/org/apache/solr/solr-langid/7.2.1/solr-langid-7.2.1.pom.asc
==============================================================================
--- dev/lucene/lucene-solr-7.2.1-RC1-revb2b6438b37073bee1fca40374e85bf91aa457c0b/solr/maven/org/apache/solr/solr-langid/7.2.1/solr-langid-7.2.1.pom.asc (added)
+++ dev/lucene/lucene-solr-7.2.1-RC1-revb2b6438b37073bee1fca40374e85bf91aa457c0b/solr/maven/org/apache/solr/solr-langid/7.2.1/solr-langid-7.2.1.pom.asc Wed Jan 10 02:18:42 2018
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v1
+
+iQIcBAABAgAGBQJaVWTfAAoJEPmME8+loTXYqmQP/3PeWZGK31mrBEM4ytXYxFri
+Zp1YWGqBUWKIBzO9ldx4F4wDnwp4ndknxd4TXF6Y3wL8dgafQF90ne2GEtjJBd5Z
+Q05zOtBGaSy3eDtwxw2Lu+ozBCQWc7/x49Z4kz6HDfrRDHmq80RvLvQTNfhb/ntI
+ZekSyyyjf+XtbAzBXzo6rlBOLZS5GXFWS4X4upSaeV+Sn9mJFRuWoALVcfrsOpg4
+iqqizgDp/1bsQ9dAFzC84r1wWINOUsWZEyKxTip7F8pNoZLybAPgeYxvRPqsCqco
+kAYdy9ZHtJGLJ+F5aYpLDUkO9ovt0MVqOJXQ1Z6kgQdFX+r4Nnn7bwiwHRClw6Cm
+u3kmSQRxp+8UQSnpW+t3N3ZKvdfoMFkgI6Zx1yfrc0NFb1icsVTj9kus8+poHXtz
+EzgU0Ji+IA5rPx16k+85bYoSfvGsIAFCc2s+veiurWQWmEWp7njJNbJseDyTSzku
+1ywG6H2+rnLgYqAHbTtAx76hSbu1gr6H/J08EICod7IG2KuCtFQQv7IUEcCtSjb9
+vzsLDsi8LyhCFd6gRyrTO0vdX42V6Wjp7CWoUEEDv1Es/SniNMeP8UTjZlBYA8YH
+7zhb0JFzOOy0ie7iUbfmNWSZAh/IODeFjZTVTW5WWmhl0UTmwNBSZc046M7vjFqQ
+X2FfZfO6efwnmovivfwP
+=hqxN
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-7.2.1-RC1-revb2b6438b37073bee1fca40374e85bf91aa457c0b/solr/maven/org/apache/solr/solr-langid/7.2.1/solr-langid-7.2.1.pom.md5
==============================================================================
--- dev/lucene/lucene-solr-7.2.1-RC1-revb2b6438b37073bee1fca40374e85bf91aa457c0b/solr/maven/org/apache/solr/solr-langid/7.2.1/solr-langid-7.2.1.pom.md5 (added)
+++ dev/lucene/lucene-solr-7.2.1-RC1-revb2b6438b37073bee1fca40374e85bf91aa457c0b/solr/maven/org/apache/solr/solr-langid/7.2.1/solr-langid-7.2.1.pom.md5 Wed Jan 10 02:18:42 2018
@@ -0,0 +1 @@
+7b5608d80b6214c6f4a72345e93602ae
\ No newline at end of file

Added: dev/lucene/lucene-solr-7.2.1-RC1-revb2b6438b37073bee1fca40374e85bf91aa457c0b/solr/maven/org/apache/solr/solr-langid/7.2.1/solr-langid-7.2.1.pom.sha1
==============================================================================
--- dev/lucene/lucene-solr-7.2.1-RC1-revb2b6438b37073bee1fca40374e85bf91aa457c0b/solr/maven/org/apache/solr/solr-langid/7.2.1/solr-langid-7.2.1.pom.sha1 (added)
+++ dev/lucene/lucene-solr-7.2.1-RC1-revb2b6438b37073bee1fca40374e85bf91aa457c0b/solr/maven/org/apache/solr/solr-langid/7.2.1/solr-langid-7.2.1.pom.sha1 Wed Jan 10 02:18:42 2018
@@ -0,0 +1 @@
+00bd4345dbd0004268cf48ac6c0fd3b07ff8fa42
\ No newline at end of file

Added: dev/lucene/lucene-solr-7.2.1-RC1-revb2b6438b37073bee1fca40374e85bf91aa457c0b/solr/maven/org/apache/solr/solr-langid/maven-metadata.xml
==============================================================================
--- dev/lucene/lucene-solr-7.2.1-RC1-revb2b6438b37073bee1fca40374e85bf91aa457c0b/solr/maven/org/apache/solr/solr-langid/maven-metadata.xml (added)
+++ dev/lucene/lucene-solr-7.2.1-RC1-revb2b6438b37073bee1fca40374e85bf91aa457c0b/solr/maven/org/apache/solr/solr-langid/maven-metadata.xml Wed Jan 10 02:18:42 2018
@@ -0,0 +1,12 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<metadata>
+  <groupId>org.apache.solr</groupId>
+  <artifactId>solr-langid</artifactId>
+  <version>7.2.1</version>
+  <versioning>
+    <versions>
+      <version>7.2.1</version>
+    </versions>
+    <lastUpdated>20180110005638</lastUpdated>
+  </versioning>
+</metadata>

Added: dev/lucene/lucene-solr-7.2.1-RC1-revb2b6438b37073bee1fca40374e85bf91aa457c0b/solr/maven/org/apache/solr/solr-langid/maven-metadata.xml.md5
==============================================================================
--- dev/lucene/lucene-solr-7.2.1-RC1-revb2b6438b37073bee1fca40374e85bf91aa457c0b/solr/maven/org/apache/solr/solr-langid/maven-metadata.xml.md5 (added)
+++ dev/lucene/lucene-solr-7.2.1-RC1-revb2b6438b37073bee1fca40374e85bf91aa457c0b/solr/maven/org/apache/solr/solr-langid/maven-metadata.xml.md5 Wed Jan 10 02:18:42 2018
@@ -0,0 +1 @@
+c8c67f9c723db624f150f1337831596f
\ No newline at end of file

Added: dev/lucene/lucene-solr-7.2.1-RC1-revb2b6438b37073bee1fca40374e85bf91aa457c0b/solr/maven/org/apache/solr/solr-langid/maven-metadata.xml.sha1
==============================================================================
--- dev/lucene/lucene-solr-7.2.1-RC1-revb2b6438b37073bee1fca40374e85bf91aa457c0b/solr/maven/org/apache/solr/solr-langid/maven-metadata.xml.sha1 (added)
+++ dev/lucene/lucene-solr-7.2.1-RC1-revb2b6438b37073bee1fca40374e85bf91aa457c0b/solr/maven/org/apache/solr/solr-langid/maven-metadata.xml.sha1 Wed Jan 10 02:18:42 2018
@@ -0,0 +1 @@
+9d1e83784d8f626f4df480c0e332d7d979f8178e
\ No newline at end of file

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

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

Added: dev/lucene/lucene-solr-7.2.1-RC1-revb2b6438b37073bee1fca40374e85bf91aa457c0b/solr/maven/org/apache/solr/solr-ltr/7.2.1/solr-ltr-7.2.1-javadoc.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-7.2.1-RC1-revb2b6438b37073bee1fca40374e85bf91aa457c0b/solr/maven/org/apache/solr/solr-ltr/7.2.1/solr-ltr-7.2.1-javadoc.jar.asc (added)
+++ dev/lucene/lucene-solr-7.2.1-RC1-revb2b6438b37073bee1fca40374e85bf91aa457c0b/solr/maven/org/apache/solr/solr-ltr/7.2.1/solr-ltr-7.2.1-javadoc.jar.asc Wed Jan 10 02:18:42 2018
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v1
+
+iQIcBAABAgAGBQJaVWTfAAoJEPmME8+loTXYrFgQAKkfcfCNXF9l3/VUEXEwNFnZ
+M6AzNw3n3N6jfgnTJcfGSsf5y5qK7ruXYU9XpnmiunKcVRqSblPQKLLyRWkc8MmC
+8bDEcnTx5Gvl2uGo0CpQ3OFT+Q5oE1SIxOvENIS0Vv5c5LFJ8sj5Ucbz7ZPaA9SN
+1CTxX9GahFnu7RjckQNEV1V+9w0KUHB7gpGolXU76xhudFb0BJ+7xXOqEbGX7ZT5
+Ah4STixmMKzeq+gVY88RDTqn49z76pjZluwHCwSwhJRlMS6PcdzVJv1MDm2g9uo5
+LB2yH4fg/sGc0JlxIQ9/PAHyz5hxipAI8jZWG4P08sIJ76B5CFuzSYSjmPouz1sf
+oLps9Cx6GJnVYZ6WbAgcBgmV1T8eBFP4miqrrkegJ5HdSpKaOnJJMMtmYTcv2D8/
++DvaUM0ZifFfDwYcpdIA5MRPjrGdxpt7s3Jh0mmBnZfawwLIsecyroUaDaaM4UUi
+dI8rRVGCTnmYxTb5YiZsQA5pGB/dtroPac4Xk1tEBeBjAhQACN+iw1tJ5jA80kvi
+eAeQiBVowSQmQn9ohekKT+bBDGFGRtlAy3MqzsFLwEj+WMB247dRbbwukaRpPUXv
+91dzI9zZg/JVHSGEYAM+rT42XLuvoTVVWHEb0uc5vzkTX/k+o91KmhNo3Z5blda+
+jyrIDB3I/Fq+Ud6yMfin
+=vp6R
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-7.2.1-RC1-revb2b6438b37073bee1fca40374e85bf91aa457c0b/solr/maven/org/apache/solr/solr-ltr/7.2.1/solr-ltr-7.2.1-javadoc.jar.md5
==============================================================================
--- dev/lucene/lucene-solr-7.2.1-RC1-revb2b6438b37073bee1fca40374e85bf91aa457c0b/solr/maven/org/apache/solr/solr-ltr/7.2.1/solr-ltr-7.2.1-javadoc.jar.md5 (added)
+++ dev/lucene/lucene-solr-7.2.1-RC1-revb2b6438b37073bee1fca40374e85bf91aa457c0b/solr/maven/org/apache/solr/solr-ltr/7.2.1/solr-ltr-7.2.1-javadoc.jar.md5 Wed Jan 10 02:18:42 2018
@@ -0,0 +1 @@
+828275eb8c352dfd41f494e660611c06
\ No newline at end of file

Added: dev/lucene/lucene-solr-7.2.1-RC1-revb2b6438b37073bee1fca40374e85bf91aa457c0b/solr/maven/org/apache/solr/solr-ltr/7.2.1/solr-ltr-7.2.1-javadoc.jar.sha1
==============================================================================
--- dev/lucene/lucene-solr-7.2.1-RC1-revb2b6438b37073bee1fca40374e85bf91aa457c0b/solr/maven/org/apache/solr/solr-ltr/7.2.1/solr-ltr-7.2.1-javadoc.jar.sha1 (added)
+++ dev/lucene/lucene-solr-7.2.1-RC1-revb2b6438b37073bee1fca40374e85bf91aa457c0b/solr/maven/org/apache/solr/solr-ltr/7.2.1/solr-ltr-7.2.1-javadoc.jar.sha1 Wed Jan 10 02:18:42 2018
@@ -0,0 +1 @@
+aca162e188a813fafe747a11ea18d230c7e8dca4
\ No newline at end of file

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

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

Added: dev/lucene/lucene-solr-7.2.1-RC1-revb2b6438b37073bee1fca40374e85bf91aa457c0b/solr/maven/org/apache/solr/solr-ltr/7.2.1/solr-ltr-7.2.1-sources.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-7.2.1-RC1-revb2b6438b37073bee1fca40374e85bf91aa457c0b/solr/maven/org/apache/solr/solr-ltr/7.2.1/solr-ltr-7.2.1-sources.jar.asc (added)
+++ dev/lucene/lucene-solr-7.2.1-RC1-revb2b6438b37073bee1fca40374e85bf91aa457c0b/solr/maven/org/apache/solr/solr-ltr/7.2.1/solr-ltr-7.2.1-sources.jar.asc Wed Jan 10 02:18:42 2018
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v1
+
+iQIcBAABAgAGBQJaVWTgAAoJEPmME8+loTXYPnQQAJRndXxvKeszouYgdWPpBlk0
+vOnpaX6hIbOnq3MAeM7WP1zm1J1X+t2Dn0f2wKBmxsVxQCpmvgLkcJoddghfvIKd
+Cq1hp7Di8mIBcJu9ul2kgfz/KVoCN75UjZuCg0LU2SpUdeW0BmCMA5M4UHyDGt0Z
+VWOwUGpSGhpqGantfhyKHHNepEVc6DVY+SMDNq2qzLsu6/jt20afnftPtNInhGRa
+1Edaoru559hUNwLVRKR6VLtqkC2yJrjqirQQ4OkwkbwFahFClo6UKvIVFbb2i4EQ
+22THcqiHt8jxt5Bs893sq0p7EQIdNBooLubo9kYwoAw0eC/qYQwQ1EV1vQDcpaY7
+fg+7Kn8N51ABkN2cyuswg5gQ/bnsZn1NIuO8W4nD5+NrC9KdGjbJ+vgB6d8QGRAe
+JUVbfv+Usu9ILXiu4gNaOuD2Pnjfj+lyQso28veqKttdm2Go9crr+my0ITvV7g2l
+lzgLxPXpY6HUCorFbrqfKsGUwhomzgqj6IyV85tOaRaOGCZz+dYPhE1MBMR11KB8
+G/BE+EGFQ4BbVGYiMcto1X5gJdibFXHXGYsimTmvhew4TfFW4Rbhs6NcqB6sEaIv
+9k6/X2SkDPhiPoCUThO7WIMbMF6VPxLjFywMrD8jc1ToygvwaqFKxrbh25yqq//j
+C+gBfmLg103ww9U1+vfb
+=H+KJ
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-7.2.1-RC1-revb2b6438b37073bee1fca40374e85bf91aa457c0b/solr/maven/org/apache/solr/solr-ltr/7.2.1/solr-ltr-7.2.1-sources.jar.md5
==============================================================================
--- dev/lucene/lucene-solr-7.2.1-RC1-revb2b6438b37073bee1fca40374e85bf91aa457c0b/solr/maven/org/apache/solr/solr-ltr/7.2.1/solr-ltr-7.2.1-sources.jar.md5 (added)
+++ dev/lucene/lucene-solr-7.2.1-RC1-revb2b6438b37073bee1fca40374e85bf91aa457c0b/solr/maven/org/apache/solr/solr-ltr/7.2.1/solr-ltr-7.2.1-sources.jar.md5 Wed Jan 10 02:18:42 2018
@@ -0,0 +1 @@
+8e8903cc23e5f2f1e65c9244248830d5
\ No newline at end of file

Added: dev/lucene/lucene-solr-7.2.1-RC1-revb2b6438b37073bee1fca40374e85bf91aa457c0b/solr/maven/org/apache/solr/solr-ltr/7.2.1/solr-ltr-7.2.1-sources.jar.sha1
==============================================================================
--- dev/lucene/lucene-solr-7.2.1-RC1-revb2b6438b37073bee1fca40374e85bf91aa457c0b/solr/maven/org/apache/solr/solr-ltr/7.2.1/solr-ltr-7.2.1-sources.jar.sha1 (added)
+++ dev/lucene/lucene-solr-7.2.1-RC1-revb2b6438b37073bee1fca40374e85bf91aa457c0b/solr/maven/org/apache/solr/solr-ltr/7.2.1/solr-ltr-7.2.1-sources.jar.sha1 Wed Jan 10 02:18:42 2018
@@ -0,0 +1 @@
+6e251b59b0814d9dbefffa31294b9da4239cac4c
\ No newline at end of file

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

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

Added: dev/lucene/lucene-solr-7.2.1-RC1-revb2b6438b37073bee1fca40374e85bf91aa457c0b/solr/maven/org/apache/solr/solr-ltr/7.2.1/solr-ltr-7.2.1.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-7.2.1-RC1-revb2b6438b37073bee1fca40374e85bf91aa457c0b/solr/maven/org/apache/solr/solr-ltr/7.2.1/solr-ltr-7.2.1.jar.asc (added)
+++ dev/lucene/lucene-solr-7.2.1-RC1-revb2b6438b37073bee1fca40374e85bf91aa457c0b/solr/maven/org/apache/solr/solr-ltr/7.2.1/solr-ltr-7.2.1.jar.asc Wed Jan 10 02:18:42 2018
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v1
+
+iQIcBAABAgAGBQJaVWTgAAoJEPmME8+loTXYXG0QALIAwsdDy4D44xhoO6j74sm/
+D0+L0MyjkXynPAl9FhUUgBenP7dh1fz9TJXpU9Nkjdz6aJ4d3o/4nTyHI9js+pAh
+Kj4sejpWRmy6Sm2n9LI26sXDJoitFciobCiBZmVWvnHybzmHTp7pRRBocay67QMk
+YtyPz5ufxcSiHN7hHTR9cMmqyADyk7/197z7lvgBGKvuAUHyeDKyZU1LKg7OehCU
+W5rbVQzgBbQA9Oe9OpV+E3MYd1k3LY0EmY7cSzqfuYfzv3D59DefEqehbxzw0sgd
+mVru4EhT8PsctxxrYXGXkIqciVSlCo0CrqQV+z8FKBeHgol/lEQ41nK0PWqkpceT
+m/kClrQXksjGdAUNbGSBefuw3BAFlqNbyNN96VAyXytqrGKyIMqx2g1H/KfD/v9O
+t2LXr/S7RHtzPtCnCaw5tJvs3kVMjcrY7yofv3gwtIJ3Dlcr/aDormtlVW94tesC
+K/tdepXrh9fsXhupd9oCRgZAGW3wHUTDoLZu7IcyP/StVnDNvHIj5TbjomSuBhEY
+dE28QCOrk4AoeGrbPK46myp4TrJSt/xtqLofzrLYZoBrb1aOCgpbJ7IyGf7whcu1
+A3GdRvvvWa61Gsgumkv/Gozu3dbLsbJiHNdDjq4VsjLuLamz0Z0jU8ewCAiqz0tg
+q3ionQ6Dkd1F33sNWSIC
+=xgm7
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-7.2.1-RC1-revb2b6438b37073bee1fca40374e85bf91aa457c0b/solr/maven/org/apache/solr/solr-ltr/7.2.1/solr-ltr-7.2.1.jar.md5
==============================================================================
--- dev/lucene/lucene-solr-7.2.1-RC1-revb2b6438b37073bee1fca40374e85bf91aa457c0b/solr/maven/org/apache/solr/solr-ltr/7.2.1/solr-ltr-7.2.1.jar.md5 (added)
+++ dev/lucene/lucene-solr-7.2.1-RC1-revb2b6438b37073bee1fca40374e85bf91aa457c0b/solr/maven/org/apache/solr/solr-ltr/7.2.1/solr-ltr-7.2.1.jar.md5 Wed Jan 10 02:18:42 2018
@@ -0,0 +1 @@
+248f7419bd953ea3a0456574b18a74c1
\ No newline at end of file

Added: dev/lucene/lucene-solr-7.2.1-RC1-revb2b6438b37073bee1fca40374e85bf91aa457c0b/solr/maven/org/apache/solr/solr-ltr/7.2.1/solr-ltr-7.2.1.jar.sha1
==============================================================================
--- dev/lucene/lucene-solr-7.2.1-RC1-revb2b6438b37073bee1fca40374e85bf91aa457c0b/solr/maven/org/apache/solr/solr-ltr/7.2.1/solr-ltr-7.2.1.jar.sha1 (added)
+++ dev/lucene/lucene-solr-7.2.1-RC1-revb2b6438b37073bee1fca40374e85bf91aa457c0b/solr/maven/org/apache/solr/solr-ltr/7.2.1/solr-ltr-7.2.1.jar.sha1 Wed Jan 10 02:18:42 2018
@@ -0,0 +1 @@
+855a98e93add239092f3a557fc16e0f072181b02
\ No newline at end of file

Added: dev/lucene/lucene-solr-7.2.1-RC1-revb2b6438b37073bee1fca40374e85bf91aa457c0b/solr/maven/org/apache/solr/solr-ltr/7.2.1/solr-ltr-7.2.1.pom
==============================================================================
--- dev/lucene/lucene-solr-7.2.1-RC1-revb2b6438b37073bee1fca40374e85bf91aa457c0b/solr/maven/org/apache/solr/solr-ltr/7.2.1/solr-ltr-7.2.1.pom (added)
+++ dev/lucene/lucene-solr-7.2.1-RC1-revb2b6438b37073bee1fca40374e85bf91aa457c0b/solr/maven/org/apache/solr/solr-ltr/7.2.1/solr-ltr-7.2.1.pom Wed Jan 10 02:18:42 2018
@@ -0,0 +1,479 @@
+<!--
+  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/xsd/maven-4.0.0.xsd">
+  <modelVersion>4.0.0</modelVersion>
+  <parent>
+    <groupId>org.apache.solr</groupId>
+    <artifactId>solr-parent</artifactId>
+    <version>7.2.1</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-spatial3d</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-lang3</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>net.bytebuddy</groupId>
+      <artifactId>byte-buddy</artifactId>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.mockito</groupId>
+      <artifactId>mockito-core</artifactId>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.objenesis</groupId>
+      <artifactId>objenesis</artifactId>
+      <scope>test</scope>
+    </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-7.2.1-RC1-revb2b6438b37073bee1fca40374e85bf91aa457c0b/solr/maven/org/apache/solr/solr-ltr/7.2.1/solr-ltr-7.2.1.pom.asc
==============================================================================
--- dev/lucene/lucene-solr-7.2.1-RC1-revb2b6438b37073bee1fca40374e85bf91aa457c0b/solr/maven/org/apache/solr/solr-ltr/7.2.1/solr-ltr-7.2.1.pom.asc (added)
+++ dev/lucene/lucene-solr-7.2.1-RC1-revb2b6438b37073bee1fca40374e85bf91aa457c0b/solr/maven/org/apache/solr/solr-ltr/7.2.1/solr-ltr-7.2.1.pom.asc Wed Jan 10 02:18:42 2018
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v1
+
+iQIcBAABAgAGBQJaVWThAAoJEPmME8+loTXYrn4P/iUsMzaWczOGKSpfp+K0wfD4
+5zw5blSxhkTy3wVkX8Yn1Vbvudj/iAZ8Hds9NDazNGuW8HfxWNZUSPEcZOKv0p1V
+cNZeps4WrjbP2Nf3w5G0VYwdQt4y8BBakzR+Z7CG/uz4lhkuHVsDKKBDecfu65KP
+/ntyzwbN/ww9WNowePqeV1khSaSevXcgLqSXw8cKeyh+s3Bf6k2dpmD8MM6DGYY1
+eqsAgVXaZKCqS+5QZvSWZ5H/10uRe+syIWLSNPzOZezKd85th/PFXwmlRjzsjskw
+zyxAMwNBqH7bw1wWE8ZzXXmqNmwAcAf1ojzakRB+FPCG2a69eWBKgWe+XWOhjDnO
+F8rt85ig9J4/2BnvwvQNP/D+ji7phz6FKTw9UNfAo/Jpl6iEHSrprgxo23p+BcVL
+EO3MwceY+VBWoPWNEnHCskD74aiKZ82fht96Zy51si/Jx0mU6ZtTNc7p5RRitjLF
+9MRO4iXgVI0MPFbv0sovj9HVNhs6tHM+CBtU1WyRaD6zlmv+a7rYvbqN8dTyFcG3
+grIYTRW8vjCUt+FdvvnEy8BwKJ26WElYjQWKbfVJ8Q9E+1JuyS6gi33Hmf1Vn4yz
+DG4zUgjvNA1N2f+bsBrHxjnHSPN4yYiESyBrGt/Egqp6LtvM//tibtmvBrM3jb1E
+GxCOqwmRraA4dcWZhVDD
+=QXWB
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-7.2.1-RC1-revb2b6438b37073bee1fca40374e85bf91aa457c0b/solr/maven/org/apache/solr/solr-ltr/7.2.1/solr-ltr-7.2.1.pom.md5
==============================================================================
--- dev/lucene/lucene-solr-7.2.1-RC1-revb2b6438b37073bee1fca40374e85bf91aa457c0b/solr/maven/org/apache/solr/solr-ltr/7.2.1/solr-ltr-7.2.1.pom.md5 (added)
+++ dev/lucene/lucene-solr-7.2.1-RC1-revb2b6438b37073bee1fca40374e85bf91aa457c0b/solr/maven/org/apache/solr/solr-ltr/7.2.1/solr-ltr-7.2.1.pom.md5 Wed Jan 10 02:18:42 2018
@@ -0,0 +1 @@
+6464064cf84f6371d39cd62f2a0e1ef1
\ No newline at end of file

Added: dev/lucene/lucene-solr-7.2.1-RC1-revb2b6438b37073bee1fca40374e85bf91aa457c0b/solr/maven/org/apache/solr/solr-ltr/7.2.1/solr-ltr-7.2.1.pom.sha1
==============================================================================
--- dev/lucene/lucene-solr-7.2.1-RC1-revb2b6438b37073bee1fca40374e85bf91aa457c0b/solr/maven/org/apache/solr/solr-ltr/7.2.1/solr-ltr-7.2.1.pom.sha1 (added)
+++ dev/lucene/lucene-solr-7.2.1-RC1-revb2b6438b37073bee1fca40374e85bf91aa457c0b/solr/maven/org/apache/solr/solr-ltr/7.2.1/solr-ltr-7.2.1.pom.sha1 Wed Jan 10 02:18:42 2018
@@ -0,0 +1 @@
+138b957b718a7b92135b57a8f20fa401b456326f
\ No newline at end of file

Added: dev/lucene/lucene-solr-7.2.1-RC1-revb2b6438b37073bee1fca40374e85bf91aa457c0b/solr/maven/org/apache/solr/solr-ltr/maven-metadata.xml
==============================================================================
--- dev/lucene/lucene-solr-7.2.1-RC1-revb2b6438b37073bee1fca40374e85bf91aa457c0b/solr/maven/org/apache/solr/solr-ltr/maven-metadata.xml (added)
+++ dev/lucene/lucene-solr-7.2.1-RC1-revb2b6438b37073bee1fca40374e85bf91aa457c0b/solr/maven/org/apache/solr/solr-ltr/maven-metadata.xml Wed Jan 10 02:18:42 2018
@@ -0,0 +1,12 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<metadata>
+  <groupId>org.apache.solr</groupId>
+  <artifactId>solr-ltr</artifactId>
+  <version>7.2.1</version>
+  <versioning>
+    <versions>
+      <version>7.2.1</version>
+    </versions>
+    <lastUpdated>20180110005641</lastUpdated>
+  </versioning>
+</metadata>

Added: dev/lucene/lucene-solr-7.2.1-RC1-revb2b6438b37073bee1fca40374e85bf91aa457c0b/solr/maven/org/apache/solr/solr-ltr/maven-metadata.xml.md5
==============================================================================
--- dev/lucene/lucene-solr-7.2.1-RC1-revb2b6438b37073bee1fca40374e85bf91aa457c0b/solr/maven/org/apache/solr/solr-ltr/maven-metadata.xml.md5 (added)
+++ dev/lucene/lucene-solr-7.2.1-RC1-revb2b6438b37073bee1fca40374e85bf91aa457c0b/solr/maven/org/apache/solr/solr-ltr/maven-metadata.xml.md5 Wed Jan 10 02:18:42 2018
@@ -0,0 +1 @@
+dc7cb88720a5ed7fbc4255d275b9b88e
\ No newline at end of file

Added: dev/lucene/lucene-solr-7.2.1-RC1-revb2b6438b37073bee1fca40374e85bf91aa457c0b/solr/maven/org/apache/solr/solr-ltr/maven-metadata.xml.sha1
==============================================================================
--- dev/lucene/lucene-solr-7.2.1-RC1-revb2b6438b37073bee1fca40374e85bf91aa457c0b/solr/maven/org/apache/solr/solr-ltr/maven-metadata.xml.sha1 (added)
+++ dev/lucene/lucene-solr-7.2.1-RC1-revb2b6438b37073bee1fca40374e85bf91aa457c0b/solr/maven/org/apache/solr/solr-ltr/maven-metadata.xml.sha1 Wed Jan 10 02:18:42 2018
@@ -0,0 +1 @@
+f280eabf41a64453b3dee058bf43d7d5672c084c
\ No newline at end of file

Added: dev/lucene/lucene-solr-7.2.1-RC1-revb2b6438b37073bee1fca40374e85bf91aa457c0b/solr/maven/org/apache/solr/solr-parent/7.2.1/solr-parent-7.2.1.pom
==============================================================================
--- dev/lucene/lucene-solr-7.2.1-RC1-revb2b6438b37073bee1fca40374e85bf91aa457c0b/solr/maven/org/apache/solr/solr-parent/7.2.1/solr-parent-7.2.1.pom (added)
+++ dev/lucene/lucene-solr-7.2.1-RC1-revb2b6438b37073bee1fca40374e85bf91aa457c0b/solr/maven/org/apache/solr/solr-parent/7.2.1/solr-parent-7.2.1.pom Wed Jan 10 02:18:42 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/xsd/maven-4.0.0.xsd">
+  <modelVersion>4.0.0</modelVersion>
+  <parent>
+    <groupId>org.apache.lucene</groupId>
+    <artifactId>lucene-solr-grandparent</artifactId>
+    <version>7.2.1</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-7.2.1-RC1-revb2b6438b37073bee1fca40374e85bf91aa457c0b/solr/maven/org/apache/solr/solr-parent/7.2.1/solr-parent-7.2.1.pom.asc
==============================================================================
--- dev/lucene/lucene-solr-7.2.1-RC1-revb2b6438b37073bee1fca40374e85bf91aa457c0b/solr/maven/org/apache/solr/solr-parent/7.2.1/solr-parent-7.2.1.pom.asc (added)
+++ dev/lucene/lucene-solr-7.2.1-RC1-revb2b6438b37073bee1fca40374e85bf91aa457c0b/solr/maven/org/apache/solr/solr-parent/7.2.1/solr-parent-7.2.1.pom.asc Wed Jan 10 02:18:42 2018
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v1
+
+iQIcBAABAgAGBQJaVWThAAoJEPmME8+loTXYqX0P/RnAKO++IS2uyuLyhxoDd47j
+NRZWPgpQbTnMYi1P/C7MesLhGyZsVdGHYQAAb90JmzIcRrV2TT9zZu/aFYQ5XuAl
+S85hdm8whCvED9U1qFedtrgn5VAJpNywPCNvFx+QK4j/5XFr4wL96ViV1u0O9Hg2
+up0SXH0FhInH5bCajPnFCthx16eGnFIMqU/AqMf70YgBBwaD+4G42BA8xgCwFY3c
+qmGQmyZ0SJa5lS6ha9amwnQYpYzlSpdGIaWXWGUF4rjP8+iCSQOfdO4CvmiAdejL
+CkyCzTXqIUmwy5bSexJNa9lTwktpRPQzVDrdVmwaoSRMl/CnQcmixdtzousQHmGW
+SicSggTPro7vV/g5/4EJUNovQABxS4+UK3QgLO7CDjcxzyOvDFnYAegWJMt3aPP6
+4H/lRIhk0mBPT3fcBRLqVkZAXqh2gzyOutH2LAjA6fsPfJ2A6FwQhnE7Al4zn9lK
+LiVaQUDWpDXh9RgaHR0Tlp+506DezNe13VMJiuAjgEBtNmOOdL0eH6hK7rEu7o3D
+yK24HsJk+vKykY3jFNvGyyt4odeH/VHQWra8k1HuWgoIY/Ba6/tK4wEbzZJvs59f
+2rXVlvJaguZ+pXxXVElT+gFBc9QNJS4ErrgYGXO49FefOkBmbHKxohib6prHzpyt
+OcotS/QPfYfMqgoGbbbd
+=oNL3
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-7.2.1-RC1-revb2b6438b37073bee1fca40374e85bf91aa457c0b/solr/maven/org/apache/solr/solr-parent/7.2.1/solr-parent-7.2.1.pom.md5
==============================================================================
--- dev/lucene/lucene-solr-7.2.1-RC1-revb2b6438b37073bee1fca40374e85bf91aa457c0b/solr/maven/org/apache/solr/solr-parent/7.2.1/solr-parent-7.2.1.pom.md5 (added)
+++ dev/lucene/lucene-solr-7.2.1-RC1-revb2b6438b37073bee1fca40374e85bf91aa457c0b/solr/maven/org/apache/solr/solr-parent/7.2.1/solr-parent-7.2.1.pom.md5 Wed Jan 10 02:18:42 2018
@@ -0,0 +1 @@
+89896d8376abe4549c8b4f1ed74423b6
\ No newline at end of file

Added: dev/lucene/lucene-solr-7.2.1-RC1-revb2b6438b37073bee1fca40374e85bf91aa457c0b/solr/maven/org/apache/solr/solr-parent/7.2.1/solr-parent-7.2.1.pom.sha1
==============================================================================
--- dev/lucene/lucene-solr-7.2.1-RC1-revb2b6438b37073bee1fca40374e85bf91aa457c0b/solr/maven/org/apache/solr/solr-parent/7.2.1/solr-parent-7.2.1.pom.sha1 (added)
+++ dev/lucene/lucene-solr-7.2.1-RC1-revb2b6438b37073bee1fca40374e85bf91aa457c0b/solr/maven/org/apache/solr/solr-parent/7.2.1/solr-parent-7.2.1.pom.sha1 Wed Jan 10 02:18:42 2018
@@ -0,0 +1 @@
+bbb59cdfb9c134e9f363c598e8246ea16cbb680f
\ No newline at end of file

Added: dev/lucene/lucene-solr-7.2.1-RC1-revb2b6438b37073bee1fca40374e85bf91aa457c0b/solr/maven/org/apache/solr/solr-parent/maven-metadata.xml
==============================================================================
--- dev/lucene/lucene-solr-7.2.1-RC1-revb2b6438b37073bee1fca40374e85bf91aa457c0b/solr/maven/org/apache/solr/solr-parent/maven-metadata.xml (added)
+++ dev/lucene/lucene-solr-7.2.1-RC1-revb2b6438b37073bee1fca40374e85bf91aa457c0b/solr/maven/org/apache/solr/solr-parent/maven-metadata.xml Wed Jan 10 02:18:42 2018
@@ -0,0 +1,12 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<metadata>
+  <groupId>org.apache.solr</groupId>
+  <artifactId>solr-parent</artifactId>
+  <version>7.2.1</version>
+  <versioning>
+    <versions>
+      <version>7.2.1</version>
+    </versions>
+    <lastUpdated>20180110005613</lastUpdated>
+  </versioning>
+</metadata>

Added: dev/lucene/lucene-solr-7.2.1-RC1-revb2b6438b37073bee1fca40374e85bf91aa457c0b/solr/maven/org/apache/solr/solr-parent/maven-metadata.xml.md5
==============================================================================
--- dev/lucene/lucene-solr-7.2.1-RC1-revb2b6438b37073bee1fca40374e85bf91aa457c0b/solr/maven/org/apache/solr/solr-parent/maven-metadata.xml.md5 (added)
+++ dev/lucene/lucene-solr-7.2.1-RC1-revb2b6438b37073bee1fca40374e85bf91aa457c0b/solr/maven/org/apache/solr/solr-parent/maven-metadata.xml.md5 Wed Jan 10 02:18:42 2018
@@ -0,0 +1 @@
+3d3cc78ecc6011f7a7187104f0c4fe1e
\ No newline at end of file

Added: dev/lucene/lucene-solr-7.2.1-RC1-revb2b6438b37073bee1fca40374e85bf91aa457c0b/solr/maven/org/apache/solr/solr-parent/maven-metadata.xml.sha1
==============================================================================
--- dev/lucene/lucene-solr-7.2.1-RC1-revb2b6438b37073bee1fca40374e85bf91aa457c0b/solr/maven/org/apache/solr/solr-parent/maven-metadata.xml.sha1 (added)
+++ dev/lucene/lucene-solr-7.2.1-RC1-revb2b6438b37073bee1fca40374e85bf91aa457c0b/solr/maven/org/apache/solr/solr-parent/maven-metadata.xml.sha1 Wed Jan 10 02:18:42 2018
@@ -0,0 +1 @@
+d4f4c5725b90151cecaf18d84d835b88499fae73
\ No newline at end of file

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

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

Added: dev/lucene/lucene-solr-7.2.1-RC1-revb2b6438b37073bee1fca40374e85bf91aa457c0b/solr/maven/org/apache/solr/solr-solrj/7.2.1/solr-solrj-7.2.1-javadoc.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-7.2.1-RC1-revb2b6438b37073bee1fca40374e85bf91aa457c0b/solr/maven/org/apache/solr/solr-solrj/7.2.1/solr-solrj-7.2.1-javadoc.jar.asc (added)
+++ dev/lucene/lucene-solr-7.2.1-RC1-revb2b6438b37073bee1fca40374e85bf91aa457c0b/solr/maven/org/apache/solr/solr-solrj/7.2.1/solr-solrj-7.2.1-javadoc.jar.asc Wed Jan 10 02:18:42 2018
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v1
+
+iQIcBAABAgAGBQJaVWTiAAoJEPmME8+loTXYnfQP/Ai/rB9mf2GZAQxoqlRRIs8O
+bl5twmh6Gik39czRzLtOL6uL96fiQJd6XkahS+Mstw8NSUiR49bRJhm9OB8RGJI0
+gITeSvN41MRzEOyvrQyeFvwnDQJVSyiAAg5GO+Lro1XZOQaTB2GBVK5GyhdKB8oB
+zXWyx+vo2Du+HYwunq5rNeSlXIhNJZs2hNTp+ccrP7S7BLnKhOS7kFbwgbSGxj3z
+hbNzUNP42fJBzW/8GyA+cgVjFrfs38ZFsVflRMGn+6trO2i0ASSyPNheunj7VKig
+55uNXdlaja6giUhkcmEFMdzbU0aioUSxFoI2EImZmoqGXvxQEYv87jT2qVpPsH2s
+H81U//ieIfy3raigO+g6TZCSE6ctGpvYQqufk9dIQ0Ev9hue25rFssmegKyySueY
+NKxxNGnyevTSUsr2d98PSyQXQGo9uCpdHoiXRQRc/xt8SCak25tQJfCMR20PpmSL
+ZTH9JZcq5hwuxpsaHCNPKPkHmyIArriGo2OS4S6EE1hWnez/sA7ohB+VABndo7da
+r3G2uFRAhERrocyYMTisXa1Ntt+tz1otJm2YTwiZAyYUL7TH2T1vkIpoj4ImMO5h
+1GYka+Wf7Nd92mzY45NGYke1/hcPuACeMK81XhXhRNy/TQMERJ6itxdetk3EVUU5
+jO1MQeqs6TgqrueUENdz
+=hzTZ
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-7.2.1-RC1-revb2b6438b37073bee1fca40374e85bf91aa457c0b/solr/maven/org/apache/solr/solr-solrj/7.2.1/solr-solrj-7.2.1-javadoc.jar.md5
==============================================================================
--- dev/lucene/lucene-solr-7.2.1-RC1-revb2b6438b37073bee1fca40374e85bf91aa457c0b/solr/maven/org/apache/solr/solr-solrj/7.2.1/solr-solrj-7.2.1-javadoc.jar.md5 (added)
+++ dev/lucene/lucene-solr-7.2.1-RC1-revb2b6438b37073bee1fca40374e85bf91aa457c0b/solr/maven/org/apache/solr/solr-solrj/7.2.1/solr-solrj-7.2.1-javadoc.jar.md5 Wed Jan 10 02:18:42 2018
@@ -0,0 +1 @@
+38fb8e2ce9a740b3b999ac20c8202200
\ No newline at end of file

Added: dev/lucene/lucene-solr-7.2.1-RC1-revb2b6438b37073bee1fca40374e85bf91aa457c0b/solr/maven/org/apache/solr/solr-solrj/7.2.1/solr-solrj-7.2.1-javadoc.jar.sha1
==============================================================================
--- dev/lucene/lucene-solr-7.2.1-RC1-revb2b6438b37073bee1fca40374e85bf91aa457c0b/solr/maven/org/apache/solr/solr-solrj/7.2.1/solr-solrj-7.2.1-javadoc.jar.sha1 (added)
+++ dev/lucene/lucene-solr-7.2.1-RC1-revb2b6438b37073bee1fca40374e85bf91aa457c0b/solr/maven/org/apache/solr/solr-solrj/7.2.1/solr-solrj-7.2.1-javadoc.jar.sha1 Wed Jan 10 02:18:42 2018
@@ -0,0 +1 @@
+6c14830b59b61d07b5b97339682725355662dd88
\ No newline at end of file

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

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

Added: dev/lucene/lucene-solr-7.2.1-RC1-revb2b6438b37073bee1fca40374e85bf91aa457c0b/solr/maven/org/apache/solr/solr-solrj/7.2.1/solr-solrj-7.2.1-sources.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-7.2.1-RC1-revb2b6438b37073bee1fca40374e85bf91aa457c0b/solr/maven/org/apache/solr/solr-solrj/7.2.1/solr-solrj-7.2.1-sources.jar.asc (added)
+++ dev/lucene/lucene-solr-7.2.1-RC1-revb2b6438b37073bee1fca40374e85bf91aa457c0b/solr/maven/org/apache/solr/solr-solrj/7.2.1/solr-solrj-7.2.1-sources.jar.asc Wed Jan 10 02:18:42 2018
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v1
+
+iQIcBAABAgAGBQJaVWTiAAoJEPmME8+loTXYPYAQAMELZNX3q2tgDSQv0iWlISIU
+8WXeCBZg9N1DbNmG/Bg5Jp6AMGbIajqSkMCQYfG2UhHXz9M1MzosC6c5uMr8gvDk
+/qHtCisddy9n/LZGYx37OMhs+DFvdSQxLaKzK5pV78Us9jUfIv4ONeAs3EVDmh7/
+lECtuPW1oamliVDDKsYUKAU7gdcflorOs4ITqQRAWguIYc0gjL6UMJvqNqiK/WRq
+d6b/tsrmL9EtT7hORA5V3nHZ75dy9w0Vb0MElTGKkS8v28GQv2lbjp/3uSA1sxFE
+Vn46P7n1HM6LSJBQ4WoI8FzwxRsrtQxxqYs55qhIygL3HQxOeouuC83pTuMMVmSd
+rWWxXhF18tFDwhhRe7vk5iartNUWjBRA0L4+MjsOx1iIosFDXRcMGfqe/+9vz76l
+H4NAnafqC7DwxAWhBLAWpWttwZBkZ04TbLxks0KS//AeFrxs7p7YZaOiVlR3pRNY
+BNwgvyj7RT6zxBKDjNEXrKCmFvT2vT6BUsMS4Ir6VT/JVJuBJPoFu1tr07pEH0J2
+MRquS93hLJK7tSQ6NYrUEm2Nt2Q/vfn6wB68eRc6+2X6AP9gZm920xNrBDdAX5cm
+AnpdD9M837I/sM+rKXNj5LKSRlOKpBS3lb6X6OstmLSxHFngdEArlLp+RHlPHPPC
+YPKrn58vdJDhAEGkVMAi
+=NEYi
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-7.2.1-RC1-revb2b6438b37073bee1fca40374e85bf91aa457c0b/solr/maven/org/apache/solr/solr-solrj/7.2.1/solr-solrj-7.2.1-sources.jar.md5
==============================================================================
--- dev/lucene/lucene-solr-7.2.1-RC1-revb2b6438b37073bee1fca40374e85bf91aa457c0b/solr/maven/org/apache/solr/solr-solrj/7.2.1/solr-solrj-7.2.1-sources.jar.md5 (added)
+++ dev/lucene/lucene-solr-7.2.1-RC1-revb2b6438b37073bee1fca40374e85bf91aa457c0b/solr/maven/org/apache/solr/solr-solrj/7.2.1/solr-solrj-7.2.1-sources.jar.md5 Wed Jan 10 02:18:42 2018
@@ -0,0 +1 @@
+4c2036f0e9dd06112b2c073706a6676d
\ No newline at end of file

Added: dev/lucene/lucene-solr-7.2.1-RC1-revb2b6438b37073bee1fca40374e85bf91aa457c0b/solr/maven/org/apache/solr/solr-solrj/7.2.1/solr-solrj-7.2.1-sources.jar.sha1
==============================================================================
--- dev/lucene/lucene-solr-7.2.1-RC1-revb2b6438b37073bee1fca40374e85bf91aa457c0b/solr/maven/org/apache/solr/solr-solrj/7.2.1/solr-solrj-7.2.1-sources.jar.sha1 (added)
+++ dev/lucene/lucene-solr-7.2.1-RC1-revb2b6438b37073bee1fca40374e85bf91aa457c0b/solr/maven/org/apache/solr/solr-solrj/7.2.1/solr-solrj-7.2.1-sources.jar.sha1 Wed Jan 10 02:18:42 2018
@@ -0,0 +1 @@
+93272d76addc9c1537e0870fa840bd53da69797f
\ No newline at end of file

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

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

Added: dev/lucene/lucene-solr-7.2.1-RC1-revb2b6438b37073bee1fca40374e85bf91aa457c0b/solr/maven/org/apache/solr/solr-solrj/7.2.1/solr-solrj-7.2.1.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-7.2.1-RC1-revb2b6438b37073bee1fca40374e85bf91aa457c0b/solr/maven/org/apache/solr/solr-solrj/7.2.1/solr-solrj-7.2.1.jar.asc (added)
+++ dev/lucene/lucene-solr-7.2.1-RC1-revb2b6438b37073bee1fca40374e85bf91aa457c0b/solr/maven/org/apache/solr/solr-solrj/7.2.1/solr-solrj-7.2.1.jar.asc Wed Jan 10 02:18:42 2018
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v1
+
+iQIcBAABAgAGBQJaVWTjAAoJEPmME8+loTXY6f4P/A0dPU8mmT8QUyWkkuOYVf4O
+mbDALubApuRtK9Nu8aCrGJMb0ROHyvbxQqwlB/3vpn8QM4Kfc1NmtB90tauHSQcr
+5ozPhZ78gWoOp3gZc5BFmXKEV2cxUh+BpYhFKGt6sGhv83s+rGw/QPGl0KAeNTI9
+aI0QfgMgsD6WcjSffxfZs9z7N4zdZugJevyM4UvCi7/B47cQg8umAtg/pK6V084D
+I6ATP05mzrVAxphN/fngA+0a0SDH1STrVUCXBQ7ZnG1BVrULmY4VtQq/T1h8V+5y
+K3KPq9RoKUlpBIhC61k5ahfHOeC2wDPgZ01euVBIbOjEYY2XroVK2fEgCqtDKfXX
+42u+jEqHNpIOTzCebOcXs0s21J1U/FzNFBdJBck6eKX+X+++yNSRexN8BZcUlQm7
+gv9KVWyKQrRb8qfH+7rFnOdrdmd+wMo4+7p2X1/5J7pnlQvKD5xsSz5qmDme06IC
+yxPuFpol+j0/LBzeYXOapG49GBP1aKnJp8i3tvZl1snyWwELpkJSqIo9jAkumI9d
+DmPYiwOKeaNzI7LOaCUzEenTMZ2j75Zf5mSMH5UiIPSDPOfXEs38zQUkVX6tKzxb
+Mc5AHa/XPL49iTA++9zG7pWtKLReLwKI3OMZmqcsxXSYUnYWL7R9lyLB/b6jnA8r
+wc0esAiwGBo2iOSOquSm
+=3UZG
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-7.2.1-RC1-revb2b6438b37073bee1fca40374e85bf91aa457c0b/solr/maven/org/apache/solr/solr-solrj/7.2.1/solr-solrj-7.2.1.jar.md5
==============================================================================
--- dev/lucene/lucene-solr-7.2.1-RC1-revb2b6438b37073bee1fca40374e85bf91aa457c0b/solr/maven/org/apache/solr/solr-solrj/7.2.1/solr-solrj-7.2.1.jar.md5 (added)
+++ dev/lucene/lucene-solr-7.2.1-RC1-revb2b6438b37073bee1fca40374e85bf91aa457c0b/solr/maven/org/apache/solr/solr-solrj/7.2.1/solr-solrj-7.2.1.jar.md5 Wed Jan 10 02:18:42 2018
@@ -0,0 +1 @@
+7f22db7abaf11bc84fdc85d5b68b0e62
\ No newline at end of file

Added: dev/lucene/lucene-solr-7.2.1-RC1-revb2b6438b37073bee1fca40374e85bf91aa457c0b/solr/maven/org/apache/solr/solr-solrj/7.2.1/solr-solrj-7.2.1.jar.sha1
==============================================================================
--- dev/lucene/lucene-solr-7.2.1-RC1-revb2b6438b37073bee1fca40374e85bf91aa457c0b/solr/maven/org/apache/solr/solr-solrj/7.2.1/solr-solrj-7.2.1.jar.sha1 (added)
+++ dev/lucene/lucene-solr-7.2.1-RC1-revb2b6438b37073bee1fca40374e85bf91aa457c0b/solr/maven/org/apache/solr/solr-solrj/7.2.1/solr-solrj-7.2.1.jar.sha1 Wed Jan 10 02:18:42 2018
@@ -0,0 +1 @@
+8e754bda886f48e4173b0f0d9d09cd8efdbe01cc
\ No newline at end of file

Added: dev/lucene/lucene-solr-7.2.1-RC1-revb2b6438b37073bee1fca40374e85bf91aa457c0b/solr/maven/org/apache/solr/solr-solrj/7.2.1/solr-solrj-7.2.1.pom
==============================================================================
--- dev/lucene/lucene-solr-7.2.1-RC1-revb2b6438b37073bee1fca40374e85bf91aa457c0b/solr/maven/org/apache/solr/solr-solrj/7.2.1/solr-solrj-7.2.1.pom (added)
+++ dev/lucene/lucene-solr-7.2.1-RC1-revb2b6438b37073bee1fca40374e85bf91aa457c0b/solr/maven/org/apache/solr/solr-solrj/7.2.1/solr-solrj-7.2.1.pom Wed Jan 10 02:18:42 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/xsd/maven-4.0.0.xsd">
+  <modelVersion>4.0.0</modelVersion>
+  <parent>
+    <groupId>org.apache.solr</groupId>
+    <artifactId>solr-parent</artifactId>
+    <version>7.2.1</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-7.2.1-RC1-revb2b6438b37073bee1fca40374e85bf91aa457c0b/solr/maven/org/apache/solr/solr-solrj/7.2.1/solr-solrj-7.2.1.pom.asc
==============================================================================
--- dev/lucene/lucene-solr-7.2.1-RC1-revb2b6438b37073bee1fca40374e85bf91aa457c0b/solr/maven/org/apache/solr/solr-solrj/7.2.1/solr-solrj-7.2.1.pom.asc (added)
+++ dev/lucene/lucene-solr-7.2.1-RC1-revb2b6438b37073bee1fca40374e85bf91aa457c0b/solr/maven/org/apache/solr/solr-solrj/7.2.1/solr-solrj-7.2.1.pom.asc Wed Jan 10 02:18:42 2018
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v1
+
+iQIcBAABAgAGBQJaVWTjAAoJEPmME8+loTXYqb0P/3HJrQIZn98HnmngYB+rY+IP
+j7PdhSuMRkmNPM5gXNJTBigka8AcrNoDn20qf3ZfHwNadAM16eQ7JUJMMeoSSUPR
+QNQ8lIJYhR1GUTLqBKW2sYupBNIaSVe9eeBvrTvYfy3QoV0xdb/lG5w2PyN8qgKk
+jZ7aBsKEYG1pKknwxOBHGopxuodv77m3ysEkgh12SrkgYhQKtGE0ljmB4v4KzwDo
+pjgHltiUnaSgj9+YEmOTZ6DfKuO0NU1kwLuH2c64/H38hYvKVZe+AVP6AkEaJs4O
+P91jwdUdpGH1qgdQeSX56DBu1JET/MWIBXkPje8jKWlXwxLBVzpnw9UzWeAm66n/
+ItIu+u9krtkxBYtb3X9fpmK3cmhykS/6YXff2v1G2keh2tWK4tul8yqKgb8dTE0e
+Hvlj/Wh1hJ1YXMhQw1Yiy2aoiT/72pEwAWjBpem6M0F2elHH3xD9k+zKXyDlvQcn
+ai/0jVVfa+becpVqvJrk6YgsRUEe2lyW8uiwAjxBMv1WixmxVsUa4VLL6S5xIrMZ
+tvM8ZgqoFVoDbnlTDI1n1+jN/oF9Qi6kdtfNVcL+tHMPhyv/bfc72W8i4DFfNXwv
+qHAEViu9PXDs+Ts/EYHR9kbCZefgBdXIPqxQpbhKUgpgEpHxDCnbjVHcKQLoizHh
+WsjF0wSUespaakViEODi
+=pZGm
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-7.2.1-RC1-revb2b6438b37073bee1fca40374e85bf91aa457c0b/solr/maven/org/apache/solr/solr-solrj/7.2.1/solr-solrj-7.2.1.pom.md5
==============================================================================
--- dev/lucene/lucene-solr-7.2.1-RC1-revb2b6438b37073bee1fca40374e85bf91aa457c0b/solr/maven/org/apache/solr/solr-solrj/7.2.1/solr-solrj-7.2.1.pom.md5 (added)
+++ dev/lucene/lucene-solr-7.2.1-RC1-revb2b6438b37073bee1fca40374e85bf91aa457c0b/solr/maven/org/apache/solr/solr-solrj/7.2.1/solr-solrj-7.2.1.pom.md5 Wed Jan 10 02:18:42 2018
@@ -0,0 +1 @@
+a0826eaa44c3f0cee444e34f84b88742
\ No newline at end of file

Added: dev/lucene/lucene-solr-7.2.1-RC1-revb2b6438b37073bee1fca40374e85bf91aa457c0b/solr/maven/org/apache/solr/solr-solrj/7.2.1/solr-solrj-7.2.1.pom.sha1
==============================================================================
--- dev/lucene/lucene-solr-7.2.1-RC1-revb2b6438b37073bee1fca40374e85bf91aa457c0b/solr/maven/org/apache/solr/solr-solrj/7.2.1/solr-solrj-7.2.1.pom.sha1 (added)
+++ dev/lucene/lucene-solr-7.2.1-RC1-revb2b6438b37073bee1fca40374e85bf91aa457c0b/solr/maven/org/apache/solr/solr-solrj/7.2.1/solr-solrj-7.2.1.pom.sha1 Wed Jan 10 02:18:42 2018
@@ -0,0 +1 @@
+1f06a64bf38b3db80939557f77f668e43701c5be
\ No newline at end of file

Added: dev/lucene/lucene-solr-7.2.1-RC1-revb2b6438b37073bee1fca40374e85bf91aa457c0b/solr/maven/org/apache/solr/solr-solrj/maven-metadata.xml
==============================================================================
--- dev/lucene/lucene-solr-7.2.1-RC1-revb2b6438b37073bee1fca40374e85bf91aa457c0b/solr/maven/org/apache/solr/solr-solrj/maven-metadata.xml (added)
+++ dev/lucene/lucene-solr-7.2.1-RC1-revb2b6438b37073bee1fca40374e85bf91aa457c0b/solr/maven/org/apache/solr/solr-solrj/maven-metadata.xml Wed Jan 10 02:18:42 2018
@@ -0,0 +1,12 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<metadata>
+  <groupId>org.apache.solr</groupId>
+  <artifactId>solr-solrj</artifactId>
+  <version>7.2.1</version>
+  <versioning>
+    <versions>
+      <version>7.2.1</version>
+    </versions>
+    <lastUpdated>20180110005617</lastUpdated>
+  </versioning>
+</metadata>

Added: dev/lucene/lucene-solr-7.2.1-RC1-revb2b6438b37073bee1fca40374e85bf91aa457c0b/solr/maven/org/apache/solr/solr-solrj/maven-metadata.xml.md5
==============================================================================
--- dev/lucene/lucene-solr-7.2.1-RC1-revb2b6438b37073bee1fca40374e85bf91aa457c0b/solr/maven/org/apache/solr/solr-solrj/maven-metadata.xml.md5 (added)
+++ dev/lucene/lucene-solr-7.2.1-RC1-revb2b6438b37073bee1fca40374e85bf91aa457c0b/solr/maven/org/apache/solr/solr-solrj/maven-metadata.xml.md5 Wed Jan 10 02:18:42 2018
@@ -0,0 +1 @@
+1b1ecefe01973e5d73ee3329be940b62
\ No newline at end of file

Added: dev/lucene/lucene-solr-7.2.1-RC1-revb2b6438b37073bee1fca40374e85bf91aa457c0b/solr/maven/org/apache/solr/solr-solrj/maven-metadata.xml.sha1
==============================================================================
--- dev/lucene/lucene-solr-7.2.1-RC1-revb2b6438b37073bee1fca40374e85bf91aa457c0b/solr/maven/org/apache/solr/solr-solrj/maven-metadata.xml.sha1 (added)
+++ dev/lucene/lucene-solr-7.2.1-RC1-revb2b6438b37073bee1fca40374e85bf91aa457c0b/solr/maven/org/apache/solr/solr-solrj/maven-metadata.xml.sha1 Wed Jan 10 02:18:42 2018
@@ -0,0 +1 @@
+206badf47b677af481c1431555e0ed4ffe317687
\ No newline at end of file