You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by jp...@apache.org on 2017/12/14 23:33:35 UTC

svn commit: r23740 [20/22] - in /dev/lucene/lucene-solr-7.2.0-RC1-revbca54cad5a9f6a80800944fd5bd585b68acde8c8: ./ 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.0-RC1-revbca54cad5a9f6a80800944fd5bd585b68acde8c8/solr/maven/org/apache/solr/solr-langid/7.2.0/solr-langid-7.2.0.pom
==============================================================================
--- dev/lucene/lucene-solr-7.2.0-RC1-revbca54cad5a9f6a80800944fd5bd585b68acde8c8/solr/maven/org/apache/solr/solr-langid/7.2.0/solr-langid-7.2.0.pom (added)
+++ dev/lucene/lucene-solr-7.2.0-RC1-revbca54cad5a9f6a80800944fd5bd585b68acde8c8/solr/maven/org/apache/solr/solr-langid/7.2.0/solr-langid-7.2.0.pom Thu Dec 14 23:33:33 2017
@@ -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.0</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>

Propchange: dev/lucene/lucene-solr-7.2.0-RC1-revbca54cad5a9f6a80800944fd5bd585b68acde8c8/solr/maven/org/apache/solr/solr-langid/7.2.0/solr-langid-7.2.0.pom
------------------------------------------------------------------------------
    svn:eol-style = native

Added: dev/lucene/lucene-solr-7.2.0-RC1-revbca54cad5a9f6a80800944fd5bd585b68acde8c8/solr/maven/org/apache/solr/solr-langid/7.2.0/solr-langid-7.2.0.pom.asc
==============================================================================
--- dev/lucene/lucene-solr-7.2.0-RC1-revbca54cad5a9f6a80800944fd5bd585b68acde8c8/solr/maven/org/apache/solr/solr-langid/7.2.0/solr-langid-7.2.0.pom.asc (added)
+++ dev/lucene/lucene-solr-7.2.0-RC1-revbca54cad5a9f6a80800944fd5bd585b68acde8c8/solr/maven/org/apache/solr/solr-langid/7.2.0/solr-langid-7.2.0.pom.asc Thu Dec 14 23:33:33 2017
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v1
+
+iQIcBAABAgAGBQJaMpatAAoJEAUaD692vGUHveEP/327MZ6CxX6SVIDUoWqhf4PT
+auh4Dw4BSVqymzlBVLzKXLUUFn6Mnr5Q2KYJQj6OrQGYHlJj2o59wRE6T9sKoZ8M
+rpcILnRdsPkF9HZS+YpcMAv59WVc9cAjmyl24IeB8YXi6yEm1SlW4ejuQHcBBPGs
+RBCrlNofI88kHmyfkvnkoa54zf39ZO6mgHMon9UyqSSbWNFR0wnQ/NaE+fenyH4m
+rhcYN4a5jjv3HfMXa426r9vAGm2RwcOzt8AN49n3wA/uW8yhypEmC9S6q37tteN4
+5i+tqqZA5QE/v/92hAraWreo5yvmvPtTDCI6Ipp+oStT3Pj3mWC8LwVtXjSBvbtd
+W0U+Ubw4eAg3Fw9JctXASvUbTwH7GuYuTvmI+jCwhYxkf7GuBqExph+YT1/2CoiY
+MO+wxFwRyw+iO4OMZ1ofqtKvHYnNAmxN4hQuYw/V2g43D0k6jHS57tOBtumKzaDy
+OrRtnBkuxsZbLLx2ZhzYwRvD2AC+Y8SP9I0oR1oba5MsR+5g/wgBWhZOAKcFWZXm
+ovDX6CsvQpUh4Yh6aDgpcGUSiEPtM5waSY4Q/SblMS+Ri8DQ1A8IDrhJcTMxPwgD
+x7gM0cJ3SaL/MtcRotHlQf/a8Vqmyw0u0jmDeK+fttKE2LT98/mW/rQeJuxFHDmd
+gCj5HqhBm5IjG2Mk3LGE
+=UIFq
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-7.2.0-RC1-revbca54cad5a9f6a80800944fd5bd585b68acde8c8/solr/maven/org/apache/solr/solr-langid/7.2.0/solr-langid-7.2.0.pom.md5
==============================================================================
--- dev/lucene/lucene-solr-7.2.0-RC1-revbca54cad5a9f6a80800944fd5bd585b68acde8c8/solr/maven/org/apache/solr/solr-langid/7.2.0/solr-langid-7.2.0.pom.md5 (added)
+++ dev/lucene/lucene-solr-7.2.0-RC1-revbca54cad5a9f6a80800944fd5bd585b68acde8c8/solr/maven/org/apache/solr/solr-langid/7.2.0/solr-langid-7.2.0.pom.md5 Thu Dec 14 23:33:33 2017
@@ -0,0 +1 @@
+7e311717386e384fea4a5ef8393f594b
\ No newline at end of file

Added: dev/lucene/lucene-solr-7.2.0-RC1-revbca54cad5a9f6a80800944fd5bd585b68acde8c8/solr/maven/org/apache/solr/solr-langid/7.2.0/solr-langid-7.2.0.pom.sha1
==============================================================================
--- dev/lucene/lucene-solr-7.2.0-RC1-revbca54cad5a9f6a80800944fd5bd585b68acde8c8/solr/maven/org/apache/solr/solr-langid/7.2.0/solr-langid-7.2.0.pom.sha1 (added)
+++ dev/lucene/lucene-solr-7.2.0-RC1-revbca54cad5a9f6a80800944fd5bd585b68acde8c8/solr/maven/org/apache/solr/solr-langid/7.2.0/solr-langid-7.2.0.pom.sha1 Thu Dec 14 23:33:33 2017
@@ -0,0 +1 @@
+6b83b61d38b024d5e802f649d4a694fee3434249
\ No newline at end of file

Added: dev/lucene/lucene-solr-7.2.0-RC1-revbca54cad5a9f6a80800944fd5bd585b68acde8c8/solr/maven/org/apache/solr/solr-langid/maven-metadata.xml
==============================================================================
--- dev/lucene/lucene-solr-7.2.0-RC1-revbca54cad5a9f6a80800944fd5bd585b68acde8c8/solr/maven/org/apache/solr/solr-langid/maven-metadata.xml (added)
+++ dev/lucene/lucene-solr-7.2.0-RC1-revbca54cad5a9f6a80800944fd5bd585b68acde8c8/solr/maven/org/apache/solr/solr-langid/maven-metadata.xml Thu Dec 14 23:33:33 2017
@@ -0,0 +1,12 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<metadata>
+  <groupId>org.apache.solr</groupId>
+  <artifactId>solr-langid</artifactId>
+  <version>7.2.0</version>
+  <versioning>
+    <versions>
+      <version>7.2.0</version>
+    </versions>
+    <lastUpdated>20171214151950</lastUpdated>
+  </versioning>
+</metadata>

Propchange: dev/lucene/lucene-solr-7.2.0-RC1-revbca54cad5a9f6a80800944fd5bd585b68acde8c8/solr/maven/org/apache/solr/solr-langid/maven-metadata.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Added: dev/lucene/lucene-solr-7.2.0-RC1-revbca54cad5a9f6a80800944fd5bd585b68acde8c8/solr/maven/org/apache/solr/solr-langid/maven-metadata.xml.md5
==============================================================================
--- dev/lucene/lucene-solr-7.2.0-RC1-revbca54cad5a9f6a80800944fd5bd585b68acde8c8/solr/maven/org/apache/solr/solr-langid/maven-metadata.xml.md5 (added)
+++ dev/lucene/lucene-solr-7.2.0-RC1-revbca54cad5a9f6a80800944fd5bd585b68acde8c8/solr/maven/org/apache/solr/solr-langid/maven-metadata.xml.md5 Thu Dec 14 23:33:33 2017
@@ -0,0 +1 @@
+3fa641d36c4c3af17ff138655d38750e
\ No newline at end of file

Added: dev/lucene/lucene-solr-7.2.0-RC1-revbca54cad5a9f6a80800944fd5bd585b68acde8c8/solr/maven/org/apache/solr/solr-langid/maven-metadata.xml.sha1
==============================================================================
--- dev/lucene/lucene-solr-7.2.0-RC1-revbca54cad5a9f6a80800944fd5bd585b68acde8c8/solr/maven/org/apache/solr/solr-langid/maven-metadata.xml.sha1 (added)
+++ dev/lucene/lucene-solr-7.2.0-RC1-revbca54cad5a9f6a80800944fd5bd585b68acde8c8/solr/maven/org/apache/solr/solr-langid/maven-metadata.xml.sha1 Thu Dec 14 23:33:33 2017
@@ -0,0 +1 @@
+f80ae383d1c745075977e8e6333a9f45d8eb370b
\ No newline at end of file

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

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

Added: dev/lucene/lucene-solr-7.2.0-RC1-revbca54cad5a9f6a80800944fd5bd585b68acde8c8/solr/maven/org/apache/solr/solr-ltr/7.2.0/solr-ltr-7.2.0-javadoc.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-7.2.0-RC1-revbca54cad5a9f6a80800944fd5bd585b68acde8c8/solr/maven/org/apache/solr/solr-ltr/7.2.0/solr-ltr-7.2.0-javadoc.jar.asc (added)
+++ dev/lucene/lucene-solr-7.2.0-RC1-revbca54cad5a9f6a80800944fd5bd585b68acde8c8/solr/maven/org/apache/solr/solr-ltr/7.2.0/solr-ltr-7.2.0-javadoc.jar.asc Thu Dec 14 23:33:33 2017
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v1
+
+iQIcBAABAgAGBQJaMpatAAoJEAUaD692vGUHPdUQAIgqT5SDg4b+L/fp0gVM1Rk6
+kkzs5TN17qbt1zqs4gmJZkv+6WUc6P3BDLEBGXmShaXwU/tJwvp3ZjnHV9tsazZr
+XD+oNmtPfXF5qitdws8+YW+UZq+SXL81Zt0VT1EQihqp4Wl9e9ou0OVsDHdFkh90
+hQMzHfn7XEtnpnX3OyfXNZv8CcGIRt94aP4tQoJ8Hd/PNK6xeds42LWJht08FILd
+YQRIk99ksLpz5ub2XXpuGvZcdA9RoWAdjsGkHOwgTYzzhbbwVA9Q7FeBYl/XLoqU
+DMBxT91JHt8w3GboDuqIRocVDMixRaFfnqOXXaOuGoQ5Nmhw+VFThe9i/2qUpvFL
+OMdFJA/ZziUkbEr7j4HjgVnzNChFmQEZsNCQwxxm+hVewHj+H4FLgBiKELIGh5nl
+z2bFVTE9Z95p4kYYHDYCmgjjgclMJvaeYUSFt2m0GlSqQlpVy29NMKtBQuo0pHT9
+kjGuIizh8RJuXwdk/eP7i3oJs+G7g4DnLJl+Oq838lSe/qkvqIa+UT+NLzBLSptr
+GNXyskcqo0Di1+lTlaT49B28kIBzvWvC9NZHACmQDCh2ouydHbGVsWTS8heUADD9
+Dw8I3gsUBZt+khBDdiF7oYQw82Ta2F+nAMB2tNqSXBOYwXoLoEDUTG4lKqtusFvG
+y0rO46YEy1ekNnb2BSy4
+=z2Km
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-7.2.0-RC1-revbca54cad5a9f6a80800944fd5bd585b68acde8c8/solr/maven/org/apache/solr/solr-ltr/7.2.0/solr-ltr-7.2.0-javadoc.jar.md5
==============================================================================
--- dev/lucene/lucene-solr-7.2.0-RC1-revbca54cad5a9f6a80800944fd5bd585b68acde8c8/solr/maven/org/apache/solr/solr-ltr/7.2.0/solr-ltr-7.2.0-javadoc.jar.md5 (added)
+++ dev/lucene/lucene-solr-7.2.0-RC1-revbca54cad5a9f6a80800944fd5bd585b68acde8c8/solr/maven/org/apache/solr/solr-ltr/7.2.0/solr-ltr-7.2.0-javadoc.jar.md5 Thu Dec 14 23:33:33 2017
@@ -0,0 +1 @@
+a7a8240f9647cfa0244ed04f0a541daf
\ No newline at end of file

Added: dev/lucene/lucene-solr-7.2.0-RC1-revbca54cad5a9f6a80800944fd5bd585b68acde8c8/solr/maven/org/apache/solr/solr-ltr/7.2.0/solr-ltr-7.2.0-javadoc.jar.sha1
==============================================================================
--- dev/lucene/lucene-solr-7.2.0-RC1-revbca54cad5a9f6a80800944fd5bd585b68acde8c8/solr/maven/org/apache/solr/solr-ltr/7.2.0/solr-ltr-7.2.0-javadoc.jar.sha1 (added)
+++ dev/lucene/lucene-solr-7.2.0-RC1-revbca54cad5a9f6a80800944fd5bd585b68acde8c8/solr/maven/org/apache/solr/solr-ltr/7.2.0/solr-ltr-7.2.0-javadoc.jar.sha1 Thu Dec 14 23:33:33 2017
@@ -0,0 +1 @@
+eb83fa8c518ed83d4730a3bc618e04661491cc4a
\ No newline at end of file

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

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

Added: dev/lucene/lucene-solr-7.2.0-RC1-revbca54cad5a9f6a80800944fd5bd585b68acde8c8/solr/maven/org/apache/solr/solr-ltr/7.2.0/solr-ltr-7.2.0-sources.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-7.2.0-RC1-revbca54cad5a9f6a80800944fd5bd585b68acde8c8/solr/maven/org/apache/solr/solr-ltr/7.2.0/solr-ltr-7.2.0-sources.jar.asc (added)
+++ dev/lucene/lucene-solr-7.2.0-RC1-revbca54cad5a9f6a80800944fd5bd585b68acde8c8/solr/maven/org/apache/solr/solr-ltr/7.2.0/solr-ltr-7.2.0-sources.jar.asc Thu Dec 14 23:33:33 2017
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v1
+
+iQIcBAABAgAGBQJaMpauAAoJEAUaD692vGUHEcQQAKpD14c/vpmpWwQ+7xF4Z+MK
+BH/xsH69KRG5J7KKvc1c2MoizKoxrBTLev9rfHCSTEIROPamH2P0Q0cvJnbSAP7b
+3J6IJnwZTMHaaxZLvtQfjgBnmZTMPzauE1nTMGSWiEQLNCWcIrxrdYudu7FSBXlG
+tK7Uj9d+KtePkqDV4uA28wl2dJpapsHbIM1sfLSJrpVEizwbBPhDmA/KfGtMc7tX
+ehWXGFaeTuZl9bG8i0bVedqj1m9xkYGbqqaFrW06P0Zv0j/u+ACC2utm3kUatWYg
+EDaCDmW5Xktco5cg+GXXaRLBQzPuMGWfDAd8X7p4viDFunam979C+sz+HKX/X/PM
+DRYlvdzOI6Wv5aOImFR2oKe4hyiwW4HVBMVSo6cpQvpfW9IUvLqKywBNMHysRQzb
+YLePkLtGCQuIyhtqMhAWkQ+jBRCMr4PryKTfm6SGv2obGWRsIzEveuEY2UTM++im
+BBs8DimcaFnXfHe6UyJ0R1DvHhOSfhSnRHkjYxtS2uwcaH1aoO6d0wOUHwxe7F9l
+Dka0NOwIUfOqP0i/kG0FL96/Aah3vvToc7fF/NKMROypSXf1QNRu6y+5hZk7tCw4
+FKkyvaR89T2aFefaeKYRnchNhz/rgrM972mkvB1x3npiVkW1javEvHsnubeBTm7r
+h3jHc/BPkqRfeCAhWdnL
+=blRr
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-7.2.0-RC1-revbca54cad5a9f6a80800944fd5bd585b68acde8c8/solr/maven/org/apache/solr/solr-ltr/7.2.0/solr-ltr-7.2.0-sources.jar.md5
==============================================================================
--- dev/lucene/lucene-solr-7.2.0-RC1-revbca54cad5a9f6a80800944fd5bd585b68acde8c8/solr/maven/org/apache/solr/solr-ltr/7.2.0/solr-ltr-7.2.0-sources.jar.md5 (added)
+++ dev/lucene/lucene-solr-7.2.0-RC1-revbca54cad5a9f6a80800944fd5bd585b68acde8c8/solr/maven/org/apache/solr/solr-ltr/7.2.0/solr-ltr-7.2.0-sources.jar.md5 Thu Dec 14 23:33:33 2017
@@ -0,0 +1 @@
+405439221d2b7220135073ee4723f4f9
\ No newline at end of file

Added: dev/lucene/lucene-solr-7.2.0-RC1-revbca54cad5a9f6a80800944fd5bd585b68acde8c8/solr/maven/org/apache/solr/solr-ltr/7.2.0/solr-ltr-7.2.0-sources.jar.sha1
==============================================================================
--- dev/lucene/lucene-solr-7.2.0-RC1-revbca54cad5a9f6a80800944fd5bd585b68acde8c8/solr/maven/org/apache/solr/solr-ltr/7.2.0/solr-ltr-7.2.0-sources.jar.sha1 (added)
+++ dev/lucene/lucene-solr-7.2.0-RC1-revbca54cad5a9f6a80800944fd5bd585b68acde8c8/solr/maven/org/apache/solr/solr-ltr/7.2.0/solr-ltr-7.2.0-sources.jar.sha1 Thu Dec 14 23:33:33 2017
@@ -0,0 +1 @@
+04ac57fef917f3ba0027026175e9b34697f34182
\ No newline at end of file

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

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

Added: dev/lucene/lucene-solr-7.2.0-RC1-revbca54cad5a9f6a80800944fd5bd585b68acde8c8/solr/maven/org/apache/solr/solr-ltr/7.2.0/solr-ltr-7.2.0.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-7.2.0-RC1-revbca54cad5a9f6a80800944fd5bd585b68acde8c8/solr/maven/org/apache/solr/solr-ltr/7.2.0/solr-ltr-7.2.0.jar.asc (added)
+++ dev/lucene/lucene-solr-7.2.0-RC1-revbca54cad5a9f6a80800944fd5bd585b68acde8c8/solr/maven/org/apache/solr/solr-ltr/7.2.0/solr-ltr-7.2.0.jar.asc Thu Dec 14 23:33:33 2017
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v1
+
+iQIcBAABAgAGBQJaMpauAAoJEAUaD692vGUHsVkQAILco6hD3DWAyIW92PYS2LSM
+PjDVxw0rPRWhrW4M0WlsB1tBGd5JkDqQLRZxN3HDiUE1odcqs9mf3Z1KfDUK/t+L
+Zo8ZcMuMQL61Z33x5IgrIZHfsqsV9uGwuZb/L2o+cBCdzBkMRfr1TAgjCJZp4MR4
+1J+ftNwE4elTWganH0wp+W/eVf9dZY4cBnpKgv+yrJ4Me1cgFH9kKg/FKFteAJOu
+B6KJ3D3hGvZqQV3DushTyzK+mr6VO/t6OJF/G6MwW1t/r1ZEBoTOVy9kVlyZHMof
++83Hh4+jMxC6P2SbTrXJoOF5dhCOPoLTZHKRcjwcC3MFVu++Q51r22YkZpwy32GD
+/iU3D/Lson4mjr5UN2iVyW2uEqsdKCEcEmQg/DTmzCUFKm3P6Md2I7H5SrmSqVNZ
+68n7DNfbjB3FUSK4Vu2jHTeLuGxqJS7jiV8GNx84FWWJdVMf+JxN2980NBBDQjSh
+BN2TXL9FRdLct3uDpVlzAAeiJXEmdlWjJoqkHUMTfKO7c4yTQGLvvz7izBJqz2jg
+IfPUMkyQK2a8h8Jtja1WbaxJcqwitti9+BT5suOOPRZCV/B3dpdGHLwx9zKYxOP+
+yu5Mf9qCgtjAzZrf4JWibun3igjvF0EYDvUNez6ZriX7kEF3i659JKioT2d5oluR
+g3cVRhJyAvRkvlG6ZjHw
+=u9Jq
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-7.2.0-RC1-revbca54cad5a9f6a80800944fd5bd585b68acde8c8/solr/maven/org/apache/solr/solr-ltr/7.2.0/solr-ltr-7.2.0.jar.md5
==============================================================================
--- dev/lucene/lucene-solr-7.2.0-RC1-revbca54cad5a9f6a80800944fd5bd585b68acde8c8/solr/maven/org/apache/solr/solr-ltr/7.2.0/solr-ltr-7.2.0.jar.md5 (added)
+++ dev/lucene/lucene-solr-7.2.0-RC1-revbca54cad5a9f6a80800944fd5bd585b68acde8c8/solr/maven/org/apache/solr/solr-ltr/7.2.0/solr-ltr-7.2.0.jar.md5 Thu Dec 14 23:33:33 2017
@@ -0,0 +1 @@
+5b1c3e8056dca4d9a6bf9c714d834635
\ No newline at end of file

Added: dev/lucene/lucene-solr-7.2.0-RC1-revbca54cad5a9f6a80800944fd5bd585b68acde8c8/solr/maven/org/apache/solr/solr-ltr/7.2.0/solr-ltr-7.2.0.jar.sha1
==============================================================================
--- dev/lucene/lucene-solr-7.2.0-RC1-revbca54cad5a9f6a80800944fd5bd585b68acde8c8/solr/maven/org/apache/solr/solr-ltr/7.2.0/solr-ltr-7.2.0.jar.sha1 (added)
+++ dev/lucene/lucene-solr-7.2.0-RC1-revbca54cad5a9f6a80800944fd5bd585b68acde8c8/solr/maven/org/apache/solr/solr-ltr/7.2.0/solr-ltr-7.2.0.jar.sha1 Thu Dec 14 23:33:33 2017
@@ -0,0 +1 @@
+1d71a4f28e15e89e7366e98023848ac80e1b24d9
\ No newline at end of file

Added: dev/lucene/lucene-solr-7.2.0-RC1-revbca54cad5a9f6a80800944fd5bd585b68acde8c8/solr/maven/org/apache/solr/solr-ltr/7.2.0/solr-ltr-7.2.0.pom
==============================================================================
--- dev/lucene/lucene-solr-7.2.0-RC1-revbca54cad5a9f6a80800944fd5bd585b68acde8c8/solr/maven/org/apache/solr/solr-ltr/7.2.0/solr-ltr-7.2.0.pom (added)
+++ dev/lucene/lucene-solr-7.2.0-RC1-revbca54cad5a9f6a80800944fd5bd585b68acde8c8/solr/maven/org/apache/solr/solr-ltr/7.2.0/solr-ltr-7.2.0.pom Thu Dec 14 23:33:33 2017
@@ -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.0</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>

Propchange: dev/lucene/lucene-solr-7.2.0-RC1-revbca54cad5a9f6a80800944fd5bd585b68acde8c8/solr/maven/org/apache/solr/solr-ltr/7.2.0/solr-ltr-7.2.0.pom
------------------------------------------------------------------------------
    svn:eol-style = native

Added: dev/lucene/lucene-solr-7.2.0-RC1-revbca54cad5a9f6a80800944fd5bd585b68acde8c8/solr/maven/org/apache/solr/solr-ltr/7.2.0/solr-ltr-7.2.0.pom.asc
==============================================================================
--- dev/lucene/lucene-solr-7.2.0-RC1-revbca54cad5a9f6a80800944fd5bd585b68acde8c8/solr/maven/org/apache/solr/solr-ltr/7.2.0/solr-ltr-7.2.0.pom.asc (added)
+++ dev/lucene/lucene-solr-7.2.0-RC1-revbca54cad5a9f6a80800944fd5bd585b68acde8c8/solr/maven/org/apache/solr/solr-ltr/7.2.0/solr-ltr-7.2.0.pom.asc Thu Dec 14 23:33:33 2017
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v1
+
+iQIbBAABAgAGBQJaMpavAAoJEAUaD692vGUHgywP+LsQ82M7G3QU8+ciV6ppW6JP
+oLE2qBo5gTfqWUjdgxn7R/3qQykkfpHM7QW8n+/RwYudO73MJJOMxdg4zP8HzHwe
+hBK38SM+ftzA5jSG9ldsq0qFJOgc3ghD0mFoVsnxQH3WrDoUE9LxcSJdBYmP4YrD
+NoOYAm6zZhGy0ZNnt9X03URMi4sH7dekwX+4/DSLEdCiMOH0mXQ1TneVb1rcZI/y
+NQ/bYP6b2AvLXE5X+gPlm+HquSBjzFg6aEfcKDjmnW2jbjDpTtb8X/LpPfXjWGq4
+eH795nBkFEwSh4DLY5wS2u/OIOwJX1Ld0YflPeK6UlNmp5Tmt301Dwv32ZFEzmlq
+Dif1l+qcAYecWqb6yeCF2tijrKJHptSVQ2ReX7MUPwoRZxPYCVM9gPY+G5h7ILjA
+tZ0WONAJFdzg8Y9HZwPyJZsqihn3+fWKORaqzyFis3+PWEKfMeS+WHmW9jmJCQsr
+izEhVo3wnbXjzrkIrD2pvsAeBZTCFIj29IW7i6uotQzeQAXAaC78r7WjcCIc1ftA
+r+WHayXAHGs0qOPricLRRAvDDt7yneaR74Opt8/pyNpcjJb+XoBBV2/QDaueNfaL
+r23QUsvMhf/Goh6O93Iu1qQRJpe+7XKb7z57Dq9RUfxM6l4VR6X3y+fCoDwskbsW
+sIfPOZ9NXUG6EnlLT+g=
+=Zib+
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-7.2.0-RC1-revbca54cad5a9f6a80800944fd5bd585b68acde8c8/solr/maven/org/apache/solr/solr-ltr/7.2.0/solr-ltr-7.2.0.pom.md5
==============================================================================
--- dev/lucene/lucene-solr-7.2.0-RC1-revbca54cad5a9f6a80800944fd5bd585b68acde8c8/solr/maven/org/apache/solr/solr-ltr/7.2.0/solr-ltr-7.2.0.pom.md5 (added)
+++ dev/lucene/lucene-solr-7.2.0-RC1-revbca54cad5a9f6a80800944fd5bd585b68acde8c8/solr/maven/org/apache/solr/solr-ltr/7.2.0/solr-ltr-7.2.0.pom.md5 Thu Dec 14 23:33:33 2017
@@ -0,0 +1 @@
+562f31411ccee868fca36a51d8d26006
\ No newline at end of file

Added: dev/lucene/lucene-solr-7.2.0-RC1-revbca54cad5a9f6a80800944fd5bd585b68acde8c8/solr/maven/org/apache/solr/solr-ltr/7.2.0/solr-ltr-7.2.0.pom.sha1
==============================================================================
--- dev/lucene/lucene-solr-7.2.0-RC1-revbca54cad5a9f6a80800944fd5bd585b68acde8c8/solr/maven/org/apache/solr/solr-ltr/7.2.0/solr-ltr-7.2.0.pom.sha1 (added)
+++ dev/lucene/lucene-solr-7.2.0-RC1-revbca54cad5a9f6a80800944fd5bd585b68acde8c8/solr/maven/org/apache/solr/solr-ltr/7.2.0/solr-ltr-7.2.0.pom.sha1 Thu Dec 14 23:33:33 2017
@@ -0,0 +1 @@
+960e62bb22589583552eeee0b3ab6080c1841d27
\ No newline at end of file

Added: dev/lucene/lucene-solr-7.2.0-RC1-revbca54cad5a9f6a80800944fd5bd585b68acde8c8/solr/maven/org/apache/solr/solr-ltr/maven-metadata.xml
==============================================================================
--- dev/lucene/lucene-solr-7.2.0-RC1-revbca54cad5a9f6a80800944fd5bd585b68acde8c8/solr/maven/org/apache/solr/solr-ltr/maven-metadata.xml (added)
+++ dev/lucene/lucene-solr-7.2.0-RC1-revbca54cad5a9f6a80800944fd5bd585b68acde8c8/solr/maven/org/apache/solr/solr-ltr/maven-metadata.xml Thu Dec 14 23:33:33 2017
@@ -0,0 +1,12 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<metadata>
+  <groupId>org.apache.solr</groupId>
+  <artifactId>solr-ltr</artifactId>
+  <version>7.2.0</version>
+  <versioning>
+    <versions>
+      <version>7.2.0</version>
+    </versions>
+    <lastUpdated>20171214151952</lastUpdated>
+  </versioning>
+</metadata>

Propchange: dev/lucene/lucene-solr-7.2.0-RC1-revbca54cad5a9f6a80800944fd5bd585b68acde8c8/solr/maven/org/apache/solr/solr-ltr/maven-metadata.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Added: dev/lucene/lucene-solr-7.2.0-RC1-revbca54cad5a9f6a80800944fd5bd585b68acde8c8/solr/maven/org/apache/solr/solr-ltr/maven-metadata.xml.md5
==============================================================================
--- dev/lucene/lucene-solr-7.2.0-RC1-revbca54cad5a9f6a80800944fd5bd585b68acde8c8/solr/maven/org/apache/solr/solr-ltr/maven-metadata.xml.md5 (added)
+++ dev/lucene/lucene-solr-7.2.0-RC1-revbca54cad5a9f6a80800944fd5bd585b68acde8c8/solr/maven/org/apache/solr/solr-ltr/maven-metadata.xml.md5 Thu Dec 14 23:33:33 2017
@@ -0,0 +1 @@
+3bad09a757036fb8508194e2be36a2e5
\ No newline at end of file

Added: dev/lucene/lucene-solr-7.2.0-RC1-revbca54cad5a9f6a80800944fd5bd585b68acde8c8/solr/maven/org/apache/solr/solr-ltr/maven-metadata.xml.sha1
==============================================================================
--- dev/lucene/lucene-solr-7.2.0-RC1-revbca54cad5a9f6a80800944fd5bd585b68acde8c8/solr/maven/org/apache/solr/solr-ltr/maven-metadata.xml.sha1 (added)
+++ dev/lucene/lucene-solr-7.2.0-RC1-revbca54cad5a9f6a80800944fd5bd585b68acde8c8/solr/maven/org/apache/solr/solr-ltr/maven-metadata.xml.sha1 Thu Dec 14 23:33:33 2017
@@ -0,0 +1 @@
+fae6d0ad0e25d72ba482648cbde4e8bbd05bfdeb
\ No newline at end of file

Added: dev/lucene/lucene-solr-7.2.0-RC1-revbca54cad5a9f6a80800944fd5bd585b68acde8c8/solr/maven/org/apache/solr/solr-parent/7.2.0/solr-parent-7.2.0.pom
==============================================================================
--- dev/lucene/lucene-solr-7.2.0-RC1-revbca54cad5a9f6a80800944fd5bd585b68acde8c8/solr/maven/org/apache/solr/solr-parent/7.2.0/solr-parent-7.2.0.pom (added)
+++ dev/lucene/lucene-solr-7.2.0-RC1-revbca54cad5a9f6a80800944fd5bd585b68acde8c8/solr/maven/org/apache/solr/solr-parent/7.2.0/solr-parent-7.2.0.pom Thu Dec 14 23:33:33 2017
@@ -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.0</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>

Propchange: dev/lucene/lucene-solr-7.2.0-RC1-revbca54cad5a9f6a80800944fd5bd585b68acde8c8/solr/maven/org/apache/solr/solr-parent/7.2.0/solr-parent-7.2.0.pom
------------------------------------------------------------------------------
    svn:eol-style = native

Added: dev/lucene/lucene-solr-7.2.0-RC1-revbca54cad5a9f6a80800944fd5bd585b68acde8c8/solr/maven/org/apache/solr/solr-parent/7.2.0/solr-parent-7.2.0.pom.asc
==============================================================================
--- dev/lucene/lucene-solr-7.2.0-RC1-revbca54cad5a9f6a80800944fd5bd585b68acde8c8/solr/maven/org/apache/solr/solr-parent/7.2.0/solr-parent-7.2.0.pom.asc (added)
+++ dev/lucene/lucene-solr-7.2.0-RC1-revbca54cad5a9f6a80800944fd5bd585b68acde8c8/solr/maven/org/apache/solr/solr-parent/7.2.0/solr-parent-7.2.0.pom.asc Thu Dec 14 23:33:33 2017
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v1
+
+iQIcBAABAgAGBQJaMpavAAoJEAUaD692vGUHeIYQAJM3ARRrPqcq8XExa720HUa8
+GGDfxRNKdfpaNJ+TXP0XSSHth+qZP3h7prwaLXo7ULtoe5m5MOXISTg966QrfC+H
+oqsA4auj0CgOE8F+1GeHH7pyytOY/NQG9lXDcqXfWqrqlnR7P5HBZobi77hZ/pGC
+v4KgQj9CxuCNU0cqTmWRcmPHWbKK6TqsU0KIL1E2yftlYRAEpoMK0pecPXxEZQsr
+ofgkDmE4+oTAbkQ1LEZ0lHKL7Uhv++SnWDR/5tR/mqN8IantabwGeArtASdXDx/e
+92877lCe5Iu1THkdsUNLccCvVTu9wYhhP1e9Gn1Qkfb9y0Cfxb7N/7IiXgZX3jLX
+w4SYMbNU0Mt4j/w7D84jzrhzYUVqnHsL1himuTjkxnsObLNxHxlHgWz7p4DxgM1Y
+zu/2pGC3ub80wQZ9Wfg1eYX28RNeMe8pzYBcDcbSztekrgpXYwDufRGtkrdKx5Hw
+B9VRnqEDDSRXYblCkt1FHJ3UzS6Us/Tcf2C2D4QkrfmAlAaG9IkEBn/CRJG6yJld
+sgJvxZyluge+h4NlFQrdzCCjORPqzwWOcWNw95KFqt7Byh6nPrBDcPwWmSo0Wrmz
+fieiiFJl5ZW5SCLFuxp2ESAV0hzoBY623806jSXJ4tJ4RSdyl9HlVWovfqyEj9aU
+aVIZvUQcu7bjVgSTV6zf
+=wr8P
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-7.2.0-RC1-revbca54cad5a9f6a80800944fd5bd585b68acde8c8/solr/maven/org/apache/solr/solr-parent/7.2.0/solr-parent-7.2.0.pom.md5
==============================================================================
--- dev/lucene/lucene-solr-7.2.0-RC1-revbca54cad5a9f6a80800944fd5bd585b68acde8c8/solr/maven/org/apache/solr/solr-parent/7.2.0/solr-parent-7.2.0.pom.md5 (added)
+++ dev/lucene/lucene-solr-7.2.0-RC1-revbca54cad5a9f6a80800944fd5bd585b68acde8c8/solr/maven/org/apache/solr/solr-parent/7.2.0/solr-parent-7.2.0.pom.md5 Thu Dec 14 23:33:33 2017
@@ -0,0 +1 @@
+93cbbd2bd3e68d9946c4fa5c6d67abf4
\ No newline at end of file

Added: dev/lucene/lucene-solr-7.2.0-RC1-revbca54cad5a9f6a80800944fd5bd585b68acde8c8/solr/maven/org/apache/solr/solr-parent/7.2.0/solr-parent-7.2.0.pom.sha1
==============================================================================
--- dev/lucene/lucene-solr-7.2.0-RC1-revbca54cad5a9f6a80800944fd5bd585b68acde8c8/solr/maven/org/apache/solr/solr-parent/7.2.0/solr-parent-7.2.0.pom.sha1 (added)
+++ dev/lucene/lucene-solr-7.2.0-RC1-revbca54cad5a9f6a80800944fd5bd585b68acde8c8/solr/maven/org/apache/solr/solr-parent/7.2.0/solr-parent-7.2.0.pom.sha1 Thu Dec 14 23:33:33 2017
@@ -0,0 +1 @@
+9fd1266df57cd4317b0ec7f952070733c6025c6c
\ No newline at end of file

Added: dev/lucene/lucene-solr-7.2.0-RC1-revbca54cad5a9f6a80800944fd5bd585b68acde8c8/solr/maven/org/apache/solr/solr-parent/maven-metadata.xml
==============================================================================
--- dev/lucene/lucene-solr-7.2.0-RC1-revbca54cad5a9f6a80800944fd5bd585b68acde8c8/solr/maven/org/apache/solr/solr-parent/maven-metadata.xml (added)
+++ dev/lucene/lucene-solr-7.2.0-RC1-revbca54cad5a9f6a80800944fd5bd585b68acde8c8/solr/maven/org/apache/solr/solr-parent/maven-metadata.xml Thu Dec 14 23:33:33 2017
@@ -0,0 +1,12 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<metadata>
+  <groupId>org.apache.solr</groupId>
+  <artifactId>solr-parent</artifactId>
+  <version>7.2.0</version>
+  <versioning>
+    <versions>
+      <version>7.2.0</version>
+    </versions>
+    <lastUpdated>20171214151929</lastUpdated>
+  </versioning>
+</metadata>

Propchange: dev/lucene/lucene-solr-7.2.0-RC1-revbca54cad5a9f6a80800944fd5bd585b68acde8c8/solr/maven/org/apache/solr/solr-parent/maven-metadata.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Added: dev/lucene/lucene-solr-7.2.0-RC1-revbca54cad5a9f6a80800944fd5bd585b68acde8c8/solr/maven/org/apache/solr/solr-parent/maven-metadata.xml.md5
==============================================================================
--- dev/lucene/lucene-solr-7.2.0-RC1-revbca54cad5a9f6a80800944fd5bd585b68acde8c8/solr/maven/org/apache/solr/solr-parent/maven-metadata.xml.md5 (added)
+++ dev/lucene/lucene-solr-7.2.0-RC1-revbca54cad5a9f6a80800944fd5bd585b68acde8c8/solr/maven/org/apache/solr/solr-parent/maven-metadata.xml.md5 Thu Dec 14 23:33:33 2017
@@ -0,0 +1 @@
+3478ba0b89fa2ba63e974dcd425decf5
\ No newline at end of file

Added: dev/lucene/lucene-solr-7.2.0-RC1-revbca54cad5a9f6a80800944fd5bd585b68acde8c8/solr/maven/org/apache/solr/solr-parent/maven-metadata.xml.sha1
==============================================================================
--- dev/lucene/lucene-solr-7.2.0-RC1-revbca54cad5a9f6a80800944fd5bd585b68acde8c8/solr/maven/org/apache/solr/solr-parent/maven-metadata.xml.sha1 (added)
+++ dev/lucene/lucene-solr-7.2.0-RC1-revbca54cad5a9f6a80800944fd5bd585b68acde8c8/solr/maven/org/apache/solr/solr-parent/maven-metadata.xml.sha1 Thu Dec 14 23:33:33 2017
@@ -0,0 +1 @@
+e96299b057f12b4c7b97d86eaeb759988cc06ff9
\ No newline at end of file

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

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

Added: dev/lucene/lucene-solr-7.2.0-RC1-revbca54cad5a9f6a80800944fd5bd585b68acde8c8/solr/maven/org/apache/solr/solr-solrj/7.2.0/solr-solrj-7.2.0-javadoc.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-7.2.0-RC1-revbca54cad5a9f6a80800944fd5bd585b68acde8c8/solr/maven/org/apache/solr/solr-solrj/7.2.0/solr-solrj-7.2.0-javadoc.jar.asc (added)
+++ dev/lucene/lucene-solr-7.2.0-RC1-revbca54cad5a9f6a80800944fd5bd585b68acde8c8/solr/maven/org/apache/solr/solr-solrj/7.2.0/solr-solrj-7.2.0-javadoc.jar.asc Thu Dec 14 23:33:33 2017
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v1
+
+iQIcBAABAgAGBQJaMpavAAoJEAUaD692vGUHnUcQAM3+86jG1dgigB6qwKYsVZdz
+bsmsFfDWkrtytl+wapv3q4LMTp6SkFwMwLvxa+tHK1BVnM64cqlAX64dodKqCBl5
+y2qfgwU2EciYx/rNH2UwMMhQQV1THzmsX+BUhqtF+5lBqK6rhjMslxZbaMzYsb2c
+VOhSGUxk0CyIAJAaqmhuyQvOS2ZvwRGtmAzCXrfsxmW5oFF6AKywtFY+7Il8fu/4
+JPNu387TnpnOH6qIUSVyKYGGgS9WmmE/BrNlNJw71tWVRIQzKwcrw95whbuO4GsC
+y72rWlp3nAbhAO7+SPf0ds9a2E0blQsfk80O6oniKDyIsd2mMB65g863DBOSwbuW
+GWYO57uuKAtkgfuOXN+eTrgYZxxTYOE3tvAIRe8zzn7cFEcSLuc01jOVKhmsJFhH
+YqOz28stSw2S746SVcuZRXJxzcJOep16/ujJo9MKePUCgBsAOqF0qaxQPyFV+k+c
+q5DLAF9nl9uZ8mt8OtTjUUi4bgj2T5KHvaLWYIy8UdYfp/0jkexk+1mN6FFt/S5m
+7z55Zo2f4lPZ6iJaDVa97VrTt7+3X+QduvcLTdpQlHdc0PA1s4rH+fdxzadeHlCP
+qULpO18YsSeBwZxoa9A4puFzzkq5J771qNTMfe/F1GXLSBcYIETz62JwR98Qx3Hb
+wEjqarbWa2mnzjGf7bxc
+=+Xpt
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-7.2.0-RC1-revbca54cad5a9f6a80800944fd5bd585b68acde8c8/solr/maven/org/apache/solr/solr-solrj/7.2.0/solr-solrj-7.2.0-javadoc.jar.md5
==============================================================================
--- dev/lucene/lucene-solr-7.2.0-RC1-revbca54cad5a9f6a80800944fd5bd585b68acde8c8/solr/maven/org/apache/solr/solr-solrj/7.2.0/solr-solrj-7.2.0-javadoc.jar.md5 (added)
+++ dev/lucene/lucene-solr-7.2.0-RC1-revbca54cad5a9f6a80800944fd5bd585b68acde8c8/solr/maven/org/apache/solr/solr-solrj/7.2.0/solr-solrj-7.2.0-javadoc.jar.md5 Thu Dec 14 23:33:33 2017
@@ -0,0 +1 @@
+9e9ec033d8d5025aa390d80250bdbdca
\ No newline at end of file

Added: dev/lucene/lucene-solr-7.2.0-RC1-revbca54cad5a9f6a80800944fd5bd585b68acde8c8/solr/maven/org/apache/solr/solr-solrj/7.2.0/solr-solrj-7.2.0-javadoc.jar.sha1
==============================================================================
--- dev/lucene/lucene-solr-7.2.0-RC1-revbca54cad5a9f6a80800944fd5bd585b68acde8c8/solr/maven/org/apache/solr/solr-solrj/7.2.0/solr-solrj-7.2.0-javadoc.jar.sha1 (added)
+++ dev/lucene/lucene-solr-7.2.0-RC1-revbca54cad5a9f6a80800944fd5bd585b68acde8c8/solr/maven/org/apache/solr/solr-solrj/7.2.0/solr-solrj-7.2.0-javadoc.jar.sha1 Thu Dec 14 23:33:33 2017
@@ -0,0 +1 @@
+e6393108129a958574d1ae53575df3c85055bb65
\ No newline at end of file

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

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

Added: dev/lucene/lucene-solr-7.2.0-RC1-revbca54cad5a9f6a80800944fd5bd585b68acde8c8/solr/maven/org/apache/solr/solr-solrj/7.2.0/solr-solrj-7.2.0-sources.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-7.2.0-RC1-revbca54cad5a9f6a80800944fd5bd585b68acde8c8/solr/maven/org/apache/solr/solr-solrj/7.2.0/solr-solrj-7.2.0-sources.jar.asc (added)
+++ dev/lucene/lucene-solr-7.2.0-RC1-revbca54cad5a9f6a80800944fd5bd585b68acde8c8/solr/maven/org/apache/solr/solr-solrj/7.2.0/solr-solrj-7.2.0-sources.jar.asc Thu Dec 14 23:33:33 2017
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v1
+
+iQIcBAABAgAGBQJaMpawAAoJEAUaD692vGUHK/EQALE0OSADko3gXVr5irwkhxOJ
+T6ExuPDH4Vye66CmX69YPpS0nBtFpnB/Y54rsCbzFXsx4i0ulI853BfA/CjMUx71
+cF9MQ8/pMV3yF+xQRcfSa+JLvP+AaPJOttxNMGuHkpvv6u1PKoYWe7PtHWLY/tS6
+JL01fdI9/IXM3cWO15lK5+SxFFq3GH7vxydY0QF1OS9qX13geDFIg1WkfPbLfus0
+TOKqJdluy1kROutEWz5Es+og8t6meVjU+pEYk3ZjH4ULIWoTerc9yL4qpYpHtoGA
+ilNfIE8GJaEjFsyQSqrt5mpyTGoBdn5qb/FjJTeGXquvg6gc/hAFdcozdwq261k+
+GAEBcV4NJYf6U64UHzKl4knTsHujBC46b2zZAj3FYJHZmU6dEXDcrnao8ewGTxz8
+d9HKO4j9LgoETxv57wJVVa52V/qqPSXhYqciSSzYWM0XLZEJ3iPJYlp6eRiJOARt
+Lh04bb6sPFvTBhXs0PUOLfGrRsRVqW91KDXcPHaH9ReD5faEzG+bAfnbHbLYEg45
+A5gFpaFe3csvM76CdgVlUwEP/00ufNAlaLKi+nSHczsa3ld013w4qDBVL1k07Wao
+7nWFiXcsNEVRmhd9AsFXug/DcjeXDlAUvs1mELFPuISjyNJqyZvuFEqrRWBwatSM
+0EBdeR0RnTSM+UFg+MBN
+=6b2X
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-7.2.0-RC1-revbca54cad5a9f6a80800944fd5bd585b68acde8c8/solr/maven/org/apache/solr/solr-solrj/7.2.0/solr-solrj-7.2.0-sources.jar.md5
==============================================================================
--- dev/lucene/lucene-solr-7.2.0-RC1-revbca54cad5a9f6a80800944fd5bd585b68acde8c8/solr/maven/org/apache/solr/solr-solrj/7.2.0/solr-solrj-7.2.0-sources.jar.md5 (added)
+++ dev/lucene/lucene-solr-7.2.0-RC1-revbca54cad5a9f6a80800944fd5bd585b68acde8c8/solr/maven/org/apache/solr/solr-solrj/7.2.0/solr-solrj-7.2.0-sources.jar.md5 Thu Dec 14 23:33:33 2017
@@ -0,0 +1 @@
+5da4be145505634bdcdfab4d33e6d8a6
\ No newline at end of file

Added: dev/lucene/lucene-solr-7.2.0-RC1-revbca54cad5a9f6a80800944fd5bd585b68acde8c8/solr/maven/org/apache/solr/solr-solrj/7.2.0/solr-solrj-7.2.0-sources.jar.sha1
==============================================================================
--- dev/lucene/lucene-solr-7.2.0-RC1-revbca54cad5a9f6a80800944fd5bd585b68acde8c8/solr/maven/org/apache/solr/solr-solrj/7.2.0/solr-solrj-7.2.0-sources.jar.sha1 (added)
+++ dev/lucene/lucene-solr-7.2.0-RC1-revbca54cad5a9f6a80800944fd5bd585b68acde8c8/solr/maven/org/apache/solr/solr-solrj/7.2.0/solr-solrj-7.2.0-sources.jar.sha1 Thu Dec 14 23:33:33 2017
@@ -0,0 +1 @@
+08376125d3960ef89e16719f9a6367ee7d4b488f
\ No newline at end of file

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

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

Added: dev/lucene/lucene-solr-7.2.0-RC1-revbca54cad5a9f6a80800944fd5bd585b68acde8c8/solr/maven/org/apache/solr/solr-solrj/7.2.0/solr-solrj-7.2.0.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-7.2.0-RC1-revbca54cad5a9f6a80800944fd5bd585b68acde8c8/solr/maven/org/apache/solr/solr-solrj/7.2.0/solr-solrj-7.2.0.jar.asc (added)
+++ dev/lucene/lucene-solr-7.2.0-RC1-revbca54cad5a9f6a80800944fd5bd585b68acde8c8/solr/maven/org/apache/solr/solr-solrj/7.2.0/solr-solrj-7.2.0.jar.asc Thu Dec 14 23:33:33 2017
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v1
+
+iQIcBAABAgAGBQJaMpaxAAoJEAUaD692vGUH+RcP/3dzWIKO5qSRgsVRSi/t3DxW
+NHDN5AdKOOvwsi1AGyTdz98zSrBJQKa7bgmW1PVvEGCfelrGGrXHizokhutOTI2I
+fzflO770qmM4tWjIFRmlA8wboeOm0C+g2gbfyHWARBP8B/7P1d6JsjuW2LNIwqf4
+BQJiM/Wu8IqFLRd3O5ND3OwNP1DlhZzsEu+l7uP5CM+568URt45ry452JrbdqbZr
+QQDr7zRKYGKyDF+wxSU40rqWEf+QontUdjrJgZQa04qeQlwDW4T6gBEl1m2NGJA8
+dWOwD105S3gC3WZVV51+7ucMVyy+L/q9eX2BfK18Q/EfVchB+NTzb2BHPqnUFMca
+vDYMabgdNy01PNPC2BWo7MUm6xy4ZpNxc+9oZ7k+tjZu1HhvirpgYc4uuq3OTrvk
+6vSGh15KmTKmQ+nmn09/F9L5gh4TwDRACjTmrO3IX+grt4DmD4uKJRJOe4jcTdCj
+H0ah5ozDL/ex5qn+2BxF8RVCxgZKhh/cIL1mhZM6cN5RJXvay+yqXLfdXppBWcl8
+FSZ7zTBIPye/e++7ymsoxQAvJp9K4G+QvteRdl9pgmQJXKqrKolORz5VJ4r0Rz/w
+A3z09Noi3IgouVbiv7XvmxZQ8Iipqz++STRkrLJUwceLzS/STVROa83y8OYLShKS
+OaFROTZb55nsG+pB4gNd
+=uvaQ
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-7.2.0-RC1-revbca54cad5a9f6a80800944fd5bd585b68acde8c8/solr/maven/org/apache/solr/solr-solrj/7.2.0/solr-solrj-7.2.0.jar.md5
==============================================================================
--- dev/lucene/lucene-solr-7.2.0-RC1-revbca54cad5a9f6a80800944fd5bd585b68acde8c8/solr/maven/org/apache/solr/solr-solrj/7.2.0/solr-solrj-7.2.0.jar.md5 (added)
+++ dev/lucene/lucene-solr-7.2.0-RC1-revbca54cad5a9f6a80800944fd5bd585b68acde8c8/solr/maven/org/apache/solr/solr-solrj/7.2.0/solr-solrj-7.2.0.jar.md5 Thu Dec 14 23:33:33 2017
@@ -0,0 +1 @@
+91a8cae3e6a35f3a1e49c99a1b62c9a6
\ No newline at end of file

Added: dev/lucene/lucene-solr-7.2.0-RC1-revbca54cad5a9f6a80800944fd5bd585b68acde8c8/solr/maven/org/apache/solr/solr-solrj/7.2.0/solr-solrj-7.2.0.jar.sha1
==============================================================================
--- dev/lucene/lucene-solr-7.2.0-RC1-revbca54cad5a9f6a80800944fd5bd585b68acde8c8/solr/maven/org/apache/solr/solr-solrj/7.2.0/solr-solrj-7.2.0.jar.sha1 (added)
+++ dev/lucene/lucene-solr-7.2.0-RC1-revbca54cad5a9f6a80800944fd5bd585b68acde8c8/solr/maven/org/apache/solr/solr-solrj/7.2.0/solr-solrj-7.2.0.jar.sha1 Thu Dec 14 23:33:33 2017
@@ -0,0 +1 @@
+48ecaccb886f2068da342a116372a38bd7f7b582
\ No newline at end of file

Added: dev/lucene/lucene-solr-7.2.0-RC1-revbca54cad5a9f6a80800944fd5bd585b68acde8c8/solr/maven/org/apache/solr/solr-solrj/7.2.0/solr-solrj-7.2.0.pom
==============================================================================
--- dev/lucene/lucene-solr-7.2.0-RC1-revbca54cad5a9f6a80800944fd5bd585b68acde8c8/solr/maven/org/apache/solr/solr-solrj/7.2.0/solr-solrj-7.2.0.pom (added)
+++ dev/lucene/lucene-solr-7.2.0-RC1-revbca54cad5a9f6a80800944fd5bd585b68acde8c8/solr/maven/org/apache/solr/solr-solrj/7.2.0/solr-solrj-7.2.0.pom Thu Dec 14 23:33:33 2017
@@ -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.0</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>

Propchange: dev/lucene/lucene-solr-7.2.0-RC1-revbca54cad5a9f6a80800944fd5bd585b68acde8c8/solr/maven/org/apache/solr/solr-solrj/7.2.0/solr-solrj-7.2.0.pom
------------------------------------------------------------------------------
    svn:eol-style = native

Added: dev/lucene/lucene-solr-7.2.0-RC1-revbca54cad5a9f6a80800944fd5bd585b68acde8c8/solr/maven/org/apache/solr/solr-solrj/7.2.0/solr-solrj-7.2.0.pom.asc
==============================================================================
--- dev/lucene/lucene-solr-7.2.0-RC1-revbca54cad5a9f6a80800944fd5bd585b68acde8c8/solr/maven/org/apache/solr/solr-solrj/7.2.0/solr-solrj-7.2.0.pom.asc (added)
+++ dev/lucene/lucene-solr-7.2.0-RC1-revbca54cad5a9f6a80800944fd5bd585b68acde8c8/solr/maven/org/apache/solr/solr-solrj/7.2.0/solr-solrj-7.2.0.pom.asc Thu Dec 14 23:33:33 2017
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v1
+
+iQIcBAABAgAGBQJaMpaxAAoJEAUaD692vGUHsgAP/1Khqik8Eb6IdHpZk6g3EfbI
+7ZLV1s2qVRV5ryKn4Mueq8+FEDxXfMJ0PRatLl4MtyDTz41Uf+ZCgY/8TW85tBxi
+v8mxErbVicBBkY9SL4WfcNtSAlL2zLf7IjPqIyBIYoLXkSr1A+BT3ia3gNqzRnAE
+uyClIAZ7o7QSqzVLWHetlceYhw01Szwvdi0vSoqMq95iKvtbPAaglYCar6C/1aAa
+vqKEWS5FAcYt/eqvhcJV22CNxiYRhh+NauiZiDuHdMQxA6p7YCy9FNLXUt6hza5Y
+V0hxmSYUfZFIzXnv6o+e29lOxFj0iI/4S8srFk2iGgGB49SdZ0dPG4idLhmTTrgH
+3CFvykhwT1eEC4p8tTOwGBwLQW22VcuVX1KvtB7B4Eqrr7EJGEfZUOz+OS5G7tge
+oIWOfUjCL35KsB4P7Cariyg3EpsQmfxUkrjul5WPGcb0jtPfbWD/F2WdJoq+Q/8N
+t7xmUMOTH4AbFmIsSPczuu4SZMI1WwxuBGPri/ByrGS6111+5rfH5w69YvYojNTw
+MfYZ3OI2nLDEGx9VHMVHDfR5FmOG2+WRH7eKD8ZSbSqppQ/8uf6OgzEGjBban1sx
+wjT6ttfLqqYgB8RSaYLnsz1G1WWSWNNThMC8581XyT7JWM6jMoCgiPpuU8dVkrMD
+oXMsWQ2cfc4YQCt+3Fab
+=PSKg
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-7.2.0-RC1-revbca54cad5a9f6a80800944fd5bd585b68acde8c8/solr/maven/org/apache/solr/solr-solrj/7.2.0/solr-solrj-7.2.0.pom.md5
==============================================================================
--- dev/lucene/lucene-solr-7.2.0-RC1-revbca54cad5a9f6a80800944fd5bd585b68acde8c8/solr/maven/org/apache/solr/solr-solrj/7.2.0/solr-solrj-7.2.0.pom.md5 (added)
+++ dev/lucene/lucene-solr-7.2.0-RC1-revbca54cad5a9f6a80800944fd5bd585b68acde8c8/solr/maven/org/apache/solr/solr-solrj/7.2.0/solr-solrj-7.2.0.pom.md5 Thu Dec 14 23:33:33 2017
@@ -0,0 +1 @@
+0aa5d553a339fc4f3705810f313d8604
\ No newline at end of file

Added: dev/lucene/lucene-solr-7.2.0-RC1-revbca54cad5a9f6a80800944fd5bd585b68acde8c8/solr/maven/org/apache/solr/solr-solrj/7.2.0/solr-solrj-7.2.0.pom.sha1
==============================================================================
--- dev/lucene/lucene-solr-7.2.0-RC1-revbca54cad5a9f6a80800944fd5bd585b68acde8c8/solr/maven/org/apache/solr/solr-solrj/7.2.0/solr-solrj-7.2.0.pom.sha1 (added)
+++ dev/lucene/lucene-solr-7.2.0-RC1-revbca54cad5a9f6a80800944fd5bd585b68acde8c8/solr/maven/org/apache/solr/solr-solrj/7.2.0/solr-solrj-7.2.0.pom.sha1 Thu Dec 14 23:33:33 2017
@@ -0,0 +1 @@
+6583a912d43c8caf68a22d9112e32d1055c32050
\ No newline at end of file